From 62b91ff45aebac6c61db86cdf555087fecc41668 Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Thu, 25 Jun 2020 13:15:27 -0400 Subject: [PATCH] fixed driver stub --- driver/Makefile | 4 ++-- driver/stub/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/driver/Makefile b/driver/Makefile index 1f0d2674..3c0c04f6 100644 --- a/driver/Makefile +++ b/driver/Makefile @@ -15,9 +15,9 @@ simx: $(MAKE) -C simx clean: - $(MAKE) clean -C dummy + $(MAKE) clean -C stub $(MAKE) clean -C opae $(MAKE) clean -C rtlsim $(MAKE) clean -C simx -.PHONY: all opae rtlsim simx clean \ No newline at end of file +.PHONY: all stub opae rtlsim simx clean \ No newline at end of file diff --git a/driver/stub/Makefile b/driver/stub/Makefile index 17f28f26..985ed30e 100644 --- a/driver/stub/Makefile +++ b/driver/stub/Makefile @@ -1,7 +1,7 @@ CXXFLAGS += -std=c++11 -O3 -Wall -Wextra -pedantic -Wfatal-errors #CXXFLAGS += -std=c++11 -g -O0 -Wall -Wextra -pedantic -Wfatal-errors -CXXFLAGS += -I../include -I../../runtime +CXXFLAGS += -I../include -I../../runtime -I../../hw CXXFLAGS += -fPIC