author | mickeyl <mickeyl> | 2004-01-13 21:20:38 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-13 21:20:38 (UTC) |
commit | 4a48472bbe915852ed6eaa66284b8b8c0f3b493d (patch) (unidiff) | |
tree | b244003518c03b8044f5bdce5c3acd23ef6ccaae /Rules.make | |
parent | ffe47019a96da4e6b7057fca30bb64274443099b (diff) | |
download | opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.zip opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.tar.gz opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.tar.bz2 |
build system bits to get libqtaux built
-rw-r--r-- | Rules.make | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -45,130 +45,131 @@ endif | |||
45 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | 45 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
46 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ | 46 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
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 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 102 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
103 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 103 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
104 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) | 104 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) |
105 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) | 105 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) |
106 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) | 106 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) |
107 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) | 107 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) |
108 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) | 108 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) |
109 | #( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) | 109 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) |
110 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) | 110 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) |
111 | ( cd include/opie && ln -sf ../../libqtaux/pim/*.h .; ) | ||
111 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 112 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
112 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 113 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
113 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 114 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
114 | touch $@ | 115 | touch $@ |
115 | 116 | ||
116 | $(OPIEDIR)/stamp-headers-x11 : | 117 | $(OPIEDIR)/stamp-headers-x11 : |
117 | @-rm -f $(OPIEDIR)/stamp-headers* | 118 | @-rm -f $(OPIEDIR)/stamp-headers* |
118 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ | 119 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
119 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private | 120 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
120 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 121 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
121 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 122 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
122 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 123 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
123 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 124 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
124 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) | 125 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) |
125 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 126 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
126 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 127 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
127 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 128 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
128 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 129 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
129 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) | 130 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
130 | touch $@ | 131 | touch $@ |
131 | 132 | ||
132 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config | 133 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config |
133 | @-rm -f $@ | 134 | @-rm -f $@ |
134 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ | 135 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ |
135 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) | 136 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) |
136 | @touch $@ | 137 | @touch $@ |
137 | 138 | ||
138 | $(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: | 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: |
139 | @$(call descend,$(shell dirname $@),$(shell basename $@)) | 140 | @$(call descend,$(shell dirname $@),$(shell basename $@)) |
140 | 141 | ||
141 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in | 142 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in |
142 | $(TOPDIR)/scripts/kconfig/mconf ./config.in | 143 | $(TOPDIR)/scripts/kconfig/mconf ./config.in |
143 | @touch ./.config.stamp | 144 | @touch ./.config.stamp |
144 | 145 | ||
145 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 146 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
146 | $(TOPDIR)/scripts/kconfig/qconf ./config.in | 147 | $(TOPDIR)/scripts/kconfig/qconf ./config.in |
147 | @touch .config.stamp | 148 | @touch .config.stamp |
148 | 149 | ||
149 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 150 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
150 | $(TOPDIR)/scripts/kconfig/gconf ./config.in | 151 | $(TOPDIR)/scripts/kconfig/gconf ./config.in |
151 | @touch .config.stamp | 152 | @touch .config.stamp |
152 | 153 | ||
153 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in | 154 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in |
154 | $(TOPDIR)/scripts/kconfig/conf ./config.in | 155 | $(TOPDIR)/scripts/kconfig/conf ./config.in |
155 | @touch .config.stamp | 156 | @touch .config.stamp |
156 | 157 | ||
157 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 158 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
158 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in | 159 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in |
159 | @touch .config.stamp | 160 | @touch .config.stamp |
160 | 161 | ||
161 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 162 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
162 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in | 163 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in |
163 | @touch .config.stamp | 164 | @touch .config.stamp |
164 | 165 | ||
165 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 166 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
166 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in | 167 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in |
167 | @touch .config.stamp | 168 | @touch .config.stamp |
168 | 169 | ||
169 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 170 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
170 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in | 171 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in |
171 | @touch .config.stamp | 172 | @touch .config.stamp |
172 | 173 | ||
173 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 174 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
174 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in | 175 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in |