summary refs log tree commit diff
path: root/bin/cash/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-11 12:41:54 -0500
committerJune McEnroe <june@causal.agency>2019-01-11 12:41:54 -0500
commit15e0698b23908db6db2edc3cdd1a231a5457f183 (patch)
tree86b971d859d347e7657c1bf6c0872efc400a570e /bin/cash/Makefile
parentAdd cashrc (diff)
downloadsrc-15e0698b23908db6db2edc3cdd1a231a5457f183.tar.gz
src-15e0698b23908db6db2edc3cdd1a231a5457f183.zip
Don't make depend automatically
Diffstat (limited to '')
-rw-r--r--bin/cash/Makefile4
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