summaryrefslogtreecommitdiffabout
authorulf69 <ulf69>2004-09-15 17:49:28 (UTC)
committer ulf69 <ulf69>2004-09-15 17:49:28 (UTC)
commit404d843c590a91a6b7588302dd298092c66b400d (patch) (unidiff)
tree33fddc20a982e0f8a28f9dd40cbcfc9c8fb5f8b1
parent0af70ae5fee7b71aecf5ac742fdd65e31237eb5a (diff)
downloadkdepimpi-404d843c590a91a6b7588302dd298092c66b400d.zip
kdepimpi-404d843c590a91a6b7588302dd298092c66b400d.tar.gz
kdepimpi-404d843c590a91a6b7588302dd298092c66b400d.tar.bz2
added buildrules for PwManager
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.Embedded27
1 files changed, 24 insertions, 3 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded
index de9d5ce..e472689 100644
--- a/Makefile.Embedded
+++ b/Makefile.Embedded
@@ -46,4 +46,7 @@ SUBDIRS_GAMMU = \
46 gammu/emb/gammu 46 gammu/emb/gammu
47 47
48SUBDIRS_PWMANAGER = \
49 pwmanager/pwmanager
50
48SUBDIRS = \ 51SUBDIRS = \
49 $(SUBDIRS_MICROKDE) \ 52 $(SUBDIRS_MICROKDE) \
@@ -53,5 +56,6 @@ SUBDIRS = \
53 $(SUBDIRS_LDAP_PLUGIN) \ 56 $(SUBDIRS_LDAP_PLUGIN) \
54 $(SUBDIRS_MICROMAIL) \ 57 $(SUBDIRS_MICROMAIL) \
55 $(SUBDIRS_GAMMU) 58 $(SUBDIRS_GAMMU) \
59 $(SUBDIRS_PWMANAGER)
56 60
57all: build_microkde \ 61all: build_microkde \
@@ -61,5 +65,6 @@ all: build_microkde \
61 build_ldap_plugin \ 65 build_ldap_plugin \
62 build_micromail \ 66 build_micromail \
63 build_gammu 67 build_gammu \
68 build_pwmanager
64 69
65 70
@@ -120,4 +125,13 @@ build_gammu: variable_test tmake
120 endif 125 endif
121 126
127build_pwmanager: build_microkde
128 ifdef BUILD_NO_PWMANAGER
129 @echo == pwmanager not build.
130 else
131 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \
132 make -f Makefile$(PLATFORM) || exit 1; popd; \
133 done
134 endif
135
122 136
123variable_info: 137variable_info:
@@ -138,4 +152,5 @@ variable_info:
138 endif 152 endif
139 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) 153 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU)
154 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER)
140 @echo -------------------------------------- 155 @echo --------------------------------------
141 156
@@ -170,4 +185,7 @@ variable_test: variable_info
170 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU) 185 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU)
171 endif 186 endif
187 ifdef BUILD_NO_PWMANAGER
188 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER)
189 endif
172 @echo -------------------------------------- 190 @echo --------------------------------------
173 191
@@ -232,5 +250,5 @@ tmake: objects \
232 gammu/emb/common/Makefile$(PLATFORM) \ 250 gammu/emb/common/Makefile$(PLATFORM) \
233 gammu/emb/gammu/Makefile$(PLATFORM) \ 251 gammu/emb/gammu/Makefile$(PLATFORM) \
234 252 pwmanager/pwmanager/Makefile$(PLATFORM) \
235 253
236 254
@@ -302,2 +320,5 @@ gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro
302gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro 320gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro
303 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" gammuE.pro -o Makefile$(PLATFORM) 321 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" gammuE.pro -o Makefile$(PLATFORM)
322
323pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro
324 cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" pwmanagerE.pro -o Makefile$(PLATFORM)