author | mickeyl <mickeyl> | 2004-01-21 23:41:53 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-21 23:41:53 (UTC) |
commit | a428ff7937dae04b1b51d3e91f46c74f4f869543 (patch) (unidiff) | |
tree | 35e266a250a893ad3eb7b934296538ea82722954 /Rules.make | |
parent | cc5d48b188c21ff873300179264ab354d4c8aa09 (diff) | |
download | opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.zip opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.tar.gz opie-a428ff7937dae04b1b51d3e91f46c74f4f869543.tar.bz2 |
catch up with moves on cvs server
-rw-r--r-- | Rules.make | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -47,134 +47,140 @@ ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | |||
47 | endif | 47 | endif |
48 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) | 48 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
49 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ | 49 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
50 | endif | 50 | endif |
51 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) | 51 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
52 | echo DEFINES += OPIE_NEW_MALLOC >> $@ | 52 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
53 | endif | 53 | endif |
54 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) | 54 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
55 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ | 55 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
56 | endif | 56 | endif |
57 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ | 57 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
58 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 58 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
59 | @echo Generating dependency information... | 59 | @echo Generating dependency information... |
60 | # add to subdir-y, and add descend rules | 60 | # add to subdir-y, and add descend rules |
61 | @cat $(TOPDIR)/packages | grep -v '^#' | \ | 61 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
62 | awk '{print \ | 62 | awk '{print \ |
63 | ".PHONY : " $$2 "\n" \ | 63 | ".PHONY : " $$2 "\n" \ |
64 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ | 64 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
65 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends | 65 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
66 | cat $(TOPDIR)/packages | grep -v '^#' | \ | 66 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
67 | 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"; }' \ | 67 | 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 | >> $(TOPDIR)/.depends | 68 | >> $(TOPDIR)/.depends |
69 | # interpackage dependency generation | 69 | # interpackage dependency generation |
70 | @cat $(TOPDIR)/packages | \ | 70 | @cat $(TOPDIR)/packages | \ |
71 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends | 71 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
72 | 72 | ||
73 | $(TOPDIR)/.depends.cfgs: | 73 | $(TOPDIR)/.depends.cfgs: |
74 | # config.in interdependencies | 74 | # config.in interdependencies |
75 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs | 75 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
76 | @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 ) >> $@ | 76 | @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 | @-rm -f dirs | 77 | @-rm -f dirs |
78 | 78 | ||
79 | $(QTDIR)/stamp-headers : | 79 | $(QTDIR)/stamp-headers : |
80 | @-rm -f $(QTDIR)/stamp-headers* | 80 | @-rm -f $(QTDIR)/stamp-headers* |
81 | ( cd $(QTDIR)/include; \ | 81 | ( cd $(QTDIR)/include; \ |
82 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ | 82 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
83 | qcopchannel_qws.h qwindowsystem_qws.h \ | 83 | qcopchannel_qws.h qwindowsystem_qws.h \ |
84 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) | 84 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
85 | touch $@ | 85 | touch $@ |
86 | 86 | ||
87 | $(QTDIR)/stamp-headers-x11 : | 87 | $(QTDIR)/stamp-headers-x11 : |
88 | @-rm -f $(QTDIR)/stamp-headers* | 88 | @-rm -f $(QTDIR)/stamp-headers* |
89 | 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) | 89 | 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 | touch $@ | 90 | touch $@ |
91 | 91 | ||
92 | $(OPIEDIR)/stamp-headers : | 92 | $(OPIEDIR)/stamp-headers : |
93 | @-rm -f $(OPIEDIR)/stamp-headers* | 93 | @-rm -f $(OPIEDIR)/stamp-headers* |
94 | mkdir -p $(TOPDIR)/include/qpe \ | 94 | mkdir -p $(TOPDIR)/include/qpe \ |
95 | $(TOPDIR)/include/qtopia \ | 95 | $(TOPDIR)/include/qtopia \ |
96 | $(TOPDIR)/include/opie \ | 96 | $(TOPDIR)/include/opie \ |
97 | $(TOPDIR)/include/opie2 \ | 97 | $(TOPDIR)/include/opie2 \ |
98 | $(TOPDIR)/include/qtopia/private | 98 | $(TOPDIR)/include/qtopia/private |
99 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 99 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
100 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 100 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
101 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 101 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
102 | # libopie1 | ||
102 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 103 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
103 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 104 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
104 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) | 105 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) |
106 | # libopie2 | ||
105 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) | 107 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) |
108 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) | ||
106 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) | 109 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) |
107 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) | 110 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) |
108 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) | 111 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) |
109 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) | 112 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) |
110 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) | 113 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) |
111 | ( cd include/opie && ln -sf ../../libqtaux/pim/*.h .; ) | 114 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) |
115 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) | ||
116 | ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) | ||
117 | # all | ||
112 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 118 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
113 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 119 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
114 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 120 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
115 | touch $@ | 121 | touch $@ |
116 | 122 | ||
117 | $(OPIEDIR)/stamp-headers-x11 : | 123 | $(OPIEDIR)/stamp-headers-x11 : |
118 | @-rm -f $(OPIEDIR)/stamp-headers* | 124 | @-rm -f $(OPIEDIR)/stamp-headers* |
119 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ | 125 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
120 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private | 126 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
121 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 127 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
122 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 128 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
123 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 129 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
124 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 130 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
125 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) | 131 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) |
126 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 132 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
127 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 133 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
128 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 134 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
129 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 135 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
130 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) | 136 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
131 | touch $@ | 137 | touch $@ |
132 | 138 | ||
133 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config | 139 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config |
134 | @-rm -f $@ | 140 | @-rm -f $@ |
135 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ | 141 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ |
136 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) | 142 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) |
137 | @touch $@ | 143 | @touch $@ |
138 | 144 | ||
139 | $(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: | 145 | $(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: |
140 | @$(call descend,$(shell dirname $@),$(shell basename $@)) | 146 | @$(call descend,$(shell dirname $@),$(shell basename $@)) |
141 | 147 | ||
142 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in | 148 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in |
143 | $(TOPDIR)/scripts/kconfig/mconf ./config.in | 149 | $(TOPDIR)/scripts/kconfig/mconf ./config.in |
144 | @touch ./.config.stamp | 150 | @touch ./.config.stamp |
145 | 151 | ||
146 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 152 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
147 | $(TOPDIR)/scripts/kconfig/qconf ./config.in | 153 | $(TOPDIR)/scripts/kconfig/qconf ./config.in |
148 | @touch .config.stamp | 154 | @touch .config.stamp |
149 | 155 | ||
150 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 156 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
151 | $(TOPDIR)/scripts/kconfig/gconf ./config.in | 157 | $(TOPDIR)/scripts/kconfig/gconf ./config.in |
152 | @touch .config.stamp | 158 | @touch .config.stamp |
153 | 159 | ||
154 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in | 160 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in |
155 | $(TOPDIR)/scripts/kconfig/conf ./config.in | 161 | $(TOPDIR)/scripts/kconfig/conf ./config.in |
156 | @touch .config.stamp | 162 | @touch .config.stamp |
157 | 163 | ||
158 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 164 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
159 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in | 165 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in |
160 | @touch .config.stamp | 166 | @touch .config.stamp |
161 | 167 | ||
162 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 168 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
163 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in | 169 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in |
164 | @touch .config.stamp | 170 | @touch .config.stamp |
165 | 171 | ||
166 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 172 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
167 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in | 173 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in |
168 | @touch .config.stamp | 174 | @touch .config.stamp |
169 | 175 | ||
170 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 176 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
171 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in | 177 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in |
172 | @touch .config.stamp | 178 | @touch .config.stamp |
173 | 179 | ||
174 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 180 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
175 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in | 181 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in |
176 | @touch .config.stamp | 182 | @touch .config.stamp |
177 | 183 | ||
178 | $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default | 184 | $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default |
179 | 185 | ||
180 | $(TOPDIR)/mkspecs/default : | 186 | $(TOPDIR)/mkspecs/default : |