Skip to content

complete Makefile with aiger folder as dependency for ebmc #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUBDIRS = ebmc hw-cbmc trans-word-level trans-netlist verilog vhdl smvlang ic3
SUBDIRS = ebmc hw-cbmc trans-word-level trans-netlist verilog vhdl smvlang ic3 aiger

all: hw-cbmc ebmc

Expand All @@ -10,7 +10,7 @@ $(SUBDIRS):

# Dependencies

ebmc: trans-word-level trans-netlist verilog vhdl smvlang ic3
ebmc: trans-word-level trans-netlist verilog vhdl smvlang ic3 aiger

hw-cbmc: trans-word-level trans-netlist verilog vhdl smvlang

Expand Down
6 changes: 3 additions & 3 deletions src/ic3/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CXXFLAGS = -std=c++0x -Wno-literal-suffix -Wno-write-strings -D __STDC_LIMIT_MACROS -D __STDC_FORMAT_MACROS -O3 $(INC_DIR)
CXXFLAGS = -Wno-literal-suffix -Wno-write-strings -D __STDC_LIMIT_MACROS -D __STDC_FORMAT_MACROS -O3 $(INC_DIR)
CXFLAGS = $(INC_DIR)
CFLAGS = -O3 $(INC_DIR)
CXX = g++
Expand All @@ -16,9 +16,9 @@ vpath %.hh build_prob

include ../config.inc

MINISAT_INC = -Iminisat
MINISAT_INC = minisat

INC_DIR = -I. -Ibuild_prob -Iseq_circ $(MINISAT_INC) -I$(CBMC)/src -I../ -I../ebmc -I../trans-netlist
INC_DIR = -I. -Ibuild_prob -Iseq_circ -I$(MINISAT_INC) -I$(CBMC)/src -I../ -I../ebmc -I../trans-netlist

OBJ_DIR = .

Expand Down