mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
15 lines
245 B
Makefile
15 lines
245 B
Makefile
include ../../build_system/make/make.mk
|
|
|
|
INC += \
|
|
src \
|
|
$(TOP)/hw \
|
|
|
|
# Example source
|
|
EXAMPLE_SOURCE = \
|
|
src/main.c \
|
|
src/usb_descriptors.c
|
|
|
|
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))
|
|
|
|
include ../../build_system/make/rules.mk
|