d91a3564ac
- 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)
21 lines
490 B
Makefile
21 lines
490 B
Makefile
clean:
|
|
@echo '** cleaning up...'
|
|
@[ -d build/ ] && \
|
|
make -C build $@ GLOBAL_BUILDDIR=$(shell readlink build) \
|
|
||:
|
|
|
|
distclean: clean
|
|
@[ -d build/ ] && \
|
|
make -C build $@ GLOBAL_BUILDDIR=$(shell readlink build) && \
|
|
rm -r $(shell readlink build) && \
|
|
rm .config.mk build \
|
|
||:
|
|
|
|
# it can be symlinked if r/w (see configure);
|
|
# if not, then should come from environment
|
|
#BUILDDIR ?= $(shell realpath build)
|
|
BUILDDIR ?= $(shell realpath build)
|
|
|
|
prep:
|
|
@echo BUILDDIR: $(BUILDDIR)
|