68f4fced95
string could have been passed to free(); There are some warnings here I am not sure how to fix as they are in the lex scanner code, etc.
16 lines
280 B
Makefile
16 lines
280 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= config
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
CFLAGS+=${BDECFLAGS}
|
|
SRCS= config.y main.c lang.l mkmakefile.c mkheaders.c \
|
|
mkoptions.c y.tab.h
|
|
MAN8= config.8
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
|
|
mkmakefile.o: configvers.h
|
|
|
|
.include <bsd.prog.mk>
|