source: abnfparser/bap/Makefile.in @ 419

Last change on this file since 419 was 407, checked in by ylafon@…, 14 years ago

unixism

File size: 432 bytes
Line 
1#
2# $Id: Makefile.in,v 1.1 2008-05-28 12:01:58 jre Exp $
3#
4
5OBJS=   parser.o scanner.o main.o @LIBOBJS@
6HEADERS= config.h common.h
7
8CFLAGS= @CFLAGS@ @DEFS@ -DYYDEBUG
9YACC=   @YACC@ -d -v
10CC=     @CC@
11
12bap:    ${OBJS}
13        ${CC} -o $@ ${DEBUG} ${OBJS} -ll
14
15scanner.c:      scanner.l ${HEADERS}
16parser.c:       parser.y ${HEADERS}
17
18main.c:
19
20main.o: ${HEADERS}
21
22clean:
23        rm -f bap scanner.c parser.c $(OBJS)
24        @make -C tests clean
25
26test: bap
27        @make -C tests test
Note: See TracBrowser for help on using the repository browser.