Deleted Added
full compact
Makefile (249657) Makefile (263227)
1# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
1# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
2# $FreeBSD: head/usr.bin/m4/Makefile 249657 2013-04-19 19:45:00Z ed $
2# $FreeBSD: head/usr.bin/m4/Makefile 263227 2014-03-16 08:04:06Z jmmv $
3
4# -DEXTENDED
5# if you want the paste & spaste macros.
6
3
4# -DEXTENDED
5# if you want the paste & spaste macros.
6
7.include <bsd.own.mk>
8
7PROG= m4
8CFLAGS+=-DEXTENDED -I${.CURDIR} -I${.CURDIR}/lib
9DPADD= ${LIBY} ${LIBL} ${LIBM}
10LDADD= -ly -ll -lm
11
12NO_WMISSING_VARIABLE_DECLARATIONS=
13
14SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
15.PATH: ${.CURDIR}/lib
16SRCS+= ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
17 ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
18 ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
19 ohash_qlookupi.c
20
21tokenizer.o: parser.h
22
23CLEANFILES+= parser.c parser.h tokenizer.o
24
9PROG= m4
10CFLAGS+=-DEXTENDED -I${.CURDIR} -I${.CURDIR}/lib
11DPADD= ${LIBY} ${LIBL} ${LIBM}
12LDADD= -ly -ll -lm
13
14NO_WMISSING_VARIABLE_DECLARATIONS=
15
16SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
17.PATH: ${.CURDIR}/lib
18SRCS+= ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
19 ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
20 ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
21 ohash_qlookupi.c
22
23tokenizer.o: parser.h
24
25CLEANFILES+= parser.c parser.h tokenizer.o
26
27.if ${MK_TESTS} != "no"
28SUBDIR+= tests
29.endif
30
25.include <bsd.prog.mk>
31.include <bsd.prog.mk>