From b56b5c78d7b231e364d9482b7b707316a47025c9 Mon Sep 17 00:00:00 2001 From: thurston Date: Fri, 2 Feb 2007 18:52:26 +0000 Subject: [PATCH] Removed last example directory. git-svn-id: http://svn.complang.org/ragel/trunk@60 052ea7fc-9027-0410-9066-f65837a77df0 --- examples/cppscan/Makefile | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 examples/cppscan/Makefile diff --git a/examples/cppscan/Makefile b/examples/cppscan/Makefile deleted file mode 100644 index 6a92c82..0000000 --- a/examples/cppscan/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -RAGEL = ../../ragel/ragel -RLCODEGEN = ../../rlcodegen/rlcodegen -FLEX = flex -RE2C = re2c - -CFLAGS = -Wall -g -O3 - -all: cppscan lex-cppscan re2c-cppscan - -ps: cppscan.ps - -cppscan: cppscan.o - g++ -g -o $@ $< - -lex-cppscan: lex-cppscan.o - g++ -g -o $@ $< - -re2c-cppscan: re2c-cppscan.o - g++ -g -o $@ $< - -cppscan.cpp: cppscan.rl $(RAGEL) $(RLCODEGEN) - $(RAGEL) cppscan.rl | $(RLCODEGEN) -G2 -o $@ - -lex-cppscan.cpp: cppscan.lex - $(FLEX) -f -o $@ $< - -re2c-cppscan.cpp: cppscan.rec - $(RE2C) -s $< > $@ - -example.cpp: example.rec - $(RE2C) -s $< > $@ - -%.o: %.cpp - g++ $(CFLAGS) -c -o $@ $< - -cppscan.ps: cppscan.rl $(RAGEL) $(RLCODEGEN) - $(RAGEL) cppscan.rl | $(RLCODEGEN) -V | dot -Tps > cppscan.ps - -distclean clean: - rm -Rf *.o cppscan.cpp cppscan cppscan.ps \ - lex-cppscan lex-cppscan.cpp re2c-cppscan re2c-cppscan.cpp -- 2.7.4