From b04c6b8c31f5cb4eaa2e9d3e7e1879377cf7376a Mon Sep 17 00:00:00 2001 From: tangxifan Date: Fri, 3 May 2019 23:24:08 -0600 Subject: [PATCH] bug fix on Makefile and travis --- .travis/script.sh | 2 ++ Makefile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis/script.sh b/.travis/script.sh index b740a9555..fe6b8ba6e 100755 --- a/.travis/script.sh +++ b/.travis/script.sh @@ -9,12 +9,14 @@ start_section "OpenFPGA.build" "${GREEN}Building..${NC}" if [[ $TRAVIS_OS_NAME == 'osx' ]]; then #make mkdir build + cd build cmake .. make -j2 else # For linux, we enable full package compilation #make mkdir build + cd build cmake .. make -j2 fi diff --git a/Makefile b/Makefile index e6d831477..771f77f58 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Makefile to build CAD tools in OpenFPGA inspired by Verilog-to-Routing (VTR) Framework # ########################################################################################## -SUBDIRS = abc_with_bb_support ace2 vpr7_x2p yosys +SUBDIRS = abc_with_bb_support abc ace2 vpr7_x2p yosys all: notifications subdirs @@ -28,6 +28,7 @@ packages: clean: @ cd abc_with_bb_support && make clean + @ cd abc && make clean @ cd ace2 && make clean @ cd vpr7_x2p && make clean @ cd yosys && make clean