blob: ed029522e87283c8883046f88e46ac8c95208946 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
root := ../../../..
pre-targets :=
include ${root}/Makefile.cfg
s = $(c) $(cpp)
d = $(c:%.c=%.d) $(cpp:%.cpp=%.d)
o = $(c:%.c=%.o) $(cpp:%.cpp=%.o)
ifneq ($(nodeps),yes)
-include $(d)
endif
|