diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-19 16:44:16 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-19 16:44:16 +0000 |
commit | 9921618a5a60b50d2297a276ae8a329251f0173b (patch) | |
tree | e38912e1ecfd389bb927bc676143e54d6738747c /fstests | |
parent | 5ae604632eeaa065e273e80cc42b40bf6503df70 (diff) |
Formerly Makefile.~23~
Diffstat (limited to 'fstests')
-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: |