summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-14 16:46:05 -0400
committerJune McEnroe <june@causal.agency>2017-09-14 16:46:05 -0400
commit40184a1dd5494087e3126b86146c594cfdb0c350 (patch)
tree9b8b651d2f6b290e503538ccbf533b4b872cdad2
parentAdd typing game (diff)
downloadsrc-40184a1dd5494087e3126b86146c594cfdb0c350.tar.gz
src-40184a1dd5494087e3126b86146c594cfdb0c350.zip
Add .gitignore target to bins Makefile
-rw-r--r--bin/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile
index 564bfc74..e0933eae 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -36,4 +36,7 @@ link: $(BINS)
 unlink:
 	rm -f $(BINS:%=~/.bin/%)
 
+.gitignore: Makefile
+	echo $(BINS) | tr ' ' '\n' > .gitignore
+
 .PHONY: all clean link unlink