summary refs log tree commit diff
path: root/bin/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-03-11 23:40:03 -0400
committerJune McEnroe <programble@gmail.com>2018-03-11 23:41:00 -0400
commite09b5560b2d081015054ee77edcbf9f2ab31f015 (patch)
tree94f9508a1770cf88ce5263209645845071b4f5a5 /bin/Makefile
parentRevert "Use "Broken Gray" htop colors" (diff)
downloadsrc-e09b5560b2d081015054ee77edcbf9f2ab31f015.tar.gz
src-e09b5560b2d081015054ee77edcbf9f2ab31f015.zip
PHONY is a waste of time
Diffstat (limited to 'bin/Makefile')
-rw-r--r--bin/Makefile14
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