hhcfft4.mak

来自「在ADSP-2126x上编写的优化过的FFT程序(用c和汇编编写)。」· MAK 代码 · 共 85 行

MAK
85
字号
# 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 : ../hhcfft4/hhcfft4.dxe 

./debug/hhcfft4.doj :./hhcfft4.asm ../../../../program\ files/analog\ devices/visualdsp/212xx/include/asm_sprt.h ../../../../program\ files/analog\ devices/visualdsp/212xx/include/def21160.h 
	$(VDSP)/easm21k.exe -proc ADSP-21262  -i $(VDSP)\212xx\lib\src\libc_src -o .\debug\HHcfft4.doj -g .\HHcfft4.asm -MM

./debug/rad4fft.doj :./rad4fft.c ../../../../program\ files/analog\ devices/visualdsp/212xx/include/math.h rad4fft.h ctypes.h 
	$(VDSP)/cc21k -c .\Rad4FFT.c  -g  -proc ADSP-21262  -o .\debug\Rad4FFT.doj  -MM

./debug/benchmark.doj :./benchmark.asm ../../../../program\ files/analog\ devices/visualdsp/212xx/include/asm_sprt.h ../../../../program\ files/analog\ devices/visualdsp/212xx/include/def21262.h ../../../../program\ files/analog\ devices/visualdsp/212xx/include/def21266.h 
	$(VDSP)/easm21k.exe -proc ADSP-21262  -i $(VDSP)\212xx\lib\src\libc_src -o .\debug\benchmark.doj -g .\benchmark.asm -MM

./debug/main.doj :./main.c ./rad4fft.h ctypes.h ../../../../program\ files/analog\ devices/visualdsp/212xx/include/math.h benchmark.h 
	$(VDSP)/cc21k -c .\main.c  -g  -proc ADSP-21262  -o .\debug\main.doj  -MM

./debug/sinf_simd.doj :./sinf_simd.asm ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/src/libc_src/dbl_glob.h ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/src/libc_src/flt_glob.h ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/src/libc_src/fxd_glob.h ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/src/libc_src/lib_glob.h ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/src/libc_src/mth_glob.h 
	$(VDSP)/easm21k.exe -proc ADSP-21262  -i $(VDSP)\212xx\lib\src\libc_src -o .\debug\sinf_simd.doj -g .\sinf_simd.asm -MM

../hhcfft4/hhcfft4.dxe :./hhcfft4.ldf ./debug/hhcfft4.doj ./debug/rad4fft.doj ./debug/benchmark.doj ./debug/main.doj ./debug/sinf_simd.doj ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/262_hdr.doj ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/libc26x.dlb ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/libdsp26x.dlb ../../../../program\ files/analog\ devices/visualdsp/212xx/lib/libio.dlb 
	$(VDSP)/cc21k.exe .\debug\HHcfft4.doj .\debug\Rad4FFT.doj .\debug\benchmark.doj .\debug\main.doj .\debug\sinf_simd.doj -T .\HHCfft4.ldf -proc ADSP-21262 -L .\debug -flags-link -od,..\HHCFFT4 -o ..\HHCFFT4\HHCfft4.dxe -map ..\HHCFFT4\HHCfft4.map -flags-link -MM

endif

ifeq ($(MAKECMDGOALS),Debug_clean)

Debug_clean:
	$(RM) ".\debug\HHcfft4.doj"
	$(RM) ".\debug\Rad4FFT.doj"
	$(RM) ".\debug\benchmark.doj"
	$(RM) ".\debug\main.doj"
	$(RM) ".\debug\sinf_simd.doj"
	$(RM) "..\HHCFFT4\HHCfft4.dxe"
	$(RM) ".\debug\*.ipa"
	$(RM) ".\debug\*.opa"
	$(RM) ".\debug\*.ti"

endif


⌨️ 快捷键说明

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