diff options
Diffstat (limited to 'apps/windoze/CBuilder3')
-rw-r--r-- | apps/windoze/CBuilder3/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/windoze/CBuilder3/Makefile b/apps/windoze/CBuilder3/Makefile new file mode 100644 index 0000000..bf4fc5d --- /dev/null +++ b/apps/windoze/CBuilder3/Makefile @@ -0,0 +1,14 @@ + +root := ../../.. +subdirs := BibleCS +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 |