author | kergoth <kergoth> | 2003-01-16 06:55:42 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 06:55:42 (UTC) |
commit | 3f2f72773a1d12da231ba12e34cdc2842e30fe5d (patch) (side-by-side diff) | |
tree | 65cd87df8e56179fa4642fb23ef53117f38412cc | |
parent | 0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c (diff) | |
download | opie-3f2f72773a1d12da231ba12e34cdc2842e30fe5d.zip opie-3f2f72773a1d12da231ba12e34cdc2842e30fe5d.tar.gz opie-3f2f72773a1d12da231ba12e34cdc2842e30fe5d.tar.bz2 |
Add 'ipk' target to makefile, that creates a temp directory with mktemp, does a make DESTDIR=thatdir install into it, and runs ipkg-build on it :) needs tweaking.
-rw-r--r-- | include.pro | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include.pro b/include.pro index cbc534d..12908ec 100644 --- a/include.pro +++ b/include.pro @@ -19,40 +19,51 @@ INSTALLS += control # images, default is $$outdir/pics/$$TARGET pics.path = $$outdir/pics/$$TARGET pics.files = pics/* INSTALLS += pics # sounds, default path is $$outdir/sounds/$$TARGET sounds.path = $$outdir/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds # init scripts, default path is /etc/init.d init.path = /etc/init.d -init.files = init +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 = $$outdir/etc/ +etc.files = etc/* +INSTALLS += etc + +apps.path = $$outdir/apps/ +apps.files = apps/* +INSTALLS += apps + # sounds, default path is $$outdir/sounds/$$TARGET sounds.path = $$outdir/sounds/$$TARGET sounds.files = sounds/* INSTALLS += sounds # anything in nonstandard paths root.path = / root.files = root/* INSTALLS += root # new targets lupdate.target = lupdate lupdate.commands = lupdate -noobsolete $(PRO) lrelease.target = lrelease lrelease.commands = lrelease $(PRO) -QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease +ipk.target = ipk +ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) DESTDIR="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; ) + +QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk |