diff options
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 |