120125784a
This compiler flag enforces that that people either mark variables static or use an external declarations for the variable, similar to how -Wmissing-prototypes works for functions. Due to the fact that Yacc/Lex generate code that cannot trivially be changed to not warn because of this (lots of yy* variables), add a NO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off this specific compiler warning. Announced on: toolchain@
26 lines
679 B
Makefile
26 lines
679 B
Makefile
# $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} -I${.CURDIR}/lib
|
|
DPADD= ${LIBY} ${LIBL} ${LIBM}
|
|
LDADD= -ly -ll -lm
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
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>
|