summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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
=1'>Remove TOURJune McEnroe 2022-07-03Add The Bone Shard EmperorJune McEnroe 2022-06-25Bump xterm font size to 12June McEnroe 2022-06-10Handle subshells (and functions) inside substitutionsJune McEnroe 2022-06-10Switch to jorts Install scriptJune McEnroe 2022-06-08Indicate if still reading or no resultsJune McEnroe 2022-06-08Add Maiden, Mother, CroneJune McEnroe 2022-06-05FIRST SHOW IN 2.5 YEARS BABEY!!!June McEnroe 2022-06-03Set line number on File linesJune McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe