diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-10-14 21:30:57 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-10-14 21:30:57 +0000 |
commit | 609092eb6651140c0cd9ebf33e2aa044567afa31 (patch) | |
tree | 5dc9bbe26a84c6f269d8827ee01d48391ad9210e /ufs-fsck | |
parent | f3cd6e6d3ce1ed28a668dd8317defc4935216f9b (diff) |
Formerly Makefile.~4~
Diffstat (limited to 'ufs-fsck')
-rw-r--r-- | ufs-fsck/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ufs-fsck/Makefile b/ufs-fsck/Makefile index e45fed74..75b2207a 100644 --- a/ufs-fsck/Makefile +++ b/ufs-fsck/Makefile @@ -23,10 +23,13 @@ makemode := utility SRCS = dir.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ pass5.c setup.c utilities.c inode.c -OBJS = $(subst .c,.o,$(SRCS)) +OBJS = $(subst .c,.o,$(SRCS)) tables.o LCLHDRS = fsck.h target = newfsck include ../Makeconf $(OBJS): fsck.h + +tables.o: ../ufs/tables.c + $(CC) $(CFLAGS) -c -o $@ $< |