URL
https://opencores.org/ocsvn/dblclockfft/dblclockfft/trunk
Subversion Repositories dblclockfft
[/] [dblclockfft/] [trunk/] [bench/] [cpp/] [Makefile] - Rev 41
Compare with Previous | Blame | View Log
#################################################################################### Filename: Makefile#### Project: A General Purpose Pipelined FFT Implementation#### Purpose: This programs the build process for the test benches## associated with the double clocked FFT project. These## test benches are designed for the size and arguments of the FFT as## given by the Makefile in the trunk/sw directory, although they shouldn't## be too difficult to modify for other FFT parameters.#### Please note that running these test benches requires access to the## *cmem_*.hex files found in trunk/rtl. They will be linked into this## directory as part of the tests.#### Creator: Dan Gisselquist, Ph.D.## Gisselquist Technology, LLC###################################################################################### Copyright (C) 2015,2018 Gisselquist Technology, LLC#### This program is free software (firmware): you can redistribute it and/or## modify it under the terms of the GNU General Public License as published## by the Free Software Foundation, either version 3 of the License, or (at## your option) any later version.#### This program is distributed in the hope that it will be useful, but WITHOUT## ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License## for more details.#### You should have received a copy of the GNU General Public License along## with this program. (It's in the $(ROOT)/doc directory. Run make with no## target there if the PDF file isn't present.) If not, see## <http://www.gnu.org/licenses/> for a copy.#### License: GPL, v3, as defined and found on www.gnu.org,## http://www.gnu.org/licenses/gpl.html####################################################################################all: mpy_tb bitreverse_tb hwbfly_tb butterfly_tb fftstage_tb fft_tball: qtrstage_tb laststage_tbOBJDR:= ../../rtl/obj_dirVSRCD = ../../rtlTBODR:= ../rtl/obj_dirifneq ($(VERILATOR_ROOT),)VERILATOR:=$(VERILATOR_ROOT)/bin/verilatorelseVERILATOR:=verilatorVERILATOR_ROOT ?= $(shell bash -c 'verilator -V|grep VERILATOR_ROOT | head -1 | sed -e " s/^.*=\s*//"')endifexport $(VERILATOR)VROOT := $(VERILATOR_ROOT)VDEFS:= $(shell ./vversion.sh)VINC := -I$(VROOT)/include -I$(OBJDR)/ -I$(TBODR)/# MPYLB:= $(OBJDR)/Vshiftaddmpy__ALL.aMPYLB:= $(OBJDR)/Vlongbimpy__ALL.aBTREV:= $(OBJDR)/Vbitreverse__ALL.aSTAGE:= $(OBJDR)/Vfftstage__ALL.aQTRSG:= $(OBJDR)/Vqtrstage__ALL.aLSTSG:= $(OBJDR)/Vlaststage__ALL.aBFLYL:= $(OBJDR)/Vbutterfly__ALL.aHWBFY:= $(OBJDR)/Vhwbfly__ALL.aFFTLB:= $(OBJDR)/Vfftmain__ALL.aIFTLB:= $(TBODR)/Vifft_tb__ALL.aSTGLB:= $(OBJDR)/Vfftstage__ALL.aVSRCS:= $(VROOT)/include/verilated.cpp $(VROOT)/include/verilated_vcd_c.cppmpy_tb: mpy_tb.cpp fftsize.h twoc.h $(MPYLB)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(MPYLB) $(VSRCS) -o $@bitreverse_tb: bitreverse_tb.cpp twoc.cpp twoc.h fftsize.h $(BTREV)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(BTREV) $(VSRCS) -o $@laststage_tb: laststage_tb.cpp twoc.cpp twoc.h $(LSTSG)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(LSTSG) $(VSRCS) -o $@qtrstage_tb: qtrstage_tb.cpp twoc.cpp twoc.h $(QTRSG)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(QTRSG) $(VSRCS) -o $@butterfly_tb: butterfly_tb.cpp twoc.cpp twoc.h fftsize.h $(BFLYL)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(BFLYL) $(VSRCS) -o $@hwbfly_tb: hwbfly_tb.cpp twoc.cpp twoc.h $(HWBFY)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(HWBFY) $(VSRCS) -o $@fftstage_tb: fftstage_tb.cpp twoc.cpp twoc.h $(STGLB)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(STGLB) $(VSRCS) -o $@fft_tb: fft_tb.cpp twoc.cpp twoc.h fftsize.h $(FFTLB)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(FFTLB) $(VSRCS) -lfftw3 -o $@ifft_tb: ifft_tb.cpp twoc.cpp twoc.h fftsize.h $(IFTLB)g++ -g $(VINC) $(VDEFS) $< twoc.cpp $(IFTLB) $(VSRCS) -lfftw3 -o $@.PHONY: HEXHEX:ln -sf $(VSRCD)/*.hex ..PHONY: testtest: mpy_tb.pass bitreverse_tb.pass fftstage_tb.pass qtrstage_tb.passtest: laststage_tb.pass butterfly_tb.pass hwbfly_tb.passtest: fft_tb HEX # ifft_tb./fft_tbmpy_tb.pass: mpy_tb./mpy_tbtouch mpy_tb.passfftstage_tb.pass: fftstage_tb HEX./fftstage_tbtouch fftstage_tb.passbutterfly_tb.pass: butterfly_tb./butterfly_tbtouch butterfly_tb.passhwbfly_tb.pass: hwbfly_tb./hwbfly_tbtouch hwbfly_tb.passqtrstage_tb.pass: qtrstage_tb./qtrstage_tbtouch qtrstage_tb.passlaststage_tb.pass: laststage_tb./laststage_tbtouch laststage_tb.passbitreverse_tb.pass: bitreverse_tb./bitreverse_tbtouch bitreverse_tb.pass.PHONY: cleanclean:rm -f mpy_tb bitreverse_tb fftstage_tb qtrstage_tb butterfly_tbrm -f fftstage_tb fft_tb ifft_tb hwbfly_tb laststage_tbrm -rf fft_tb.dbl ifft_tb.dblrm -rf *cmem_*.hexrm -rf *.pass *.vcdinclude $(VERILATOR_ROOT)/include/verilated.mk
