Makefiles: fixed axi_adxcvr/util_adxcvr Makefiles to include interfaces dependancy

main
Adrian Costina 2017-02-23 16:16:34 +02:00
parent d820d3d245
commit 573959c826
2 changed files with 8 additions and 4 deletions

View File

@ -37,8 +37,8 @@ M_FLIST += .Xil
.PHONY: all clean clean-all
all: axi_adxcvr.xpr
.PHONY: all dep clean clean-all
all: dep axi_adxcvr.xpr
clean:clean-all
@ -52,5 +52,7 @@ axi_adxcvr.xpr: $(M_DEPS)
-rm -rf $(M_FLIST)
$(M_VIVADO) axi_adxcvr_ip.tcl >> axi_adxcvr_ip.log 2>&1
dep:
make -C ../../interfaces
####################################################################################
####################################################################################

View File

@ -35,8 +35,8 @@ M_FLIST += .Xil
.PHONY: all clean clean-all
all: util_adxcvr.xpr
.PHONY: all dep clean clean-all
all: dep util_adxcvr.xpr
clean:clean-all
@ -50,5 +50,7 @@ util_adxcvr.xpr: $(M_DEPS)
-rm -rf $(M_FLIST)
$(M_VIVADO) util_adxcvr_ip.tcl >> util_adxcvr_ip.log 2>&1
dep:
make -C ../../interfaces
####################################################################################
####################################################################################