Allow for OS and SUBOS folders so we can introduce NetBSD scripts whilst keeping BSD for all BSD's.

This commit is contained in:
Roy Marples
2008-01-10 16:35:59 +00:00
parent 2643f2e605
commit 4314784520
44 changed files with 257 additions and 307 deletions

11
mk/depend.mk Normal file
View File

@@ -0,0 +1,11 @@
# This only works for make implementations that always include a .depend if
# it exists. Only GNU make does not do this.
# Copyright 2008 Roy Marples <roy@marples.name>
CLEANFILES+= .depend
.depend: ${SRCS}
${CC} ${CFLAGS} -MM ${SRCS} > .depend
depend: .depend