This patch makes the zynq i2c driver depend on a new 'zynq_i2c' spec value, which is only enabled for the zedboard. Issue #37
14 lines
220 B
Makefile
14 lines
220 B
Makefile
# \brief I2C specific for zynq systems
|
|
# \author Mark Albers
|
|
# \date 2015-03-12
|
|
|
|
TARGET = zynq_i2c_drv
|
|
REQUIRES = zynq_i2c
|
|
|
|
SRC_CC = main.cc
|
|
LIBS = base config
|
|
INC_DIR += $(PRG_DIR)
|
|
|
|
vpath main.cc $(PRG_DIR)
|
|
|