From e0f577e15475e818e5ff799feb622c620cfcbce5 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Fri, 2 Jul 2021 01:15:35 -0600 Subject: [PATCH] remove unnecessary dependency from makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d3c155..eba8a05 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ PIN_DEF = constraints/pins.pcf SOURCE_V = $(wildcard hdl/*.v) TESTBENCH_V = $(wildcard hdl/tb/*.v) -all: $(BUILD_DIR) $(BUILD_DIR)/$(PROJ).rpt $(BUILD_DIR)/$(PROJ).bin +all: $(BUILD_DIR)/$(PROJ).rpt $(BUILD_DIR)/$(PROJ).bin $(BUILD_DIR): mkdir -p $(BUILD_DIR)