eda/drivers/SQLite: Printing query errors
[sdk] / eda / Makefile
1 ifneq "$(V)" "1"
2 .SILENT:
3 endif
4 .PHONY: all cmd cleantarget clean realclean distclean
5
6 # CROSS-PLATFORM MAGIC
7
8 _CF_DIR = ../
9
10 include $(_CF_DIR)crossplatform.mk
11 include $(_CF_DIR)default.cf
12
13 all:
14         @$(call echo,Building Ecere Data Access layer...)
15         cd libeda && $(MAKE)
16         @$(call echo,Building EDASQLite driver...)
17         cd drivers && cd sqlite && $(MAKE)
18 ifdef EDASQLiteCipher
19         @$(call echo,Building EDASQLiteCipher driver...)
20         cd drivers && cd sqliteCipher && $(MAKE)
21 endif
22
23 cleantarget:
24         cd libeda && $(MAKE) cleantarget
25         cd drivers && cd sqlite && $(MAKE) cleantarget
26 ifdef EDASQLiteCipher
27         cd drivers && cd sqliteCipher && $(MAKE) cleantarget
28 endif
29
30 clean:
31         cd libeda && $(MAKE) clean
32         cd drivers && cd sqlite && $(MAKE) clean
33 ifdef EDASQLiteCipher
34         cd drivers && cd sqliteCipher && $(MAKE) clean
35 endif
36
37 realclean:
38         cd libeda && $(MAKE) realclean
39         cd drivers && cd sqlite && $(MAKE) realclean
40 ifdef EDASQLiteCipher
41         cd drivers && cd sqliteCipher && $(MAKE) realclean
42 endif
43
44 distclean:
45         cd libeda && $(MAKE) distclean
46         cd drivers && cd sqlite && $(MAKE) distclean
47 ifdef EDASQLiteCipher
48         cd drivers && cd sqliteCipher && $(MAKE) distclean
49 endif