diff options
author | June McEnroe <june@causal.agency> | 2017-09-14 16:46:05 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-09-14 16:46:05 -0400 |
commit | 40184a1dd5494087e3126b86146c594cfdb0c350 (patch) | |
tree | 9b8b651d2f6b290e503538ccbf533b4b872cdad2 /bin | |
parent | Add typing game (diff) | |
download | src-40184a1dd5494087e3126b86146c594cfdb0c350.tar.gz src-40184a1dd5494087e3126b86146c594cfdb0c350.zip |
Add .gitignore target to bins Makefile
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Makefile | 3 |
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 |