2012-10-26 15:22:39 +02:00
|
|
|
# $NetBSD: Makefile,v 1.17 2011/08/14 12:59:25 christos Exp $
|
2011-06-29 00:15:19 +02:00
|
|
|
#
|
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
|
|
|
|
# -DEXTENDED
|
|
|
|
# if you want the paste & spaste macros.
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
PROG= m4
|
|
|
|
CPPFLAGS+= -DEXTENDED -I${.CURDIR}/lib
|
|
|
|
SRCS= parser.y tokenizer.l eval.c expr.c look.c main.c misc.c gnum4.c trace.c
|
|
|
|
.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 strtonum.c
|
|
|
|
YHEADER=1
|
|
|
|
.if (${HOSTPROG:U} == "")
|
2011-09-30 12:18:10 +02:00
|
|
|
DPADD+= ${LIBUTIL} ${LIBL}
|
|
|
|
LDADD+= -lutil -ll
|
2011-06-29 00:15:19 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
tokenizer.o: parser.h
|
|
|
|
|
|
|
|
CLEANFILES+=parser.c parser.h tokenizer.o
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|