diff options
| author | ncopa <ncopa@f176ef85-8d20-0410-844a-e957b5a1c371> | 2007-01-19 15:31:43 +0000 |
|---|---|---|
| committer | ncopa <ncopa@f176ef85-8d20-0410-844a-e957b5a1c371> | 2007-01-19 15:31:43 +0000 |
| commit | 601af9ebc43a89ad00a4c646d8d7613206141b9d (patch) | |
| tree | 6d48405b3851d2b42583d71bceba49904b9e4b5d /src | |
| parent | 0b8c233bac9ab5ca4cd978a8c283671901f3f4bd (diff) | |
| download | alpine-baselayout-601af9ebc43a89ad00a4c646d8d7613206141b9d.tar.bz2 alpine-baselayout-601af9ebc43a89ad00a4c646d8d7613206141b9d.tar.xz | |
version 1.2. load passwd/group *before* the local user config. Added support for readahead. Added user ntp
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/src/Makefile b/src/Makefile index b130049..23d1a84 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,24 +2,13 @@ CC = gcc LD = gcc -#BIN_TARGETS = splashbard -#SBIN_TARGETS = runscript start-stop-daemon -SBIN_TARGETS = runscript +SBIN_TARGETS = runscript readahead TARGET = $(BIN_TARGETS) $(SBIN_TARGETS) .PHONY: all clean all: $(TARGET) -tsplashd: splashbard.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< - -readahead: readahead.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< - -runscript: runscript.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< - -start-stop-daemon: start-stop-daemon.c +%: %.c $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< clean: |
