summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Rules.make4
1 files changed, 4 insertions, 0 deletions
diff --git a/Rules.make b/Rules.make
index 69b54e4..1db17ee 100644
--- a/Rules.make
+++ b/Rules.make
@@ -63,128 +63,132 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)
63 awk '{print \ 63 awk '{print \
64 ".PHONY : " $$2 "\n" \ 64 ".PHONY : " $$2 "\n" \
65 "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ 65 "subdir-$$(" $$1 ") += " $$2 "\n\n"; \
66 print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends 66 print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends
67 cat $(TOPDIR)/packages | grep -v '^#' | \ 67 cat $(TOPDIR)/packages | grep -v '^#' | \
68 perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ 68 perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \
69 >> $(TOPDIR)/.depends 69 >> $(TOPDIR)/.depends
70# interpackage dependency generation 70# interpackage dependency generation
71 @cat $(TOPDIR)/packages | \ 71 @cat $(TOPDIR)/packages | \
72 $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends 72 $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends
73 73
74$(TOPDIR)/.depends.cfgs: 74$(TOPDIR)/.depends.cfgs:
75# config.in interdependencies 75# config.in interdependencies
76 @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs 76 @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs
77 @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ 77 @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@
78 @-rm -f dirs 78 @-rm -f dirs
79 79
80$(QTDIR)/stamp-headers : 80$(QTDIR)/stamp-headers :
81 @-rm -f $(QTDIR)/stamp-headers* 81 @-rm -f $(QTDIR)/stamp-headers*
82 ( cd $(QTDIR)/include; \ 82 ( cd $(QTDIR)/include; \
83 $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ 83 $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \
84 qcopchannel_qws.h qwindowsystem_qws.h \ 84 qcopchannel_qws.h qwindowsystem_qws.h \
85 qfontmanager_qws.h qwsdefaultdecoration_qws.h)) 85 qfontmanager_qws.h qwsdefaultdecoration_qws.h))
86 touch $@ 86 touch $@
87 87
88$(QTDIR)/stamp-headers-x11 : 88$(QTDIR)/stamp-headers-x11 :
89 @-rm -f $(QTDIR)/stamp-headers* 89 @-rm -f $(QTDIR)/stamp-headers*
90 cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) 90 cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h)
91 touch $@ 91 touch $@
92 92
93$(OPIEDIR)/stamp-headers : 93$(OPIEDIR)/stamp-headers :
94 @-rm -f $(OPIEDIR)/stamp-headers* 94 @-rm -f $(OPIEDIR)/stamp-headers*
95 mkdir -p $(TOPDIR)/include/qpe \ 95 mkdir -p $(TOPDIR)/include/qpe \
96 $(TOPDIR)/include/qtopia \ 96 $(TOPDIR)/include/qtopia \
97 $(TOPDIR)/include/opie \ 97 $(TOPDIR)/include/opie \
98 $(TOPDIR)/include/opie2 \ 98 $(TOPDIR)/include/opie2 \
99 $(TOPDIR)/include/qtopia/private \ 99 $(TOPDIR)/include/qtopia/private \
100 $(TOPDIR)/include/sl 100 $(TOPDIR)/include/sl
101 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) 101 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; )
102 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) 102 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; )
103 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) 103 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; )
104 # libopie1 104 # libopie1
105 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) 105 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; )
106 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) 106 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; )
107 ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) 107 ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; )
108 # libopie2 108 # libopie2
109 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) 109 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; )
110 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) 110 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; )
111 ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) 111 ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; )
112 ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) 112 ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; )
113 ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) 113 ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; )
114 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) 114 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; )
115 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; ) 115 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; )
116 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; ) 116 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; )
117 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; ) 117 ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; )
118 ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) 118 ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; )
119 ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) 119 ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; )
120 ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) 120 ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; )
121 # auxilliary libraries 121 # auxilliary libraries
122 ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) 122 ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; )
123 ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) 123 ( cd include/sl && ln -sf ../../libslcompat/*.h .; )
124 # all 124 # all
125 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 125 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
126 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) 126 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done )
127 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
128 ln -sf ../../libopie2/opieui/$$generatedHeader $$generatedHeader; done )
129 ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opiepim/ui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
130 ln -sf ../../libopie2/opiepim/ui/$$generatedHeader $$generatedHeader; done )
127 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h 131 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h
128 touch $@ 132 touch $@
129 133
130$(OPIEDIR)/stamp-headers-x11 : 134$(OPIEDIR)/stamp-headers-x11 :
131 @-rm -f $(OPIEDIR)/stamp-headers* 135 @-rm -f $(OPIEDIR)/stamp-headers*
132 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ 136 mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \
133 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private 137 $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private
134 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) 138 ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; )
135 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) 139 ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; )
136 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) 140 ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; )
137 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) 141 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; )
138 ( cd include/opie && ln -sf ../../libsql/*.h .; ) 142 ( cd include/opie && ln -sf ../../libsql/*.h .; )
139 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) 143 ( cd include/opie && ln -sf ../../libopie/pim/*.h .; )
140 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ 144 ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \
141 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) 145 ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done )
142 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h 146 ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h
143 ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) 147 ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; )
144 touch $@ 148 touch $@
145 149
146$(TOPDIR)/library/custom.h : $(TOPDIR)/.config 150$(TOPDIR)/library/custom.h : $(TOPDIR)/.config
147 @-rm -f $@ 151 @-rm -f $@
148 @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ 152 @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\
149 ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) 153 ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@)
150 @touch $@ 154 @touch $@
151 155
152$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: 156$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake:
153 @$(call descend,$(shell dirname $@),$(shell basename $@)) 157 @$(call descend,$(shell dirname $@),$(shell basename $@))
154 158
155menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in 159menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in
156 $(TOPDIR)/scripts/kconfig/mconf ./config.in 160 $(TOPDIR)/scripts/kconfig/mconf ./config.in
157 @touch ./.config.stamp 161 @touch ./.config.stamp
158 162
159xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in 163xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in
160 $(TOPDIR)/scripts/kconfig/qconf ./config.in 164 $(TOPDIR)/scripts/kconfig/qconf ./config.in
161 @touch .config.stamp 165 @touch .config.stamp
162 166
163gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in 167gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in
164 $(TOPDIR)/scripts/kconfig/gconf ./config.in 168 $(TOPDIR)/scripts/kconfig/gconf ./config.in
165 @touch .config.stamp 169 @touch .config.stamp
166 170
167config: $(TOPDIR)/scripts/kconfig/conf ./config.in 171config: $(TOPDIR)/scripts/kconfig/conf ./config.in
168 $(TOPDIR)/scripts/kconfig/conf ./config.in 172 $(TOPDIR)/scripts/kconfig/conf ./config.in
169 @touch .config.stamp 173 @touch .config.stamp
170 174
171oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 175oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
172 $(TOPDIR)/scripts/kconfig/conf -o ./config.in 176 $(TOPDIR)/scripts/kconfig/conf -o ./config.in
173 @touch .config.stamp 177 @touch .config.stamp
174 178
175randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 179randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
176 $(TOPDIR)/scripts/kconfig/conf -r ./config.in 180 $(TOPDIR)/scripts/kconfig/conf -r ./config.in
177 @touch .config.stamp 181 @touch .config.stamp
178 182
179allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 183allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
180 $(TOPDIR)/scripts/kconfig/conf -y ./config.in 184 $(TOPDIR)/scripts/kconfig/conf -y ./config.in
181 @touch .config.stamp 185 @touch .config.stamp
182 186
183allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 187allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
184 $(TOPDIR)/scripts/kconfig/conf -n ./config.in 188 $(TOPDIR)/scripts/kconfig/conf -n ./config.in
185 @touch .config.stamp 189 @touch .config.stamp
186 190
187defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in 191defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in
188 $(TOPDIR)/scripts/kconfig/conf -d ./config.in 192 $(TOPDIR)/scripts/kconfig/conf -d ./config.in
189 @touch .config.stamp 193 @touch .config.stamp
190 194