news: update
[bison.git] / examples / d / calc / Makefile
blobe95960b36386e619792622213e3e646af6dbe134
1 # This Makefile is designed to be simple and readable. It does not
2 # aim at portability. It requires GNU Make.
4 BISON = bison
5 DC = dmd
7 all: calc
9 %.d %.html %.gv: %.y
10 $(BISON) $(BISONFLAGS) --html --graph -o $*.d $<
12 %: %.d
13 $(DC) $(DCFLAGS) $<
15 run: calc
16 @echo "Type arithmetic expressions. Quit with ctrl-d."
17 ./$<
19 clean:
20 rm -f calc calc.d calc.xml calc.gv calc.html *.o