diff options
author | June McEnroe <programble@gmail.com> | 2018-03-11 23:40:03 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-03-11 23:41:00 -0400 |
commit | e09b5560b2d081015054ee77edcbf9f2ab31f015 (patch) | |
tree | 94f9508a1770cf88ce5263209645845071b4f5a5 /bin/Makefile | |
parent | Revert "Use "Broken Gray" htop colors" (diff) | |
download | src-e09b5560b2d081015054ee77edcbf9f2ab31f015.tar.gz src-e09b5560b2d081015054ee77edcbf9f2ab31f015.zip |
PHONY is a waste of time
Diffstat (limited to 'bin/Makefile')
-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 |