summaryrefslogtreecommitdiff
path: root/include.pro
authorkergoth <kergoth>2003-01-16 06:55:42 (UTC)
committer kergoth <kergoth>2003-01-16 06:55:42 (UTC)
commit3f2f72773a1d12da231ba12e34cdc2842e30fe5d (patch) (side-by-side diff)
tree65cd87df8e56179fa4642fb23ef53117f38412cc /include.pro
parent0b9787872c6e88ebc5591e0fc2dcc6c3e57e9b9c (diff)
downloadopie-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.
Diffstat (limited to 'include.pro') (more/less context) (ignore whitespace changes)
-rw-r--r--include.pro15
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
@@ -28,7 +28,7 @@ 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
@@ -36,6 +36,14 @@ 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/*
@@ -54,5 +62,8 @@ 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