19 lines
378 B
Makefile
19 lines
378 B
Makefile
# Following variables need to be set in <target>/Makefile:
|
|
# TARGET
|
|
# COMMON_DIR
|
|
# TARGET_DIR
|
|
# TARGET_SRC
|
|
# MCU
|
|
# F_CPU
|
|
|
|
|
|
# List C source files here. (C dependencies are automatically generated.)
|
|
SRC = usbdrv.c \
|
|
usbdrvasm.S \
|
|
oddebug.c
|
|
SRC += $(TARGET_SRC)
|
|
|
|
|
|
# C source file search path
|
|
VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/vusb:$(COMMON_DIR)/vusb/usbdrv
|