Unidiff1 files changed, 14 insertions, 0 deletions
|
diff --git a/Makefile b/Makefile index a1fc32c..89c3470 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -129,8 +129,22 @@ apidox : |
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 | |
135 | |
136 | include $(TOPDIR)/Rules.make |
136 | include $(TOPDIR)/Rules.make |
| |
137 | |
| |
138 | # to speed up (avoid include/generation of packaging rules) |
| |
139 | ifneq ($(filter package%,$(MAKECMDGOALS)),) |
| |
140 | |
| |
141 | # packaging requested |
| |
142 | |
| |
143 | $(TOPDIR)/Package.make : |
| |
144 | @echo "Generating packaging rules" |
| |
145 | @$(TOPDIR)/scripts/GeneratePackageMake > $(TOPDIR)/Package.make |
| |
146 | |
| |
147 | # load rules to make packages |
| |
148 | -include $(TOPDIR)/Package.make |
| |
149 | |
| |
150 | endif |
|