b5909509ee
If you invoke config with the `-n' flag or have NO_CONFIG_CLOBBER in your environment, config will behave the same way it used to. This is now _documented_ as well. Rip out all the CONFIG_DONT_CLOBBER cruft; some of it wasn't even correct anyway.
13 lines
276 B
Makefile
13 lines
276 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= config
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
SRCS= config.c main.c lang.c mkioconf.c mkmakefile.c mkglue.c mkheaders.c \
|
|
mkswapconf.c
|
|
MAN8= config.8
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
CLEANFILES+=y.tab.h lang.c config.c y.tab.c
|
|
|
|
.include <bsd.prog.mk>
|