|
diff --git a/Makefile b/Makefile index 3a6c18d..a6768a7 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -120,32 +120,34 @@ endif |
120 | |
120 | |
121 | clean : $(TOPDIR)/.config |
121 | clean : $(TOPDIR)/.config |
122 | make -C bin clean |
122 | make -C bin clean |
123 | make -C lib clean |
123 | make -C lib clean |
124 | make -C plugins clean |
124 | make -C plugins clean |
125 | |
125 | |
126 | apidox : |
126 | apidox : |
127 | doc/generate_apidox |
127 | doc/generate_apidox |
128 | |
128 | |
129 | mrproper : clean-configs |
129 | mrproper : clean-configs |
130 | find . -name ".moc"|xargs rm -rf |
130 | find . -name ".moc"|xargs rm -rf |
131 | find . -name ".obj"|xargs rm -rf |
131 | find . -name ".obj"|xargs rm -rf |
132 | find lib -name "lib*.*"|xargs rm -f |
132 | find lib -name "lib*.*"|xargs rm -f |
133 | find plugins -name "lib*.*"|xargs rm -f |
133 | find plugins -name "lib*.*"|xargs rm -f |
134 | find . -name "*.pro"|xargs touch |
134 | find . -name "*.pro"|xargs touch |
135 | rm stamp-headers |
135 | rm stamp-headers |
| |
136 | make -C qmake clean |
| |
137 | rm qmake/qmake |
136 | |
138 | |
137 | include $(TOPDIR)/Rules.make |
139 | include $(TOPDIR)/Rules.make |
138 | |
140 | |
139 | # to speed up (avoid include/generation of packaging rules) |
141 | # to speed up (avoid include/generation of packaging rules) |
140 | ifneq ($(filter package%,$(MAKECMDGOALS)),) |
142 | ifneq ($(filter package%,$(MAKECMDGOALS)),) |
141 | |
143 | |
142 | # packaging requested |
144 | # packaging requested |
143 | |
145 | |
144 | $(TOPDIR)/Package.make : |
146 | $(TOPDIR)/Package.make : |
145 | @echo "Generating packaging rules" |
147 | @echo "Generating packaging rules" |
146 | @$(TOPDIR)/scripts/GeneratePackageMake > $(TOPDIR)/Package.make |
148 | @$(TOPDIR)/scripts/GeneratePackageMake > $(TOPDIR)/Package.make |
147 | |
149 | |
148 | # load rules to make packages |
150 | # load rules to make packages |
149 | -include $(TOPDIR)/Package.make |
151 | -include $(TOPDIR)/Package.make |
150 | |
152 | |
151 | endif |
153 | endif |
|