14 lines
184 B
Makefile
14 lines
184 B
Makefile
|
TARGET = libcan.a
|
||
|
TOPDIR = ..
|
||
|
|
||
|
include $(TOPDIR)/defaults.mk
|
||
|
|
||
|
ifeq ($(CAN_SUPPORT),y)
|
||
|
SRC = can.c
|
||
|
SRC += borg_can.c
|
||
|
SRC += lap.c
|
||
|
SRC += spi.c
|
||
|
endif
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|