- s/stage2/install2/g - added pkg/lists - initial README (ru_RU.KOI8-R) - mkimage topdir is in image.in/, really (off-tree build) + initial bin/mktmpdir + BUILDDIR (works) - s/cd/iso/ - drop --with-distro (considered harmful)
19 lines
470 B
Makefile
19 lines
470 B
Makefile
# 1. configure distro
|
|
# 2. configure subprofiles, prepare package lists
|
|
# 3. build subprofiles
|
|
# 4. build image
|
|
|
|
include clean.mk
|
|
include distro.mk
|
|
include iso.mk
|
|
|
|
# we can't use implicit rules for top-level targets, only for prereqs
|
|
CONFIGS=$(shell sed -n 's,^distro/\([^:]\+\):.*$$,\1,p' distro.mk)
|
|
DISTROS=$(addsuffix .iso,$(CONFIGS))
|
|
|
|
all:
|
|
@echo '** available distribution targets:'
|
|
@echo $(DISTROS) | fmt -sw65 | column -t
|
|
|
|
$(DISTROS): %.iso: | prep distro/% iso
|