diff options
Diffstat (limited to 'usr.bin/m4/Makefile')
-rw-r--r-- | usr.bin/m4/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile new file mode 100644 index 0000000..fefaf4d --- /dev/null +++ b/usr.bin/m4/Makefile @@ -0,0 +1,24 @@ +# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $ +# $FreeBSD$ + +# -DEXTENDED +# if you want the paste & spaste macros. + +PROG= m4 +CFLAGS+=-DEXTENDED -I${.CURDIR}/lib +LDADD= -ly -ll -lm +# clang needs 1 while with gcc we can use 2 +#WARNS= 1 + +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 + +.include <bsd.prog.mk> |