Skip to content

Commit

Permalink
Merge branch 'master' of github.com:verilog-to-routing/vtr-verilog-to…
Browse files Browse the repository at this point in the history
…-routing
  • Loading branch information
opetelin committed Mar 9, 2016
2 parents eafcb1f + d7f8ab1 commit 09d06bb
Show file tree
Hide file tree
Showing 137 changed files with 12,466 additions and 813 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ ODIN_II/SRC/verilog_flex.c
*.o
*.a

#
#Python
#
*.pyc

#
#Vim
#
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile to build CAD tools in Verilog-to-Routing (VTR) Framework #
#####################################################################

SUBDIRS = ODIN_II vpr abc_with_bb_support libarchfpga liblog ace2 libsdc_parse
SUBDIRS = abc_with_bb_support ODIN_II vpr libarchfpga liblog ace2 libsdc_parse

all: notifications subdirs

Expand Down
8 changes: 6 additions & 2 deletions ODIN_II/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ EXEO = odin_II.exe

DEBUG_FLAGS = -g -DYYERROR_VERBOSE

ABC_DIR = ../abc_with_bb_support
ABC_AR = $(ABC_DIR)/libabc.a
ABC_INC = -I $(ABC_DIR)/src/bdd/cudd -I $(ABC_DIR)/src/bdd/epd -I $(ABC_DIR)/src/bdd/mtr -I $(ABC_DIR)/src/misc/st

#OPT_FLAGS = -O2
# Use this value of OPT_FLAGS to simulate in parallel (requires GCC >= 4.2)
#OPT_FLAGS = -O2 -fopenmp

INC_FLAGS = -I../libarchfpga/include -I../libcommon_c++/SRC/TIO_InputOutputHandlers
INC_FLAGS = -I../libarchfpga/include -I../libcommon_c++/SRC/TIO_InputOutputHandlers $(ABC_INC)
LIB = -L../libarchfpga -larchfpga -lm -ldl
C_DIRECTIVE = -DVPR6 -DUSING_BISON

Expand Down Expand Up @@ -84,7 +88,7 @@ DEP = $(OBJ:.o=.d)
all: CTAGS $(EXEO)

$(EXEO): $(OBJ)
$(CC) $(C_FLAGS) $(FLAGS) $(OBJ) -o $(EXEO) $(LIB)
$(CC) $(C_FLAGS) $(FLAGS) $(OBJ) -o $(EXEO) $(LIB) $(ABC_AR)

CTAGS :
@ cd SRC && ctags *.[ch]
Expand Down

0 comments on commit 09d06bb

Please sign in to comment.