blob: 94db4d12e2b4b5c795d8111a75ca5b5d6e26f9c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
include $(ROOTDIR)/config/general.mk
ifeq ($(VERBOSE),true)
E = @:
Q =
else
E = @echo
Q = @
endif
include $(ROOTDIR)/config/target.mk
include $(ROOTDIR)/config/toolchain.mk
|