2f307ffffb
The former toplevel Makefile is now toplevel main.mk; this change allows for multi-target, multi-arch processing in the current toplevel Makefile. As the "build" symlink semantics change quite considerably when one is doing bulk builds (several pruned builddirs might be useful for comparison), BUILDDIR is now much more likely to be recreated: the cases when it will persist are when it's either a single-image build or when the prefix hasn't changed. There are some more or less subtle bugfixes and enhancements all over the map as well. Done within 20111230..20120102 timeframe, actually...
19 lines
368 B
Makefile
19 lines
368 B
Makefile
# this makefile contains some syntactic sugar for the toplevel one
|
|
|
|
# strip prefix
|
|
config/with/%: %; @:
|
|
|
|
# just map to specific features
|
|
config/like/%: use/build-%; @:
|
|
|
|
# map and preconfigure
|
|
config/pack/%: use/pack/%
|
|
@$(call set,IMAGE_TYPE,$*)
|
|
|
|
# just preconfigure
|
|
config/name/%:
|
|
@$(call set,IMAGE_NAME,$*)
|
|
|
|
# the final thing will pull the rest in
|
|
build: postclean
|