diff options
Diffstat (limited to '')
-rw-r--r-- | bin/cash/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cash/Makefile b/bin/cash/Makefile index 2442aca9..22b2a1b8 100644 --- a/bin/cash/Makefile +++ b/bin/cash/Makefile @@ -42,7 +42,7 @@ OBJS = $(SRCS:.c=.o) MAN1 = cash.1 cash-kill.1 cash-printf.1 cash-test.1 -all: tags cash .depend +all: tags cash cash: $(OBJS) $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ @@ -50,7 +50,7 @@ cash: $(OBJS) tags: *.h *.c ctags -w *.h *.c -.depend: $(SRCS) $(GENHDRS) +depend: $(SRCS) $(GENHDRS) $(CC) $(CFLAGS) -MM $(SRCS) > .depend -include .depend |