summaryrefslogtreecommitdiffabout
path: root/Makefile.Embedded
authorulf69 <ulf69>2004-09-15 17:49:28 (UTC)
committer ulf69 <ulf69>2004-09-15 17:49:28 (UTC)
commit404d843c590a91a6b7588302dd298092c66b400d (patch) (side-by-side diff)
tree33fddc20a982e0f8a28f9dd40cbcfc9c8fb5f8b1 /Makefile.Embedded
parent0af70ae5fee7b71aecf5ac742fdd65e31237eb5a (diff)
downloadkdepimpi-404d843c590a91a6b7588302dd298092c66b400d.zip
kdepimpi-404d843c590a91a6b7588302dd298092c66b400d.tar.gz
kdepimpi-404d843c590a91a6b7588302dd298092c66b400d.tar.bz2
added buildrules for PwManager
Diffstat (limited to 'Makefile.Embedded') (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
@@ -47,2 +47,5 @@ SUBDIRS_GAMMU = \
+SUBDIRS_PWMANAGER = \
+ pwmanager/pwmanager
+
SUBDIRS = \
@@ -54,3 +57,4 @@ SUBDIRS = \
$(SUBDIRS_MICROMAIL) \
- $(SUBDIRS_GAMMU)
+ $(SUBDIRS_GAMMU) \
+ $(SUBDIRS_PWMANAGER)
@@ -62,3 +66,4 @@ all: build_microkde \
build_micromail \
- build_gammu
+ build_gammu \
+ build_pwmanager
@@ -121,2 +126,11 @@ build_gammu: variable_test tmake
+build_pwmanager: build_microkde
+ ifdef BUILD_NO_PWMANAGER
+ @echo == pwmanager not build.
+ else
+ for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \
+ make -f Makefile$(PLATFORM) || exit 1; popd; \
+ done
+ endif
+
@@ -139,2 +153,3 @@ variable_info:
@echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU)
+ @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER)
@echo --------------------------------------
@@ -171,2 +186,5 @@ variable_test: variable_info
endif
+ ifdef BUILD_NO_PWMANAGER
+ @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER)
+ endif
@echo --------------------------------------
@@ -233,3 +251,3 @@ tmake: objects \
gammu/emb/gammu/Makefile$(PLATFORM) \
-
+ pwmanager/pwmanager/Makefile$(PLATFORM) \
@@ -303 +321,4 @@ gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro
cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" gammuE.pro -o Makefile$(PLATFORM)
+
+pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro
+ cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" pwmanagerE.pro -o Makefile$(PLATFORM)