summaryrefslogtreecommitdiff
path: root/i/marvin/src/parser/Makefile.defs
diff options
context:
space:
mode:
authorschodet2006-04-09 13:48:55 +0000
committerschodet2006-04-09 13:48:55 +0000
commit1cb15048a3da2076ea3d41b53b2791cbb8925eec (patch)
tree076208c18525b3c43699294064b1b6ea5bdb9ac2 /i/marvin/src/parser/Makefile.defs
parent8943c165faa72b9fc141d2244be0bf7118179043 (diff)
Ajout du parser générique.
Voila, j'ai résolu mes problèmes éthiques comme dit djerem.
Diffstat (limited to 'i/marvin/src/parser/Makefile.defs')
-rw-r--r--i/marvin/src/parser/Makefile.defs14
1 files changed, 14 insertions, 0 deletions
diff --git a/i/marvin/src/parser/Makefile.defs b/i/marvin/src/parser/Makefile.defs
new file mode 100644
index 0000000..61b4b97
--- /dev/null
+++ b/i/marvin/src/parser/Makefile.defs
@@ -0,0 +1,14 @@
+PROGRAMS += test_parser
+
+parser_OBJECTS = yylexer.o yyparser.o parser.o
+
+test_parser_OBJECTS = $(parser_OBJECTS) test_parser.o
+
+EXTRA_CLEAN += yyparser.hh yyparser.cc yylexer.hh yylexer.cc
+
+yyparser.hh: yyparser.cc
+$(OBJ_DIR)/yylexer.o: yyparser.hh
+
+yylexer.hh: yylexer.cc
+$(OBJ_DIR)/yyparser.o: yylexer.hh
+$(OBJ_DIR)/parser.o: yylexer.hh