summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-11-17 17:27:56 +0000
committerMorgan Deters <mdeters@gmail.com>2009-11-17 17:27:56 +0000
commit477e97cd81afe4b86eea47e9abe6311fc22299fc (patch)
treea55a90e7c518a59d1ec38e62d4f867e13d423cad /src
parent73d8c7a4f4896455fef39c44c80bf3df30a52d89 (diff)
ignored items
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am10
-rw-r--r--src/context/Makefile.am6
-rw-r--r--src/expr/Makefile.am4
-rw-r--r--src/main/Makefile.am6
-rw-r--r--src/smt/Makefile.am6
-rw-r--r--src/theory/Makefile.am6
-rw-r--r--src/util/Makefile.am6
7 files changed, 39 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7b2141da3..8b897bf0f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,13 +1,17 @@
INCLUDES = -I@srcdir@/include -I@srcdir@
-SUBDIRS = core parser sat
+SUBDIRS = util expr context prop smt theory parser main
lib_LTLIBRARIES = libcvc4.la
libcvc4_la_LIBADD = \
- core/libcore.a
+ util/libutil.a \
+ expr/libexpr.a \
+ context/libcontext.a \
+ prop/minisat/libminisat.a \
+ smt/libsmt.a \
+ theory/libtheory.a \
parser/libparser.a
- sat/minisat/libminisat.a
EXTRA_DIST = \
include/cvc4.h \
diff --git a/src/context/Makefile.am b/src/context/Makefile.am
new file mode 100644
index 000000000..e3226e88b
--- /dev/null
+++ b/src/context/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = -I@srcdir@/../include -I@srcdir@/..
+AM_CXXFLAGS = -Wall
+
+noinst_LIBRARIES = libcontext.a
+
+libcontext_a_SOURCES =
diff --git a/src/expr/Makefile.am b/src/expr/Makefile.am
index d26a7483d..6833f9f97 100644
--- a/src/expr/Makefile.am
+++ b/src/expr/Makefile.am
@@ -1,9 +1,9 @@
INCLUDES = -I@srcdir@/../include -I@srcdir@/..
AM_CXXFLAGS = -Wall
-noinst_LIBRARIES = libcore.a
+noinst_LIBRARIES = libexpr.a
-libcore_a_SOURCES = \
+libexpr_a_SOURCES = \
expr.cpp \
expr_builder.cpp \
expr_manager.cpp \
diff --git a/src/main/Makefile.am b/src/main/Makefile.am
new file mode 100644
index 000000000..e857c8245
--- /dev/null
+++ b/src/main/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = -I@srcdir@/../include -I@srcdir@/..
+AM_CXXFLAGS = -Wall
+
+bin_BINARIES = cvc4
+
+cvc4_SOURCES =
diff --git a/src/smt/Makefile.am b/src/smt/Makefile.am
new file mode 100644
index 000000000..f719b1283
--- /dev/null
+++ b/src/smt/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = -I@srcdir@/../include -I@srcdir@/..
+AM_CXXFLAGS = -Wall
+
+noinst_LIBRARIES = libsmt.a
+
+libsmt_a_SOURCES =
diff --git a/src/theory/Makefile.am b/src/theory/Makefile.am
new file mode 100644
index 000000000..5c64f4f38
--- /dev/null
+++ b/src/theory/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = -I@srcdir@/../include -I@srcdir@/..
+AM_CXXFLAGS = -Wall
+
+noinst_LIBRARIES = libtheory.a
+
+libtheory_a_SOURCES =
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
new file mode 100644
index 000000000..de5f0da9d
--- /dev/null
+++ b/src/util/Makefile.am
@@ -0,0 +1,6 @@
+INCLUDES = -I@srcdir@/../include -I@srcdir@/..
+AM_CXXFLAGS = -Wall
+
+noinst_LIBRARIES = libutil.a
+
+libutil_a_SOURCES =
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback