diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -5,7 +5,6 @@ INSTALL = install RM = rm -f BINFILES = \ - arg \ batterymon \ chardiff \ chardiff_pre \ @@ -47,8 +46,5 @@ 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 >> $@ + printf '%s\n' '*~' $(BINFILES) > $@ |