about summary refs log tree commit diff homepage
path: root/stp/bitvec
diff options
context:
space:
mode:
Diffstat (limited to 'stp/bitvec')
-rw-r--r--stp/bitvec/Makefile21
1 files changed, 13 insertions, 8 deletions
diff --git a/stp/bitvec/Makefile b/stp/bitvec/Makefile
index eb6e1121..959d33cc 100644
--- a/stp/bitvec/Makefile
+++ b/stp/bitvec/Makefile
@@ -1,11 +1,16 @@
-include ../Makefile.common
+#===-- stp/bitvec/Makefile ---------------------------------*- Makefile -*--===#
+#
+#                     The KLEE Symbolic Virtual Machine
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+#===------------------------------------------------------------------------===#
 
-SRCS = consteval.cpp
-OBJS = $(SRCS:.cpp=.o)
+LEVEL=../..
 
-libconsteval.a: $(OBJS)
-	$(AR) rc $@ $^
-	$(RANLIB) $@
+LIBRARYNAME=stp_bitvec
+DONT_BUILD_RELINKED=1
+BUILD_ARCHIVE=1
 
-clean:	
-	rm -rf *.o *~ *.a .#*
+include $(LEVEL)/Makefile.common