2002-05-01 21:37:29 +00:00
|
|
|
# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
|
2002-04-19 17:26:21 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-04-19 17:26:21 +00:00
|
|
|
# -DEXTENDED
|
1994-05-27 12:33:43 +00:00
|
|
|
# if you want the paste & spaste macros.
|
|
|
|
|
2014-03-16 08:04:06 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
PROG= m4
|
2012-10-21 08:38:55 +00:00
|
|
|
CFLAGS+=-DEXTENDED -I${.CURDIR} -I${.CURDIR}/lib
|
2013-01-01 18:25:14 +00:00
|
|
|
DPADD= ${LIBY} ${LIBL} ${LIBM}
|
2011-12-18 23:54:32 +00:00
|
|
|
LDADD= -ly -ll -lm
|
2013-04-19 19:45:00 +00:00
|
|
|
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
2002-04-19 17:26:21 +00:00
|
|
|
|
2011-11-28 13:32:39 +00:00
|
|
|
SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
|
|
|
|
.PATH: ${.CURDIR}/lib
|
|
|
|
SRCS+= ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
|
|
|
|
ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
|
|
|
|
ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
|
|
|
|
ohash_qlookupi.c
|
|
|
|
|
|
|
|
tokenizer.o: parser.h
|
|
|
|
|
|
|
|
CLEANFILES+= parser.c parser.h tokenizer.o
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2014-03-16 08:04:06 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
SUBDIR+= tests
|
|
|
|
.endif
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
.include <bsd.prog.mk>
|