about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-10 12:47:38 -0800
committerEric Wong <normalperson@yhbt.net>2009-02-10 12:50:25 -0800
commit25669a633854bc01a04ecd3b73ab8852fd46e7e8 (patch)
treeab4971e2195339cad7c7373c60766a0d935b44c6 /GNUmakefile
parenta824b346dabe9c24f63c6764d0f9629ff2daf9eb (diff)
downloadunicorn-25669a633854bc01a04ecd3b73ab8852fd46e7e8.tar.gz
Add a make task for updating it, too.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 8ee81c2..25f7527 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -46,4 +46,9 @@ clean:
         -$(MAKE) -C ext/http11 clean
         $(RM) ext/http11/Makefile lib/http11.$(DLEXT)
 
-.PHONY: $(T) $(slow_tests)
+Manifest:
+        git ls-files > $@+
+        cmp $@+ $@ || mv $@+ $@
+        $(RM) -f $@+
+
+.PHONY: $(T) $(slow_tests) Manifest