corea.mak
来自「BlackFin的一个范本」· MAK 代码 · 共 84 行
MAK
84 行
# 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:
# corea_Debug
# corea_Debug_clean
# 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.
ADI_DSP=d:\Program Files\Analog Devices\VisualDSP 4.0
ifndef ADI_DSP_MAKE
ADI_DSP_MAKE=d:/Program\ Files/Analog\ Devices/VisualDSP\ 4.0
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 "corea_Debug" configuration
#
ifeq ($(MAKECMDGOALS),corea_Debug)
corea_Debug : ./Debug/corea.dlb
./Debug/arith_encoder_mpeg4.doj :./arith_encoder_mpeg4.asm
@echo ".\arith_encoder_mpeg4.asm"
$(VDSP)/easmblkfn.exe .\arith_encoder_mpeg4.asm -proc ADSP-BF561 -g -o .\Debug\arith_encoder_mpeg4.doj -MM
./Debug/cycle_count.doj :./cycle_count.asm
@echo ".\cycle_count.asm"
$(VDSP)/easmblkfn.exe .\cycle_count.asm -proc ADSP-BF561 -g -o .\Debug\cycle_count.doj -MM
./Debug/test_arith_encoder_mpeg4.doj :./test_arith_encoder_mpeg4.c $(ADI_DSP_MAKE)/Blackfin/include/stdio.h $(ADI_DSP_MAKE)/Blackfin/include/yvals.h ./bin_ar_code.h ./test_input.h
@echo ".\test_arith_encoder_mpeg4.c"
$(VDSP)/ccblkfn.exe -c .\test_arith_encoder_mpeg4.c -g -no-multiline -double-size-32 -decls-strong -jump-constdata -flags-compiler --diag_warning,implicit_func_decl -proc ADSP-BF561 -o .\Debug\test_arith_encoder_mpeg4.doj -MM
./Debug/corea.dlb :./Debug/arith_encoder_mpeg4.doj ./Debug/cycle_count.doj ./Debug/test_arith_encoder_mpeg4.doj
@echo "Creating library..."
$(VDSP)/ccblkfn.exe -proc ADSP-BF561 -build-lib -o .\Debug\corea.dlb ".\Debug\arith_encoder_mpeg4.doj" ".\Debug\cycle_count.doj" ".\Debug\test_arith_encoder_mpeg4.doj" -MM
endif
ifeq ($(MAKECMDGOALS),corea_Debug_clean)
corea_Debug_clean:
$(RM) ".\Debug\arith_encoder_mpeg4.doj"
$(RM) ".\Debug\cycle_count.doj"
$(RM) ".\Debug\test_arith_encoder_mpeg4.doj"
$(RM) ".\Debug\corea.dlb"
$(RM) ".\Debug\*.ipa"
$(RM) ".\Debug\*.opa"
$(RM) ".\Debug\*.ti"
$(RM) ".\*.rbld"
endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?