File: Makefile

package info (click to toggle)
ruby-tmail 1.2.7.1-3%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,712 kB
  • sloc: ruby: 15,207; ansic: 482; yacc: 349; makefile: 30
file content (18 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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