Move CHIP specific things to mcu/

This commit is contained in:
NIIBE Yutaka
2016-05-30 14:39:02 +09:00
parent 8209f38755
commit b90e58f763
12 changed files with 37 additions and 19 deletions

View File

@@ -6,6 +6,16 @@ ifneq ($(USE_EVENTFLAG),)
CSRC += $(CHOPSTX)/eventflag.c
endif
ifneq ($(USE_SYS),)
CSRC += $(CHOPSTX)/mcu/sys-$(CHIP).c
endif
ifneq ($(USE_USB),)
CSRC += $(CHOPSTX)/mcu/usb-$(CHIP).c
endif
ifneq ($(USE_ADC),)
CSRC += $(CHOPSTX)/mcu/adc-$(CHIP).c
endif
INCDIR += $(CHOPSTX)
BUILDDIR = build