[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / m4

File: [local] / src / usr.bin / m4 / Makefile (download)

Revision 1.6, Tue Jan 2 23:51:52 2001 UTC (23 years, 4 months ago) by smurph
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.5: +6 -1 lines

m88k doesn't like optimization on m4.

#	$OpenBSD: Makefile,v 1.6 2001/01/02 23:51:52 smurph Exp $

# -DEXTENDED 
# 	if you want the paste & spaste macros.

PROG=	m4
CFLAGS+=-DEXTENDED 
CFLAGS+=-W -Wall -Wstrict-prototypes \
	-Wno-unused -Wno-char-subscripts -Wno-sign-compare
# No optimization for m88k
.if (${MACHINE_ARCH} == "m88k")
CFLAGS+=-O0
.endif

SRCS=	eval.c expr.c look.c main.c misc.c gnum4.c
MAN=	m4.1

.include <bsd.prog.mk>