9a8f8ef7cd
- set(), add(), log() + special thanks to rider@ for log format feedback - simple debug facility - builds, installs and runs... again
14 lines
304 B
Makefile
14 lines
304 B
Makefile
clean:
|
|
@echo '** cleaning up...'
|
|
@[ -d build/ ] && \
|
|
make -C build/ $@ GLOBAL_BUILDDIR=$(shell readlink build) \
|
|
||:
|
|
|
|
distclean: clean
|
|
@[ -d build/ ] && \
|
|
rm -rf build/.git; \
|
|
make -C build/ $@ GLOBAL_BUILDDIR=$(shell readlink build) && \
|
|
rm -r $(shell readlink build) && \
|
|
rm build \
|
|
||:
|