aboutsummaryrefslogtreecommitdiffstats
path: root/yamlishwriter-php-v0.0.1/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'yamlishwriter-php-v0.0.1/Makefile')
-rw-r--r--yamlishwriter-php-v0.0.1/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/yamlishwriter-php-v0.0.1/Makefile b/yamlishwriter-php-v0.0.1/Makefile
new file mode 100644
index 0000000..09e4803
--- /dev/null
+++ b/yamlishwriter-php-v0.0.1/Makefile
@@ -0,0 +1,21 @@
+# Makefile for YAMLish
+
+PHP = /usr/bin/php
+PROVE = prove -r t
+
+VERSION = 0.0.1
+DISTNAME = yamlishwriter-php-v$(VERSION)
+
+default:
+
+test:
+ PHP=$(PHP) $(PROVE)
+
+dist: manifest
+ ./dist.sh $(DISTNAME)
+
+manifest:
+ rm -f MANIFEST
+ find . -type f | grep -vE '\.svn|\.DS_Store|\.tmproj' > MANIFEST
+ echo './MANIFEST' >> MANIFEST
+ \ No newline at end of file