blob: 2e61bd1fc24bcfe250901d7fc48814176eb5ea23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# BSD-compatible makefile
.include "common.mk"
.include "$(UNAME_S).mk"
# in this case we need a separate depend target
depend: $(DEPS)
@:
.if !(make(clean))
. for o in ${DEPS}
. sinclude "$o"
. endfor
.endif
|