author | wimpie <wimpie> | 2005-01-06 03:53:17 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2005-01-06 03:53:17 (UTC) |
commit | 98dd4c49f5d7a3c0569e3f6ff92f39451734070c (patch) (unidiff) | |
tree | cbe132a0ea78b67baa24f61c9fa04f1a3fcc15c9 /Makefile | |
parent | 807241b7466840034a5284b0202705b096d41458 (diff) | |
download | opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.zip opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.gz opie-98dd4c49f5d7a3c0569e3f6ff92f39451734070c.tar.bz2 |
Some more changes for NS2
updated toplevel Makefile
added new target packages-mt and packages
these replaces, render obsolete and dramatically improve : ipks ipks-mt
see separate mail
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -134,3 +134,17 @@ mrproper : clean-configs | |||
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 | ||