📄 makefile.leddimmer_common
字号:
#************* Makefile.leddimmer_common *****************
# #######
# ## ##
# # ## #### ##### ##### ## ## #####
# ## ## ## ## ## ## ## ## ##
# ## # ###### ## ## #### ## ## ####
# ## ## ## ## ## ## ##### ##
# ####### #### ## ## ##### ## #####
# #####
# Z-Wave, the wireless language.
#
# Copyright (c) 2001
# Zensys A/S
# Denmark
#
# All Rights Reserved
#
# This source file is subject to the terms and conditions of the
# Zensys Software License Agreement which restricts the manner
# in which it may be used.
#
#---------------------------------------------------------------------------
#
# Description: Common makefile for leddimmers of all types
#
# Author: Henrik Holm
#
# Last Changed By: $Author: heh $
# Revision: $Revision: 1.6 $
# Last Changed: $Date: 2007/01/25 12:38:41 $
#
#****************************************************************************
# Target name
TARGET:=leddimmer$(UART_CONTROL)$(ENH)_$(CHIP)$(SFF)$(META)_$(COUNTRY)$(TEST)
all: $(TARGET).hex
include ..\Common\Makefile.common_$(CHIP)_appl
RELFILES=LEDdim.obj\
one_button.obj\
slave_learn.obj\
App_RFSetup.obj
CDEFINES+=$(COUNTRY),\
APPL_PROD_TEST
ADEFINES+=$(COUNTRY),\
$(CHIP)
#Test if we should define SFF
ifneq ($(SFF),)
CDEFINES+=,SFF
endif
#Test if we should define META
ifneq ($(META),)
CDEFINES+=,METADATA_DUT
endif
#ifneq ($(UART_CONTROL),)
CDEFINES+=,ZW_BUTTON_UART_CONTROL
#endif
#Test if we should use enhancedLibrary
ifeq ($(ENH),)
include ..\Common\Makefile.common_$(CHIP)_slave$(TEST)
else
include ..\Common\Makefile.common_$(CHIP)_slave_enhanced$(TEST)
endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -