summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-10 23:24:31 -0500
committerJune McEnroe <june@causal.agency>2019-01-10 23:24:31 -0500
commit510f664c773aef348a2454d72d610ab864ece5be (patch)
tree637a2eb7d9cdccb695e113f4415b1dc12232b3ad
parentClean up cash Makefile (diff)
downloadsrc-510f664c773aef348a2454d72d610ab864ece5be.tar.gz
src-510f664c773aef348a2454d72d610ab864ece5be.zip
Fix header dependencies in cash Makefile
-rw-r--r--bin/cash/.gitignore1
-rw-r--r--bin/cash/Makefile74
2 files changed, 43 insertions, 32 deletions
diff --git a/bin/cash/.gitignore b/bin/cash/.gitignore
index 674a2ed5..ed57be1a 100644
--- a/bin/cash/.gitignore
+++ b/bin/cash/.gitignore
@@ -1,4 +1,5 @@
 *.o
+.depend
 builtins.c
 builtins.h
 cash
diff --git a/bin/cash/Makefile b/bin/cash/Makefile
index 8d032dea..13c965f2 100644
--- a/bin/cash/Makefile
+++ b/bin/cash/Makefile
@@ -3,42 +3,55 @@ LDLIBS = -ledit
 
 -include config.mk
 
-OBJS += alias.o
-OBJS += arith_yacc.o
-OBJS += arith_yylex.o
-OBJS += cd.o
-OBJS += echo.o
-OBJS += error.o
-OBJS += eval.o
-OBJS += exec.o
-OBJS += expand.o
-OBJS += histedit.o
-OBJS += input.o
-OBJS += jobs.o
-OBJS += kill.o
-OBJS += mail.o
-OBJS += main.o
-OBJS += memalloc.o
-OBJS += miscbltin.o
-OBJS += mystring.o
-OBJS += options.o
-OBJS += output.o
-OBJS += parser.o
-OBJS += printf.o
-OBJS += redir.o
-OBJS += show.o
-OBJS += test.o
-OBJS += trap.o
-OBJS += var.o
+SRCS += alias.c
+SRCS += arith_yacc.c
+SRCS += arith_yylex.c
+SRCS += cd.c
+SRCS += echo.c
+SRCS += error.c
+SRCS += eval.c
+SRCS += exec.c
+SRCS += expand.c
+SRCS += histedit.c
+SRCS += input.c
+SRCS += jobs.c
+SRCS += kill.c
+SRCS += mail.c
+SRCS += main.c
+SRCS += memalloc.c
+SRCS += miscbltin.c
+SRCS += mystring.c
+SRCS += options.c
+SRCS += output.c
+SRCS += parser.c
+SRCS += printf.c
+SRCS += redir.c
+SRCS += show.c
+SRCS += test.c
+SRCS += trap.c
+SRCS += var.c
 
 GENSRCS = builtins.c nodes.c syntax.c
 GENHDRS = builtins.h nodes.h syntax.h token.h
 
-OBJS += $(GENSRCS:.c=.o)
+SRCS += $(GENSRCS)
+OBJS = $(SRCS:.c=.o)
+
+all: tags cash .depend
 
 cash: $(OBJS)
 	$(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
 
+tags: *.h *.c
+	ctags -w *.h *.c
+
+.depend: $(SRCS) $(GENHDRS)
+	$(CC) $(CFLAGS) -MM $(SRCS) > .depend
+
+-include .depend
+
+$(OBJS): $(GENHDRS)
+
 builtins.c builtins.h: mkbuiltins builtins.def
 	sh mkbuiltins .
 
@@ -51,8 +64,5 @@ syntax.c syntax.h: mksyntax
 token.h: mktokens
 	sh mktokens
 
-# FIXME
-$(OBJS): *.h $(GENHDRS)
-
 clean:
-	rm -f cash $(OBJS) mknodes mksyntax $(GENSRCS) $(GENHDRS)
+	rm -f cash $(OBJS) mknodes mksyntax $(GENSRCS) $(GENHDRS) tags .depend