From 4326a9f94edd513b6568def7a3affcf8acac1774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Thu, 17 Nov 2022 16:02:51 +0100 Subject: [PATCH] fix: build sources that are in top of src/ directory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be8b3dd..f4b4408 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ WAVEFORM_FILE ?= $(SIMDIR)/out.ghw RUN_FLAGS := --stop-time=$(STOP_TIME) --wave=$(WAVEFORM_FILE) --stats TBSOURCES := $(wildcard $(TBDIR)/*.$(VHDLEX)) $(wildcard $(TBDIR)/**/*.$(VHDLEX)) -export SOURCES := $(wildcard $(TBDIR)/*.$(VHDLEX)) $(wildcard $(SRCDIR)/**/*.$(VHDLEX)) +export SOURCES := $(wildcard $(SRCDIR)/*.$(VHDLEX)) $(wildcard $(SRCDIR)/**/*.$(VHDLEX)) ALL_SOURCES := $(SOURCES) $(TBSOURCES) EXECUTABLE := $(SIMDIR)/$(TESTBENCH) -- 2.48.1