From 4ceed4d3739fa922d83c842d7c1b40599e2ccdb7 Mon Sep 17 00:00:00 2001 From: Istvan Csomortani Date: Sat, 21 Jan 2017 10:45:43 +0200 Subject: [PATCH] util_pulse_gen: Add Makefile --- library/util_pulse_gen/Makefile | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 library/util_pulse_gen/Makefile diff --git a/library/util_pulse_gen/Makefile b/library/util_pulse_gen/Makefile new file mode 100644 index 000000000..85059722b --- /dev/null +++ b/library/util_pulse_gen/Makefile @@ -0,0 +1,46 @@ +#################################################################################### +#################################################################################### +## Copyright 2011(c) Analog Devices, Inc. +## Auto-generated, do not modify! +#################################################################################### +#################################################################################### + +M_DEPS += ../common/util_pulse_gen.v +M_DEPS += ../scripts/adi_env.tcl +M_DEPS += ../scripts/adi_ip.tcl +M_DEPS += util_pulse_gen_ip.tcl + +M_VIVADO := vivado -mode batch -source + +M_FLIST := *.cache +M_FLIST += *.data +M_FLIST += *.xpr +M_FLIST += *.log +M_FLIST += component.xml +M_FLIST += *.jou +M_FLIST += xgui +M_FLIST += *.ip_user_files +M_FLIST += *.srcs +M_FLIST += *.hw +M_FLIST += *.sim +M_FLIST += .Xil + + + +.PHONY: all clean clean-all +all: util_pulse_gen.xpr + + +clean:clean-all + + +clean-all: + rm -rf $(M_FLIST) + + +util_pulse_gen.xpr: $(M_DEPS) + -rm -rf $(M_FLIST) + $(M_VIVADO) util_pulse_gen_ip.tcl >> util_pulse_gen_ip.log 2>&1 + +#################################################################################### +####################################################################################