From 89929cbb6eeac1a46ed39499ef8e79e4bd81aea1 Mon Sep 17 00:00:00 2001 From: Harrison Liew Date: Tue, 28 Feb 2023 13:10:49 -0800 Subject: [PATCH] cat VLSI_RTL --- vlsi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlsi/Makefile b/vlsi/Makefile index 97fba910..c31f7304 100644 --- a/vlsi/Makefile +++ b/vlsi/Makefile @@ -120,7 +120,7 @@ $(SYN_CONF): $(VLSI_RTL) mkdir -p $(dir $@) echo "sim.inputs:" > $@ echo " input_files:" >> $@ - for x in $(VLSI_RTL); do \ + for x in $$(cat $(VLSI_RTL)); do \ echo ' - "'$$x'"' >> $@; \ done echo " input_files_meta: 'append'" >> $@