summaryrefslogtreecommitdiff
path: root/examples/dual/host_hid_to_device_cdc/Makefile
blob: 474ae981434a9e73cc8445a43d445a9a737dd698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../../build_system/make/make.mk

INC += \
	src \
	$(TOP)/hw \

# Example source
EXAMPLE_SOURCE += $(wildcard src/*.c)
SRC_C += $(addprefix $(CURRENT_PATH)/, $(EXAMPLE_SOURCE))

CFLAGS_GCC += -Wno-error=cast-align -Wno-error=null-dereference

SRC_C += \
	src/class/hid/hid_host.c \
	src/host/hub.c \
	src/host/usbh.c

include ../../build_system/make/rules.mk