diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -6,20 +6,22 @@ RM = rm -f BINFILES = \ arg \ - ord \ - urldecode \ - roll \ - v-www-browser \ - v-editor \ - whatismyip \ chardiff \ chardiff_pre \ chardiff_post \ - newegg \ + daemon \ + e \ + emacsmail \ + emacsterm \ hangman \ + newegg \ + ord \ + roll \ sysfiles \ - daemon \ - emacsmail + urldecode \ + v-www-browser \ + v-editor \ + whatismyip all: build .gitignore @@ -41,6 +43,8 @@ clean: cat $< >$@ chmod a+x $@ +# Note that this rule would be way simpler if I could count on 'arg' +# already being installed ("arg '*~' $(BINFILES) > $@") .gitignore: Makefile echo '*~' > $@ for file in $(BINFILES); do echo "$$file"; done >> $@ |