author | ulf69 <ulf69> | 2004-07-16 01:19:55 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-07-16 01:19:55 (UTC) |
commit | 7e6848998acc3fd5875a8dc35fe56a2a2a2db6c9 (patch) (side-by-side diff) | |
tree | 0d97d5dc5685b6f2849c4f8b883c023746557620 /Makefile.Embedded | |
parent | dd3243de5d504c43987b0ef20243d9b499a6de3f (diff) | |
download | kdepimpi-7e6848998acc3fd5875a8dc35fe56a2a2a2db6c9.zip kdepimpi-7e6848998acc3fd5875a8dc35fe56a2a2a2db6c9.tar.gz kdepimpi-7e6848998acc3fd5875a8dc35fe56a2a2a2db6c9.tar.bz2 |
changes to support sharp converter
-rw-r--r-- | Makefile.Embedded | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded index c86600b..3ffa7b5 100644 --- a/Makefile.Embedded +++ b/Makefile.Embedded @@ -1,16 +1,31 @@ DISTPATH = $(shell pwd) DISTDIR = $(shell basename $(DISTPATH)) -SUBDIRS = libical/src/libical libical/src/libicalss qtcompat microkde \ - libkcal libkdepim kabc kabc/converter/opie kabc/converter/qtopia kabc/formats/binary \ +SUBDIRS = libical/src/libical \ + libical/src/libicalss \ + qtcompat \ + microkde \ + libkcal \ + libkdepim \ + kabc \ + kabc/converter/opie \ + kabc/converter/qtopia \ + kabc/converter/sharpdtm \ + kabc/formats/binary \ kabc/plugins/file \ kabc/plugins/dir \ kabc/plugins/ldap \ kabc/plugins/opie \ kabc/plugins/qtopia \ kabc/plugins/sharpdtm \ - korganizer kalarmd kaddressbook/xxport/opie kaddressbook/xxport/qtopia kaddressbook + korganizer \ + kalarmd \ + kaddressbook/xxport/opie \ + kaddressbook/xxport/qtopia \ + kaddressbook/xxport/sharpdtm \ + kaddressbook + all: tmake for i in $(SUBDIRS); do pushd $$i; \ make -f Makefile$(PLATFORM) || exit 1; popd; \ done @@ -34,10 +49,10 @@ dist: @echo Dont forget to do "make install" before "make dist" rm -f *arm.ipk rm -f *~ cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc kdepim - mkipks kdepim.control - mkipks korganizer-alarm.control + ./mkipks kdepim.control + ./mkipks korganizer-alarm.control tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ libkcal/Makefile$(PLATFORM) \ libkdepim/Makefile$(PLATFORM) korganizer/Makefile$(PLATFORM) \ @@ -46,8 +61,9 @@ tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ libical/src/libicalss/Makefile$(PLATFORM) \ kabc/Makefile$(PLATFORM) \ kabc/converter/opie/Makefile$(PLATFORM) \ kabc/converter/qtopia/Makefile$(PLATFORM) \ + kabc/converter/sharpdtm/Makefile$(PLATFORM) \ kabc/formats/binary/Makefile$(PLATFORM) \ kabc/plugins/file/Makefile$(PLATFORM) \ kabc/plugins/dir/Makefile$(PLATFORM) \ kabc/plugins/ldap/Makefile$(PLATFORM) \ @@ -55,8 +71,9 @@ tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ kabc/plugins/qtopia/Makefile$(PLATFORM) \ kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ kaddressbook/xxport/opie/Makefile$(PLATFORM) \ kaddressbook/xxport/qtopia/Makefile$(PLATFORM) \ + kaddressbook/xxport/sharpdtm/Makefile$(PLATFORM) \ kaddressbook/Makefile$(PLATFORM) @@ -92,9 +109,13 @@ kabc/converter/opie/Makefile$(PLATFORM): kabc/converter/opie/opieE.pro cd kabc/converter/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" opieE.pro -o Makefile$(PLATFORM) kabc/converter/qtopia/Makefile$(PLATFORM): kabc/converter/qtopia/qtopiaE.pro cd kabc/converter/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" qtopiaE.pro -o Makefile$(PLATFORM) - + +kabc/converter/sharpdtm/Makefile$(PLATFORM): kabc/converter/sharpdtm/sharpdtmE.pro + cd kabc/converter/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" sharpdtmE.pro -o Makefile$(PLATFORM) + + kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro @@ -120,7 +141,11 @@ kaddressbook/xxport/opie/Makefile$(PLATFORM): kaddressbook/xxport/opie/opieE.pro kaddressbook/xxport/qtopia/Makefile$(PLATFORM): kaddressbook/xxport/qtopia/qtopiaE.pro cd kaddressbook/xxport/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" qtopiaE.pro -o Makefile$(PLATFORM) +kaddressbook/xxport/sharpdtm/Makefile$(PLATFORM): kaddressbook/xxport/sharpdtm/sharpdtmE.pro + cd kaddressbook/xxport/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" sharpdtmE.pro -o Makefile$(PLATFORM) + + kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" kaddressbookE.pro -o Makefile$(PLATFORM) |