summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-08-09 14:14:46 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-08-09 14:14:46 -0400
commit03b520370f6185d8604bc4068e8ac319c67e8703 (patch)
treee3c30ad52788403d2063a10d2d2e73404010b7e8 /Makefile
parent01413023fcd6a87159b43bd5a80b9848bbe50bd6 (diff)
Fix warning in roll.php, generate .gitignore on the fly
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a6866ab..e33f078 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ BINFILES = \
daemon \
emacsmail
-all: build
+all: build .gitignore
build: $(BINFILES)
@@ -40,3 +40,7 @@ clean:
%: %.php
cat $< >$@
chmod a+x $@
+
+.gitignore: Makefile
+ echo '*~' > $@
+ for file in $(BINFILES); do echo "$$file"; done >> $@