aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/vendor/tmail/Makefile
blob: 346353b83f34af3629942b9d4a149dac7387e69c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# 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