|
diff --git a/Makefile b/Makefile index 9b55ecf..b7e0e33 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -2,12 +2,14 @@ export KDEPIMDIR = $(shell pwd) |
2 | |
2 | |
3 | |
3 | |
4 | ifeq ($(PLATFORM) , zaurus) |
4 | ifeq ($(PLATFORM) , zaurus) |
5 | BUILD_NO_LDAP_PLUGIN=1 |
5 | BUILD_NO_LDAP_PLUGIN=1 |
| |
6 | BUILD_NO_GAMMU=1 |
6 | endif |
7 | endif |
7 | |
8 | |
8 | ifneq ($(PLATFORM) , zaurus) |
9 | ifneq ($(PLATFORM) , zaurus) |
9 | BUILD_NO_SHARP_PLUGIN=1 |
10 | BUILD_NO_SHARP_PLUGIN=1 |
| |
11 | BUILD_NO_GAMMU=1 |
10 | endif |
12 | endif |
11 | |
13 | |
12 | SUBDIRS_MICROKDE = \ |
14 | SUBDIRS_MICROKDE = \ |
13 | libical/src/libical \ |
15 | libical/src/libical \ |
@@ -40,23 +42,28 @@ SUBDIRS_MICROMAIL = \ |
40 | kmicromail/libetpan \ |
42 | kmicromail/libetpan \ |
41 | kmicromail/libmailwrapper \ |
43 | kmicromail/libmailwrapper \ |
42 | kmicromail |
44 | kmicromail |
43 | |
45 | |
| |
46 | SUBDIRS_GAMMU = \ |
| |
47 | gammu/emb/common \ |
| |
48 | gammu/emb/gammu |
| |
49 | |
44 | SUBDIRS = \ |
50 | SUBDIRS = \ |
45 | $(SUBDIRS_MICROKDE) \ |
51 | $(SUBDIRS_MICROKDE) \ |
46 | $(SUBDIRS_QTOPIA_PLUGIN) \ |
52 | $(SUBDIRS_QTOPIA_PLUGIN) \ |
47 | $(SUBDIRS_OPIE_PLUGIN) \ |
53 | $(SUBDIRS_OPIE_PLUGIN) \ |
48 | $(SUBDIRS_SHARP_PLUGIN) \ |
54 | $(SUBDIRS_SHARP_PLUGIN) \ |
49 | $(SUBDIRS_LDAP_PLUGIN) \ |
55 | $(SUBDIRS_LDAP_PLUGIN) \ |
50 | $(SUBDIRS_MICROMAIL) |
56 | $(SUBDIRS_MICROMAIL) \ |
51 | |
57 | $(SUBDIRS_GAMMU) |
52 | |
58 | |
53 | all: build_microkde \ |
59 | all: build_microkde \ |
54 | build_qtopia_plugin \ |
60 | build_qtopia_plugin \ |
55 | build_opie_plugin \ |
61 | build_opie_plugin \ |
56 | build_sharp_plugin \ |
62 | build_sharp_plugin \ |
57 | build_ldap_plugin \ |
63 | build_ldap_plugin \ |
58 | build_micromail |
64 | build_micromail \ |
| |
65 | build_gammu |
59 | |
66 | |
60 | |
67 | |
61 | build_microkde: variable_test tmake |
68 | build_microkde: variable_test tmake |
62 | for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ |
69 | for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ |
@@ -104,8 +111,17 @@ build_micromail: build_microkde |
104 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
111 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
105 | done |
112 | done |
106 | endif |
113 | endif |
107 | |
114 | |
| |
115 | build_gammu: variable_test tmake |
| |
116 | ifdef BUILD_NO_GAMMU |
| |
117 | @echo ---> gammu not build. |
| |
118 | else |
| |
119 | for i in $(SUBDIRS_GAMMU); do pushd $$i; \ |
| |
120 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
| |
121 | done |
| |
122 | endif |
| |
123 | |
108 | |
124 | |
109 | variable_info: |
125 | variable_info: |
110 | @echo -------------------------------------- |
126 | @echo -------------------------------------- |
111 | @echo KDEPIM buildsystem, variableinfo... |
127 | @echo KDEPIM buildsystem, variableinfo... |
@@ -121,8 +137,9 @@ variable_info: |
121 | @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) |
137 | @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) |
122 | ifndef BUILD_NO_SHARP_PLUGIN |
138 | ifndef BUILD_NO_SHARP_PLUGIN |
123 | @echo SHARPDTMSDK=$(SHARPDTMSDK) |
139 | @echo SHARPDTMSDK=$(SHARPDTMSDK) |
124 | endif |
140 | endif |
| |
141 | @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) |
125 | @echo -------------------------------------- |
142 | @echo -------------------------------------- |
126 | |
143 | |
127 | variable_test: variable_info |
144 | variable_test: variable_info |
128 | @echo KDEPIM buildsystem, variablecheck... |
145 | @echo KDEPIM buildsystem, variablecheck... |
@@ -182,8 +199,11 @@ dist: |
182 | ifndef BUILD_NO_MICROMAIL |
199 | ifndef BUILD_NO_MICROMAIL |
183 | ./mkipks kopiemail.control |
200 | ./mkipks kopiemail.control |
184 | endif |
201 | endif |
185 | ./mkipks korganizer-alarm.control |
202 | ./mkipks korganizer-alarm.control |
| |
203 | ifndef BUILD_NO_GAMMU |
| |
204 | ./mkipks gammu.control |
| |
205 | endif |
186 | |
206 | |
187 | tmake: objects \ |
207 | tmake: objects \ |
188 | qtcompat/Makefile$(PLATFORM) \ |
208 | qtcompat/Makefile$(PLATFORM) \ |
189 | microkde/Makefile$(PLATFORM) \ |
209 | microkde/Makefile$(PLATFORM) \ |
@@ -203,9 +223,11 @@ tmake: objects \ |
203 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ |
223 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ |
204 | kaddressbook/Makefile$(PLATFORM) \ |
224 | kaddressbook/Makefile$(PLATFORM) \ |
205 | kmicromail/Makefile$(PLATFORM) \ |
225 | kmicromail/Makefile$(PLATFORM) \ |
206 | kmicromail/libetpan/Makefile$(PLATFORM) \ |
226 | kmicromail/libetpan/Makefile$(PLATFORM) \ |
207 | kmicromail/libmailwrapper/Makefile$(PLATFORM) |
227 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ |
| |
228 | gammu/emb/common/Makefile$(PLATFORM) \ |
| |
229 | gammu/emb/gammu/Makefile$(PLATFORM) \ |
208 | |
230 | |
209 | |
231 | |
210 | |
232 | |
211 | |
233 | |
@@ -268,4 +290,10 @@ kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro |
268 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" libetpanE.pro -o Makefile$(PLATFORM) |
290 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" libetpanE.pro -o Makefile$(PLATFORM) |
269 | |
291 | |
270 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro |
292 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro |
271 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" libmailwrapperE.pro -o Makefile$(PLATFORM) |
293 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" libmailwrapperE.pro -o Makefile$(PLATFORM) |
| |
294 | |
| |
295 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro |
| |
296 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" commonE.pro -o Makefile$(PLATFORM) |
| |
297 | |
| |
298 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro |
| |
299 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" gammuE.pro -o Makefile$(PLATFORM) |
|