diff options
Diffstat (limited to 'lib/vendor/tmail-1.2.7/tmail/Makefile')
-rw-r--r-- | lib/vendor/tmail-1.2.7/tmail/Makefile | 18 |
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 |