summaryrefslogtreecommitdiff
path: root/Makefile
blob: e154497088b41beb18416e6329c3b3eb807e1efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# BSD-compatible makefile

.include "common.mk"

.sinclude "$(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