mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2025-02-03 05:30:52 +00:00
20 lines
484 B
Makefile
20 lines
484 B
Makefile
|
targets := cricket bbb ram.drv
|
||
|
|
||
|
.PHONY: all $(targets)
|
||
|
|
||
|
all: $(targets)
|
||
|
|
||
|
# Build all targets
|
||
|
$(targets):
|
||
|
@tput setaf 3 && echo "Building: $@" && tput sgr0
|
||
|
@$(MAKE) -C $@ \
|
||
|
&& (tput setaf 2 && echo "make $@ good" && tput sgr0) \
|
||
|
|| (tput blink && tput setaf 1 && echo "MAKE $@ BAD" && tput sgr0 && false)
|
||
|
|
||
|
# Clean all temporary/target files
|
||
|
clean:
|
||
|
@for dir in $(targets); do \
|
||
|
tput setaf 2 && echo "cleaning $$dir" && tput sgr0; \
|
||
|
$(MAKE) -C $$dir clean; \
|
||
|
done
|