From d29bbcce1711d71928f17ffb226038668e41ee48 Mon Sep 17 00:00:00 2001 From: Scott Beamer Date: Wed, 12 Feb 2020 11:58:09 -0800 Subject: [PATCH] fix emulator makefiles --- boom/Makefile | 2 +- rocket16/Makefile | 2 +- rocket18/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boom/Makefile b/boom/Makefile index 7b407f6..ac5229d 100644 --- a/boom/Makefile +++ b/boom/Makefile @@ -1,3 +1,3 @@ -FIR_PATH = $(pwd)/boom.system.TestHarness.BoomConfig.fir +FIR_PATH = $(shell pwd)/boom.system.TestHarness.BoomConfig.fir include ../emulator.mk diff --git a/rocket16/Makefile b/rocket16/Makefile index 8181a4e..7287be9 100644 --- a/rocket16/Makefile +++ b/rocket16/Makefile @@ -1,3 +1,3 @@ -FIR_PATH = $(pwd)/TestHarness.DefaultConfig.1609.fir +FIR_PATH = $(shell pwd)/TestHarness.DefaultConfig.1609.fir include ../emulator.mk diff --git a/rocket18/Makefile b/rocket18/Makefile index dbcbf28..9a36e24 100644 --- a/rocket18/Makefile +++ b/rocket18/Makefile @@ -1,3 +1,3 @@ -FIR_PATH = $(pwd)/freechips.rocketchip.system.DefaultConfig.fir +FIR_PATH = $(shell pwd)/freechips.rocketchip.system.DefaultConfig.fir include ../emulator.mk