Makefile revision 228698
1#	$OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
2# $FreeBSD: head/usr.bin/m4/Makefile 228698 2011-12-18 23:54:32Z dim $
3
4# -DEXTENDED 
5# 	if you want the paste & spaste macros.
6
7PROG=	m4
8CFLAGS+=-DEXTENDED -I${.CURDIR}/lib
9LDADD=	-ly -ll -lm
10# clang needs 1 while with gcc we can use 2
11#WARNS=	1
12
13SRCS=	eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
14.PATH: ${.CURDIR}/lib
15SRCS+=	ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
16	ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
17	ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
18	ohash_qlookupi.c
19
20tokenizer.o: parser.h
21
22CLEANFILES+=	parser.c parser.h tokenizer.o
23
24.include <bsd.prog.mk>
25