From 31e0dbe7297a8e9849a5ce0f44dcb95a84243fba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sat, 10 Jul 2021 19:45:43 +0200 Subject: [PATCH] fix: set correct submakefile path --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 546ed85..753a60c 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ ALL_SOURCES := $(SOURCES) $(TBSOURCES) EXECUTABLE := $(SIMDIR)/$(TESTBENCH) -.PHONY: all clean ax309 +.PHONY: all clean xil compile: $(WORKDIR) $(ALL_SOURCES) @$(COMPILER) -i $(COMPILER_FLAGS) $(ALL_SOURCES) @@ -52,11 +52,11 @@ run: $(TBDIR)/$(TESTBENCH) $(SIMDIR) view: @$(WAVEFORM_VIEWER) $(WAVEFORM_FILE) -ax309: - @$(MAKE) -C ax309 all +xil: + @$(MAKE) -C xil all -ax309-flash: - @$(MAKE) -C ax309 flash +xil-flash: + @$(MAKE) -C xil flash clean: @$(RM) -rf $(SIMDIR) -- 2.48.1