add time tracking interface
[AquilaOS.git] / system / Makefile
blob732974423ae9780a483d9fd8d0d69135bcdf4d6f
1 export
3 CWD != realpath --relative-to=$(SRCDIR) .
5 dirs-y = aqbox/ fbterm/
7 all: $(dirs-y)
9 .PHONY: $(dirs-y)
10 $(dirs-y): $(patsubst %/,%/Makefile, $(dirs-y))
11 @echo -e " MK " $(CWD)/$@
12 @$(MAKE) -C $@ $(param)
14 .PHONY: clean
15 clean: param = clean
16 clean: $(dirs-y)