70 lines
2.0 KiB
Makefile
70 lines
2.0 KiB
Makefile
#
|
|
# Copyright (c) 2019 European Spallation Source ERIC
|
|
#
|
|
# The program is free software: you can redistribute
|
|
# it and/or modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation, either version 2 of the
|
|
# License, or any newer version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
# more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program. If not, see https://www.gnu.org/licenses/gpl-2.0.txt
|
|
#
|
|
#
|
|
# Author : anderssandstrom
|
|
# email : anderssandstrom@esss.se
|
|
# Date : 2020Mar22-1607-33CET
|
|
# version : 0.0.0
|
|
#
|
|
# template file is generated by ./e3TemplateGenerator.bash with bf03d40
|
|
# Please look at many other _module_.Makefile in e3-* repository
|
|
#
|
|
|
|
## The following lines are mandatory, please don't change them.
|
|
where_am_I := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
include $(E3_REQUIRE_TOOLS)/driver.makefile
|
|
include $(E3_REQUIRE_CONFIG)/DECOUPLE_FLAGS
|
|
|
|
ifneq ($(strip $(ASYN_DEP_VERSION)),)
|
|
asyn_VERSION=$(ASYN_DEP_VERSION)
|
|
endif
|
|
|
|
ifneq ($(strip $(ECMC_DEP_VERSION)),)
|
|
ecmc_VERSION=$(ECMC_DEP_VERSION)
|
|
endif
|
|
|
|
APP:=ecmc_plugin_socketcanApp
|
|
APPDB:=$(APP)/Db
|
|
APPSRC:=$(APP)/src
|
|
|
|
USR_CFLAGS += -shared -fPIC -Wall -Wextra
|
|
USR_LDFLAGS += -lstdc++
|
|
USR_INCLUDES += -I$(where_am_I)$(APPSRC)
|
|
|
|
TEMPLATES += $(wildcard $(APPDB)/*.db)
|
|
TEMPLATES += $(wildcard $(APPDB)/*.template)
|
|
SOURCES += $(APPSRC)/ecmcPluginSocketCAN.c
|
|
SOURCES += $(APPSRC)/ecmcSocketCAN.cpp
|
|
SOURCES += $(APPSRC)/ecmcSocketCANWrap.cpp
|
|
SOURCES += $(APPSRC)/ecmcSocketCANWriteBuffer.cpp
|
|
SOURCES += $(APPSRC)/ecmcCANOpenSDO.cpp
|
|
SOURCES += $(APPSRC)/ecmcCANOpenPDO.cpp
|
|
SOURCES += $(APPSRC)/ecmcCANOpenDevice.cpp
|
|
SOURCES += $(APPSRC)/ecmcCANOpenMaster.cpp
|
|
|
|
DBDS += $(APPSRC)/ecmcSocketCAN.dbd
|
|
|
|
db:
|
|
|
|
.PHONY: db
|
|
|
|
vlibs:
|
|
|
|
.PHONY: vlibs
|
|
|
|
###
|