Unstaged changes (WIP)
[sdk] / eda / Makefile
index 5353116..3a0861a 100644 (file)
@@ -1,10 +1,14 @@
+ifneq "$(V)" "1"
 .SILENT:
-.PHONY: all cmd clean realclean distclean
+endif
+.PHONY: all cmd cleantarget clean realclean distclean
 
 # CROSS-PLATFORM MAGIC
 
-include ../crossplatform.mk
-include ../include.mk
+_CF_DIR = ../
+
+include $(_CF_DIR)crossplatform.mk
+include $(_CF_DIR)default.cf
 
 all:
        @$(call echo,Building Ecere Data Access layer...)
@@ -16,6 +20,13 @@ ifdef EDASQLiteCipher
        cd drivers && cd sqliteCipher && $(MAKE)
 endif
 
+cleantarget:
+       cd libeda && $(MAKE) cleantarget
+       cd drivers && cd sqlite && $(MAKE) cleantarget
+ifdef EDASQLiteCipher
+       cd drivers && cd sqliteCipher && $(MAKE) cleantarget
+endif
+
 clean:
        cd libeda && $(MAKE) clean
        cd drivers && cd sqlite && $(MAKE) clean