summaryrefslogtreecommitdiffstats
path: root/lib/vendor/tmail-1.2.7/tmail/Makefile
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-25 17:17:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-25 17:17:49 +0000
commit5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7 (patch)
tree93e57765139714bd82dede475725516c448c0d55 /lib/vendor/tmail-1.2.7/tmail/Makefile
parent34e20c4373b7f5a20ab3a132feae3f70f21ec477 (diff)
downloadredmine-5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7.tar.gz
redmine-5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7.zip
Merged rails-3.2 branch.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9528 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/vendor/tmail-1.2.7/tmail/Makefile')
-rw-r--r--lib/vendor/tmail-1.2.7/tmail/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/vendor/tmail-1.2.7/tmail/Makefile b/lib/vendor/tmail-1.2.7/tmail/Makefile
new file mode 100644
index 000000000..8688b7fc4
--- /dev/null
+++ b/lib/vendor/tmail-1.2.7/tmail/Makefile
@@ -0,0 +1,18 @@
+# lib/tmail/Makefile
+#
+
+debug:
+ rm -f parser.rb
+ make parser.rb DEBUG=true
+
+parser.rb: parser.y
+ if [ "$(DEBUG)" = true ]; then \
+ racc -v -g -o$@ parser.y ;\
+ else \
+ racc -E -o$@ parser.y ;\
+ fi
+
+clean:
+ rm -f parser.rb parser.output
+
+distclean: clean