blob: 60074420d7fe0f6f50ddd8a407ee9e43b29faeac (
plain) (
tree)
|
|
root := ../../../..
pre-targets :=
include ${root}/Makefile.cfg
s = $(c) $(cpp)
d = $(c:%.c=%.d) $(cpp:%.cpp=%.d)
o = $(c:%.c=%.o) $(cpp:%.cpp=%.o)
${root}/lib/libsword.a: $(o)
$(AR) crs $@ $^
ifneq ($(nodeps),yes)
-include $(d)
endif
|