author | ulf69 <ulf69> | 2004-07-16 23:28:45 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-07-16 23:28:45 (UTC) |
commit | b306ee8c93dd563f42a32a1ee2c63eacc6050604 (patch) (unidiff) | |
tree | 695db38d96b8635e754ecbd052c4710a2e019659 /Makefile.Embedded | |
parent | e87df879ceaa743c95d2b48c291c3c35f8ed6b3f (diff) | |
download | kdepimpi-b306ee8c93dd563f42a32a1ee2c63eacc6050604.zip kdepimpi-b306ee8c93dd563f42a32a1ee2c63eacc6050604.tar.gz kdepimpi-b306ee8c93dd563f42a32a1ee2c63eacc6050604.tar.bz2 |
build sharp dtm plugin only if we crosscompile for the zaurus (Platform=zaurus)
-rw-r--r-- | Makefile.Embedded | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded index 39d852f..71035d6 100644 --- a/Makefile.Embedded +++ b/Makefile.Embedded | |||
@@ -1,55 +1,59 @@ | |||
1 | DISTPATH = $(shell pwd) | 1 | DISTPATH = $(shell pwd) |
2 | DISTDIR = $(shell basename $(DISTPATH)) | 2 | DISTDIR = $(shell basename $(DISTPATH)) |
3 | 3 | ||
4 | ifeq ($(PLATFORM) , zaurus) | 4 | ifeq ($(PLATFORM) , zaurus) |
5 | BUILD_NO_LDAP_PLUGIN=1 | 5 | BUILD_NO_LDAP_PLUGIN=1 |
6 | endif | 6 | endif |
7 | 7 | ||
8 | ifneq ($(PLATFORM) , zaurus) | ||
9 | BUILD_NO_SHARP_PLUGIN=1 | ||
10 | endif | ||
11 | |||
8 | 12 | ||
9 | SUBDIRS_MAIN = \ | 13 | SUBDIRS_MAIN = \ |
10 | libical/src/libical \ | 14 | libical/src/libical \ |
11 | libical/src/libicalss \ | 15 | libical/src/libicalss \ |
12 | qtcompat \ | 16 | qtcompat \ |
13 | microkde \ | 17 | microkde \ |
14 | libkcal \ | 18 | libkcal \ |
15 | libkdepim \ | 19 | libkdepim \ |
16 | kabc \ | 20 | kabc \ |
17 | kabc/formats/binary \ | 21 | kabc/formats/binary \ |
18 | kabc/plugins/file \ | 22 | kabc/plugins/file \ |
19 | kabc/plugins/dir \ | 23 | kabc/plugins/dir \ |
20 | korganizer \ | 24 | korganizer \ |
21 | kalarmd \ | 25 | kalarmd \ |
22 | kaddressbook | 26 | kaddressbook |
23 | 27 | ||
24 | SUBDIRS_QTOPIA_PLUGIN = \ | 28 | SUBDIRS_QTOPIA_PLUGIN = \ |
25 | kabc/converter/qtopia \ | 29 | kabc/converter/qtopia \ |
26 | kabc/plugins/qtopia \ | 30 | kabc/plugins/qtopia \ |
27 | kaddressbook/xxport/qtopia | 31 | kaddressbook/xxport/qtopia |
28 | 32 | ||
29 | SUBDIRS_OPIE_PLUGIN = \ | 33 | SUBDIRS_OPIE_PLUGIN = \ |
30 | kabc/converter/opie \ | 34 | kabc/converter/opie \ |
31 | kabc/plugins/opie \ | 35 | kabc/plugins/opie \ |
32 | kaddressbook/xxport/opie | 36 | kaddressbook/xxport/opie |
33 | 37 | ||
34 | SUBDIRS_SHARP_PLUGIN = \ | 38 | SUBDIRS_SHARP_PLUGIN = \ |
35 | kabc/converter/sharpdtm \ | 39 | kabc/converter/sharpdtm \ |
36 | kabc/plugins/sharpdtm \ | 40 | kabc/plugins/sharpdtm \ |
37 | kaddressbook/xxport/sharpdtm | 41 | kaddressbook/xxport/sharpdtm |
38 | 42 | ||
39 | SUBDIRS_LDAP_PLUGIN = \ | 43 | SUBDIRS_LDAP_PLUGIN = \ |
40 | kabc/plugins/ldap | 44 | kabc/plugins/ldap |
41 | 45 | ||
42 | SUBDIRS_MICROMAIL = \ | 46 | SUBDIRS_MICROMAIL = \ |
43 | kmicromail/libetpan \ | 47 | kmicromail/libetpan \ |
44 | kmicromail/libmailwrapper \ | 48 | kmicromail/libmailwrapper \ |
45 | kmicromail | 49 | kmicromail |
46 | 50 | ||
47 | all: build_main \ | 51 | all: build_main \ |
48 | build_qtopia_plugin \ | 52 | build_qtopia_plugin \ |
49 | build_opie_plugin \ | 53 | build_opie_plugin \ |
50 | build_sharp_plugin \ | 54 | build_sharp_plugin \ |
51 | build_ldap_plugin \ | 55 | build_ldap_plugin \ |
52 | build_micromail | 56 | build_micromail |
53 | 57 | ||
54 | 58 | ||
55 | build_main: variable_info tmake | 59 | build_main: variable_info tmake |