summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2012-06-15 14:23:29 +0200
committerYorhel <git@yorhel.nl>2012-06-15 14:23:29 +0200
commitc47f450934fb88b25655711e06f3cac94ac57d8c (patch)
tree65ca9c2cb51bd1038e7d344577e3eb75036e6ae6 /Makefile
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..42a617a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.PHONY: GrottyParser
+
+GrottyParser: lib/GrottyParser/Build
+ cd lib/GrottyParser && ./Build install --install-base=inst
+
+lib/GrottyParser/Build: lib/GrottyParser/Build.PL
+ cd lib/GrottyParser && perl Build.PL
+
+clean:
+ cd lib/GrottyParser && ./Build distclean
+ rm -rf lib/GrottyParser/inst
+