1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
18 lines
494 B
Makefile
18 lines
494 B
Makefile
# $FreeBSD$
|
|
# From: @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
|
|
FILES= bsd.README
|
|
FILES+= bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.kern.mk bsd.kmod.mk
|
|
FILES+= bsd.lib.mk bsd.libnames.mk bsd.man.mk bsd.obj.mk bsd.own.mk
|
|
FILES+= bsd.port.mk bsd.port.subdir.mk bsd.prog.mk bsd.sgml.mk bsd.subdir.mk
|
|
FILES+= sys.mk
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
afterinstall:
|
|
cd ${.CURDIR} && ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
${DESTDIR}${BINDIR}/mk
|
|
|
|
.include <bsd.prog.mk>
|