summary refs log tree commit diff
path: root/bin
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
commit93f635b0e9edad7e3b9a832fbbfb5708a60d4507 (patch)
tree36cf3a525bd50ca037aef12358cea815e96687e0 /bin
parentAdd cashrc (diff)
downloadsrc-93f635b0e9edad7e3b9a832fbbfb5708a60d4507.tar.gz
src-93f635b0e9edad7e3b9a832fbbfb5708a60d4507.zip
Don't make depend automatically
Diffstat (limited to 'bin')
-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
9de72546964f6b255dccddcd93&follow=1'>Assert return values in edit testsJune McEnroe 2022-02-20Move mbs out of struct Edit, use a global bufferJune McEnroe 2022-02-20Clear edit buffer before running commandJune McEnroe 2022-02-20Show indicator in status when window has pending inputJune McEnroe 2022-02-20Use separate edit buffers for each IDJune McEnroe 2022-02-20Make sure new cap is actually larger than new lengthJune McEnroe 2022-02-20Remove unused mbs.len field from struct EditJune McEnroe 2022-02-19Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe