author | zautrix <zautrix> | 2004-10-19 20:19:29 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-19 20:19:29 (UTC) |
commit | 39936ef421b8d7df06e88535460ff27d59d52ea4 (patch) (side-by-side diff) | |
tree | bb93d2eb012a624481a3e1b5f7badcd8632436e3 | |
parent | 72fcd35606475a620a8aab7dd4cf9cbaf4b0acee (diff) | |
download | kdepimpi-39936ef421b8d7df06e88535460ff27d59d52ea4.zip kdepimpi-39936ef421b8d7df06e88535460ff27d59d52ea4.tar.gz kdepimpi-39936ef421b8d7df06e88535460ff27d59d52ea4.tar.bz2 |
forgot the bup makefile
-rw-r--r-- | Makefile.Embedded | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded index 84f909e..8c6110c 100644 --- a/Makefile.Embedded +++ b/Makefile.Embedded @@ -49,2 +49,6 @@ SUBDIRS_GAMMU = \ SUBDIRS_PWMANAGER = \ + pwmanager/libcrypt/mpi \ + pwmanager/libcrypt/error \ + pwmanager/libcrypt/cipher \ + pwmanager/libcrypt/zlib \ pwmanager/pwmanager @@ -206,2 +210,3 @@ objects: mkdir -p libical/lib/$(PLATFORM) + mkdir -p pwmanager/libcrypt/$(PLATFORM) @@ -209,2 +214,3 @@ clean: rm -rf libical/lib/$(PLATFORM)/*; + rm -rf pwmanager/libcrypt/$(PLATFORM)/*; for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ @@ -267,2 +273,6 @@ tmake: objects \ pwmanager/pwmanager/Makefile$(PLATFORM) \ + pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ + pwmanager/libcrypt/error/Makefile$(PLATFORM) \ + pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ + pwmanager/libcrypt/zlib/Makefile$(PLATFORM) @@ -338 +348,15 @@ pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro + +pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro + cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM) + +pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro + cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM) + +pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro + cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM) + +pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro + cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM) + + |