summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-01-16 06:55:42 (UTC)
committer kergoth <kergoth>2003-01-16 06:55:42 (UTC)
commit3f2f72773a1d12da231ba12e34cdc2842e30fe5d (patch) (unidiff)
tree65cd87df8e56179fa4642fb23ef53117f38412cc
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 (more/less context) (show 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
@@ -30,3 +30,3 @@ INSTALLS += sounds
30init.path = /etc/init.d 30init.path = /etc/init.d
31init.files = init 31init.files = init.d/*
32INSTALLS += init 32INSTALLS += init
@@ -38,2 +38,10 @@ INSTALLS += data
38 38
39etc.path = $$outdir/etc/
40etc.files = etc/*
41INSTALLS += etc
42
43apps.path = $$outdir/apps/
44apps.files = apps/*
45INSTALLS += apps
46
39# sounds, default path is $$outdir/sounds/$$TARGET 47# sounds, default path is $$outdir/sounds/$$TARGET
@@ -56,3 +64,6 @@ lrelease.commands = lrelease $(PRO)
56 64
57QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease 65ipk.target = ipk
66ipk.commands = tmp=`mktemp -d /tmp/ipkg-opie.XXXXXXXXXX` && ( $(MAKE) DESTDIR="$$$$tmp" install && ipkg-build $$$$tmp; rm -rf $$$$tmp; )
67
68QMAKE_EXTRA_UNIX_TARGETS += lupdate lrelease ipk
58 69