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