diff options
-rw-r--r-- | fstests/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fstests/Makefile b/fstests/Makefile index 0530c5ed..d5bc4d14 100644 --- a/fstests/Makefile +++ b/fstests/Makefile @@ -23,20 +23,20 @@ DIST_FILES = fstests.c Makefile fdtests.c ChangeLog timertest.c SRCS = fstests.c fdtests.c timertest.c -#OBJS=fdtests.o -#OBJS=fstests.o -OBJS=timertest.o - all: timertest -fstests: $(OBJS) $(libc); $(link) -fdtests: $(OBJS) $(libc); $(link) -timertest: $(OBJS) $(libc); $(link) +fstests: $(OBJS) $(libc) + $(CC) $(CFLAGS) -o $@ $^ + +fdtests: $(OBJS) $(libc) + $(CC) $(CFLAGS) -o $@ $^ +timertest: $(OBJS) $(libc) + $(CC) $(CFLAGS) -o $@ $^ -install: $(hurdroot) timertest #fstests fdtests -# $(INSTALL_BIN) fdtests $(hurdroot)/bin/fdtests -# $(INSTALL_BIN) fstests $(hurdroot)/bin/fstests +install: $(hurdroot) timertest fstests fdtests + $(INSTALL_BIN) fdtests $(hurdroot)/bin/fdtests + $(INSTALL_BIN) fstests $(hurdroot)/bin/fstests $(INSTALL_BIN) timertest $(hurdroot)/bin/timertest clean: |