author | llornkcor <llornkcor> | 2003-07-09 13:25:29 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-07-09 13:25:29 (UTC) |
commit | 11aca2c8441a25c0979c30c0461873e5d089b858 (patch) (side-by-side diff) | |
tree | 4028a15be94a3b63767537531495ac6e2b5b49eb | |
parent | 04ee3c01c1d048f3f35077a17d1505781071f6db (diff) | |
download | opie-11aca2c8441a25c0979c30c0461873e5d089b858.zip opie-11aca2c8441a25c0979c30c0461873e5d089b858.tar.gz opie-11aca2c8441a25c0979c30c0461873e5d089b858.tar.bz2 |
added MOC_DIR=.moc/$(PLATFORM) and OBJECTS_DIR=.obj/$(PLATFORM)
-rw-r--r-- | include.pro | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include.pro b/include.pro index 8503aa0..3ba8776 100644 --- a/include.pro +++ b/include.pro @@ -1,77 +1,80 @@ # make install # base opie install path prefix = /opt/QtPalmtop contains( TEMPLATE, lib ) { - target.path = $$prefix/lib + target.path = $$prefix/lib } !contains( TEMPLATE, lib ) { - target.path = $$prefix/bin + target.path = $$prefix/bin } INSTALLS += target # ipkg control files control.path = /CONTROL control.files = control postinst prerm postrm preinst conffiles INSTALLS += control # images, default is $$prefix/pics/$$TARGET pics.path = $$prefix/pics/$$TARGET pics.files = pics/* INSTALLS += pics # sounds, default path is $$prefix/sounds/$$TARGET sounds.path = $$prefix/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds # init scripts, default path is /etc/init.d init.path = /etc/init.d init.files = init.d/* INSTALLS += init # data, default path is /usr/share/$$TARGET data.path = /usr/share/$$TARGET data.files = share/* INSTALLS += data etc.path = $$prefix/etc/ etc.files = etc/* INSTALLS += etc apps.path = $$prefix/apps/ apps.files = apps/* INSTALLS += apps # sounds, default path is $$prefix/sounds/$$TARGET sounds.path = $$prefix/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds # anything in nonstandard paths root.path = / root.files = root/* INSTALLS += root # new targets opie-lupdate.target = opie-lupdate opie-lupdate.commands = opie-lupdate -noobsolete $(PRO) opie-lrelease.target = opie-lrelease opie-lrelease.commands = opie-lrelease $(PRO) lupdate.target = lupdate lupdate.commands = lupdate -noobsolete $(PRO) lrelease.target = lrelease lrelease.commands = lrelease $(PRO) ipk.target = ipk ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) INSTALL_ROOT="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; ) QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk opie-lupdate opie-lrelease QMAKE_LFLAGS += -Wl,-rpath=$$prefix/lib QMAKE_LIBDIR += $(OPIEDIR)/lib +MOC_DIR=.moc/$(PLATFORM) +OBJECTS_DIR=.obj/$(PLATFORM) + include ( $(OPIEDIR)/gen.pro ) |