80 lines
2.8 KiB
Makefile
80 lines
2.8 KiB
Makefile
|
|
###############################################################################
|
||
|
|
# File Name : VStdLib_cfg.mak
|
||
|
|
# Description: Configuration makefile
|
||
|
|
#------------------------------------------------------------------------------
|
||
|
|
# COPYRIGHT
|
||
|
|
#------------------------------------------------------------------------------
|
||
|
|
# Copyright (c) 2019 by Vector Informatik GmbH. All rights reserved.
|
||
|
|
#------------------------------------------------------------------------------
|
||
|
|
# REVISION HISTORY
|
||
|
|
#------------------------------------------------------------------------------
|
||
|
|
# Refer to the VStdLib_rules.mak file.
|
||
|
|
###############################################################################
|
||
|
|
|
||
|
|
##############################################################
|
||
|
|
# CAN_CONFIG_PATH: (not used for Vector)
|
||
|
|
# The Variable CAN_CONFIG_PATH is optional. It allows the
|
||
|
|
# configuration of the directory, where you can also find the
|
||
|
|
# generated source files. Generally they should be in the
|
||
|
|
# directory $(PROJECT_ROOT)\source\networks.
|
||
|
|
# But if the application should run on several hardware
|
||
|
|
# targets, then different CAN configurations of different
|
||
|
|
# directories will be necessary. Therefor the variable
|
||
|
|
# CAN_CONFIG_PATH should be used.
|
||
|
|
#
|
||
|
|
# For example:
|
||
|
|
# CAN_CONFIG_PATH = $(PROJECT_ROOT)\source\network\v850
|
||
|
|
# CAN_CONFIG_PATH = $(PROJECT_ROOT)\source\network\st10
|
||
|
|
# CAN_CONFIG_PATH = $(PROJECT_ROOT)\source\network\v850
|
||
|
|
#
|
||
|
|
|
||
|
|
#VSTDLIB_CONFIG_PATH =
|
||
|
|
|
||
|
|
|
||
|
|
##############################################################
|
||
|
|
# CAN_DRIVER_MODE: (not used for Vector)
|
||
|
|
# This Variable contains the name of the can driver module. At
|
||
|
|
# the moment the Standard Software Core Supports the two driver
|
||
|
|
# can_drv.c (single CAN) and can_drvm.c (multi CAN). Other
|
||
|
|
# values are not allowed.
|
||
|
|
#
|
||
|
|
# For example:
|
||
|
|
# CAN_DRIVER_MODE = singlechannel/multichannel
|
||
|
|
#
|
||
|
|
|
||
|
|
|
||
|
|
###############################################################
|
||
|
|
# REQUIRED
|
||
|
|
#
|
||
|
|
# No Other resources are required to write a Configuration
|
||
|
|
# Makefile.
|
||
|
|
#
|
||
|
|
###############################################################
|
||
|
|
|
||
|
|
|
||
|
|
###############################################################
|
||
|
|
# PROVIDE
|
||
|
|
#
|
||
|
|
# A Configuration Makefile does not provide resources for other
|
||
|
|
# basic software bundles or the base_make package
|
||
|
|
#
|
||
|
|
###############################################################
|
||
|
|
|
||
|
|
|
||
|
|
###############################################################
|
||
|
|
# REGISTRY
|
||
|
|
#
|
||
|
|
# Like the Provide-Section this block is empty.
|
||
|
|
#
|
||
|
|
###############################################################
|
||
|
|
|
||
|
|
|
||
|
|
###############################################################
|
||
|
|
# SPECIFIC
|
||
|
|
#
|
||
|
|
# All variables in the _cfg makefile are "Specific" variables,
|
||
|
|
# because they should only be used in the *_check.mak,
|
||
|
|
# *_defs.mak and *_rules.mak Makefiles of the same basic
|
||
|
|
# software bundle.
|
||
|
|
###############################################################
|