diff options
Diffstat (limited to 'examples/gotocallret/Makefile')
-rw-r--r-- | examples/gotocallret/Makefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/gotocallret/Makefile b/examples/gotocallret/Makefile deleted file mode 100644 index 13f9818..0000000 --- a/examples/gotocallret/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -RAGEL = ../../ragel/ragel -RLCODEGEN = ../../rlcodegen/rlcodegen - -all: gotocallret - -ps: gotocallret.ps - -gotocallret: gotocallret.o - g++ -g -o gotocallret gotocallret.o - -gotocallret.cpp: gotocallret.rl $(RAGEL) $(RLCODEGEN) - $(RAGEL) gotocallret.rl | $(RLCODEGEN) -G2 -o gotocallret.cpp - -gotocallret.o: gotocallret.cpp - g++ -Wall -g -c -O3 -o $@ $< - -gotocallret.ps: gotocallret.rl $(RAGEL) $(RLCODEGEN) - $(RAGEL) gotocallret.rl | $(RLCODEGEN) -V | dot -Tps > gotocallret.ps - -distclean clean: - rm -Rf *.o gotocallret.cpp gotocallret gotocallret.ps |