From f548b72cadf68afa8890cd552f4ac2933120ff90 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 22 Jul 2018 09:05:01 +0100 Subject: [PATCH] add include dirs to makefile template --- src/bsv/Makefile.template | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/bsv/Makefile.template b/src/bsv/Makefile.template index 384fe76..4ee9bfc 100644 --- a/src/bsv/Makefile.template +++ b/src/bsv/Makefile.template @@ -6,6 +6,19 @@ TOP_DIR:=./ WORKING_DIR := $(shell pwd) BSVINCDIR:= .:%/Prelude:%/Libraries:%/Libraries/BlueNoC:./bsv_lib/ +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/core +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/uncore/axi4 +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/uncore/axi4lite +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/lib +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/gpio +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/i2c +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/mux +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/plic +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/pwm +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/qspi +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/sdmmc +BSVINCDIR:= $(BSVINCDIR):../../../src/peripherals/src/peripherals/uart + default: gen_verilog check-blue: -- 2.30.2