about summary refs log tree commit diff homepage
path: root/stp/simplifier/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'stp/simplifier/Makefile')
-rw-r--r--stp/simplifier/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/stp/simplifier/Makefile b/stp/simplifier/Makefile
new file mode 100644
index 00000000..aba07e1b
--- /dev/null
+++ b/stp/simplifier/Makefile
@@ -0,0 +1,11 @@
+include ../Makefile.common
+
+SRCS = simplifier.cpp bvsolver.cpp
+OBJS = $(SRCS:.cpp=.o)
+
+libsimplifier.a: $(OBJS)
+	$(AR) rc $@ $^
+	$(RANLIB) $@
+
+clean:	
+	rm -rf *.o *~ *.a .#*