diff options
author | June McEnroe <june@causal.agency> | 2018-03-11 23:40:03 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-03-11 23:41:00 -0400 |
commit | 22b4d99234bd80382a9bef52e695c1f3f727b251 (patch) | |
tree | 0c196dc98690cc3a7f4d4d143e5acef4f4b0a6f9 | |
parent | Revert "Use "Broken Gray" htop colors" (diff) | |
download | src-22b4d99234bd80382a9bef52e695c1f3f727b251.tar.gz src-22b4d99234bd80382a9bef52e695c1f3f727b251.zip |
PHONY is a waste of time
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/bin/Makefile b/bin/Makefile index af587376..3cec67ee 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -15,6 +15,12 @@ bsd: any $(BSD_BINS) linux: any $(LIN_BINS) +.gitignore: Makefile + echo '*.o' tags $(ALL_BINS) | tr ' ' '\n' > .gitignore + +tags: *.c + ctags -w *.c + atch: dtch ln -f dtch atch @@ -36,11 +42,3 @@ link: unlink: rm -f $(ALL_BINS:%=~/.bin/%) - -.gitignore: Makefile - echo '*.o' tags $(ALL_BINS) | tr ' ' '\n' > .gitignore - -tags: *.c - ctags -w *.c - -.PHONY: any bsd linux setuid clean link unlink |