2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for M4
|
|
|
|
|
|
|
|
# -DEXTENDED #if you like to get paste & spaste macros.
|
|
|
|
# -DVOID #if your C compiler does NOT support void.
|
|
|
|
# -DGETOPT #if you STILL do not have getopt in your library.
|
|
|
|
# -DDUFFCP #if you do not have fast memcpy in your library.
|
|
|
|
#
|
|
|
|
|
2010-05-12 18:28:54 +02:00
|
|
|
PROG= m4
|
|
|
|
SRCS= main.c eval.c serv.c look.c misc.c expr.c
|
|
|
|
CPPFLAGS+= -DEXTENDED
|
|
|
|
MAN=
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.prog.mk>
|