summaryrefslogtreecommitdiff
path: root/Makefile
authorkergoth <kergoth>2003-04-22 20:12:04 (UTC)
committer kergoth <kergoth>2003-04-22 20:12:04 (UTC)
commitccec87cf3e7192c0a3987aa3486668e89b1662a4 (patch) (side-by-side diff)
tree2d1135ed639410fe1a75486bfdeae8083e1682a2 /Makefile
parent2134672b0a731415bfd50f2ff22de59b78709e5c (diff)
downloadopie-ccec87cf3e7192c0a3987aa3486668e89b1662a4.zip
opie-ccec87cf3e7192c0a3987aa3486668e89b1662a4.tar.gz
opie-ccec87cf3e7192c0a3987aa3486668e89b1662a4.tar.bz2
you can now 'make ipks' :)
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile26
1 files changed, 17 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 9169645..10df035 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,11 @@
#!/usr/bin/make -f
-ifndef QTDIR
-$(error QTDIR not set)
-endif
-export OPIEDIR:=$(shell pwd)
-export TOPDIR:=$(OPIEDIR)
-export QMAKE:=$(OPIEDIR)/qmake/qmake
+export TOPDIR:=$(shell pwd)
-export QMAKESPECSDIR=$(OPIEDIR)/mkspecs
+include $(TOPDIR)/Vars.make
noconfig_targets := xconfig menuconfig config oldconfig randconfig \
defconfig allyesconfig allnoconfig allmodconfig \
clean-configs
configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/todayplugins/config.in
@@ -23,21 +18,35 @@ configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPD
#
# NOTE: The order in which things happen in this makefile is
# -critical-. Do not rearrange this!
all : $(TOPDIR)/.config
+STRIP=arm-linux-strip
+
+ipks: $(OPIEDIR)/scripts/subst $(OPIEDIR)/scripts/filesubst FORCE
+ @find $(OPIEDIR)/ -type f -name \*.control | ( for ctrl in `cat`; do \
+ prerm=`echo $$ctrl|sed -e 's,\.control$$,.prerm,'`; \
+ preinst=`echo $$ctrl|sed -e 's,\.control$$,.preinst,'`; \
+ postrm=`echo $$ctrl|sed -e 's,\.control$$,.postrm,'`; \
+ postinst=`echo $$ctrl|sed -e 's,\.control$$,.postinst,'`; \
+ echo "Building ipk of $$ctrl"; \
+ cd $(OPIEDIR); $(OPIEDIR)/scripts/mkipkg --subst=$(OPIEDIR)/scripts/subst --filesubst=$(OPIEDIR)/scripts/filesubst --control=$$ctrl --prerm=$$prerm --preinst=$$preinst --postrm=$$postrm --postinst=$$postinst --strip=$(STRIP) $(OPIEDIR); \
+ done )
+
$(TOPDIR)/.config : $(TOPDIR)/.depends.cfgs
all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(TOPDIR)/.depends.cfgs
clean-configs :
@echo "Wiping generated config.in files..."
@-rm -f $(configs)
--include $(TOPDIR)/.depends.cfgs
+ifneq ($(wildcard $(TOPDIR)/.depends.cfgs),)
+ include $(TOPDIR)/.depends.cfgs
+endif
all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs)
$(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs)
$(call descend,scripts/kconfig,conf)
@if [ ! -e $@ ]; then \
@@ -89,13 +98,12 @@ export
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
export include-config := 1
-include $(TOPDIR)/.config
-include $(TOPDIR)/.depends
-
endif
-include $(TOPDIR)/.config.cmd
SUBDIRS = $(subdir-y)