Merge branch 'vendor/BYACC'
[dragonfly.git] / usr.bin / m4 / Makefile
1 #       $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
2 # $FreeBSD: src/usr.bin/m4/Makefile,v 1.14 2013/01/01 18:26:42 svnexp Exp $
3
4 # -DEXTENDED 
5 #       if you want the paste & spaste macros.
6
7 PROG=   m4
8 CFLAGS+=-DEXTENDED -I${.CURDIR} -I${.CURDIR}/lib
9 DPADD=  ${LIBY} ${LIBL} ${LIBM}
10 LDADD=  -ly -ll -lm
11
12 SRCS=   eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
13 .PATH: ${.CURDIR}/lib
14 SRCS+=  ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
15         ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
16         ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
17         ohash_qlookupi.c
18
19 tokenizer.o: parser.h
20
21 CLEANFILES+=    parser.c parser.h tokenizer.o
22
23 .include <bsd.prog.mk>