summaryrefslogtreecommitdiff
path: root/i/marvin/src/parser/Makefile.defs
blob: 61b4b9758ff71b09515847f8fe821e7f9159bbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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