|
diff --git a/Makefile b/Makefile index f5c0dbd..3326c70 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -25,8 +25,13 @@ configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPD |
25 | |
25 | |
26 | all : $(TOPDIR)/.config |
26 | all : $(TOPDIR)/.config |
27 | |
27 | |
| |
28 | # |
| |
29 | # The IPK creation is a very slow process. If you want to only create some |
| |
30 | # IPKs, e.g. the ones in library, then do |
| |
31 | #make ipks IPK_START=library |
| |
32 | # and then only the *.control files in this directory will be processed |
28 | ipks: $(OPIEDIR)/scripts/subst $(OPIEDIR)/scripts/filesubst FORCE $(TOPDIR)/.config |
33 | ipks: $(OPIEDIR)/scripts/subst $(OPIEDIR)/scripts/filesubst FORCE $(TOPDIR)/.config |
29 | @find $(OPIEDIR)/ -type f -name \*.control | ( for ctrl in `cat`; do \ |
34 | @find $(OPIEDIR)/$(IPK_START) -type f -name \*.control | ( for ctrl in `cat`; do \ |
30 | prerm=`echo $$ctrl|sed -e 's,\.control$$,.prerm,'`; \ |
35 | prerm=`echo $$ctrl|sed -e 's,\.control$$,.prerm,'`; \ |
31 | preinst=`echo $$ctrl|sed -e 's,\.control$$,.preinst,'`; \ |
36 | preinst=`echo $$ctrl|sed -e 's,\.control$$,.preinst,'`; \ |
32 | postrm=`echo $$ctrl|sed -e 's,\.control$$,.postrm,'`; \ |
37 | postrm=`echo $$ctrl|sed -e 's,\.control$$,.postrm,'`; \ |
@@ -53,8 +58,8 @@ $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) |
53 | $(call descend,scripts/kconfig,conf) |
58 | $(call descend,scripts/kconfig,conf) |
54 | @if [ ! -e $@ ]; then \ |
59 | @if [ ! -e $@ ]; then \ |
55 | cp $(TOPDIR)/def-configs/opie $@; \ |
60 | cp $(TOPDIR)/def-configs/opie $@; \ |
56 | fi; |
61 | fi |
57 | @$(MAKE) -C scripts/kconfig conf; |
62 | @$(MAKE) -C scripts/kconfig conf |
58 | ./scripts/kconfig/conf -s ./config.in |
63 | ./scripts/kconfig/conf -s ./config.in |
59 | |
64 | |
60 | # config rules must have the $(configs) var defined |
65 | # config rules must have the $(configs) var defined |
@@ -109,13 +114,13 @@ endif |
109 | |
114 | |
110 | SUBDIRS = $(subdir-y) |
115 | SUBDIRS = $(subdir-y) |
111 | |
116 | |
112 | all clean install ipk: $(SUBDIRS) |
117 | all clean install ipk: $(SUBDIRS) |
113 | |
118 | |
114 | lupdate lrelease: |
119 | lupdate lrelease: |
115 | @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done; |
120 | @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done |
116 | |
121 | |
117 | opie-lupdate opie-lrelease: |
122 | opie-lupdate opie-lrelease: |
118 | @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done; |
123 | @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done |
119 | |
124 | |
120 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers $(OPIEDIR)/stamp-headers) \ |
125 | $(subdir-y) : $(if $(CONFIG_LIBQPE),$(QTDIR)/stamp-headers $(OPIEDIR)/stamp-headers) \ |
121 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11 $(OPIEDIR)/stamp-headers-x11 ) \ |
126 | $(if $(CONFIG_LIBQPE-X11),$(QTDIR)/stamp-headers-x11 $(OPIEDIR)/stamp-headers-x11 ) \ |
|