chained_dma.mak

来自「TS101 DMA演示程序,包括链路口DMA,二维DMA」· MAK 代码 · 共 71 行

MAK
71
字号
# Generated by the VisualDSP++ IDDE

# Note:  Any changes made to this Makefile will be lost the next time the
# matching project file is loaded into the IDDE.  If you wish to preserve
# changes, rename this file and run it externally to the IDDE.

# The syntax of this Makefile is such that GNU Make v3.77 or higher is
# required.

# The current working directory should be the directory in which this
# Makefile resides.

# Supported targets:
#     Debug
#     Debug_clean

# Define ADI_DSP if it is not already defined.  Define this variable if you
# wish to run this Makefile on a host other than the host that created
# it and VisualDSP++ may be installed in a different directory.

ifndef ADI_DSP
ADI_DSP=C:\Program Files\Analog Devices\VisualDSP
endif

# $VDSP is a gmake-friendly version of ADI_DIR

empty:=
space:= $(empty) $(empty)
VDSP_INTERMEDIATE=$(subst \,/,$(ADI_DSP))
VDSP=$(subst $(space),\$(space),$(VDSP_INTERMEDIATE))

# Define the command to use to delete files (which is different on Win95/98
# and Windows NT/2000)

ifeq ($(OS),Windows_NT)
RM=cmd /C del /F /Q
else
RM=command /C del
endif

#
# Begin "Debug" configuration
#

ifeq ($(MAKECMDGOALS),Debug)

Debug : ./chained_tx.dxe ./chained_rx.dxe 

./debug/chained_rx.doj : ./chained_rx.asm 
	$(VDSP)/easmts.exe -TS101  -o .\Debug\Chained_rx.doj .\Chained_rx.asm -MM

./debug/chained_tx.doj : ./chained_tx.asm 
	$(VDSP)/easmts.exe -TS101  -o .\Debug\Chained_tx.doj .\Chained_tx.asm -MM

./chained_tx.dxe ./chained_rx.dxe : ./adsp-ts101_mp_asm.ldf ./debug/chained_rx.doj ./debug/chained_tx.doj 
	$(VDSP)/ccts.exe .\Debug\Chained_rx.doj .\Debug\Chained_tx.doj -T .\ADSP-TS101_MP_ASM.ldf -TS101 -L .\Debug -o .\Debug\chained_dma.dxe -flags-link -MM

endif

ifeq ($(MAKECMDGOALS),Debug_clean)

Debug_clean:
	$(RM) ".\Debug\Chained_rx.doj"
	$(RM) ".\Debug\Chained_tx.doj"
	$(RM) ".\CHAINED_TX.DXE"
	$(RM) ".\CHAINED_RX.DXE"

endif


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?