diff options
Diffstat (limited to 'stp/simplifier')
-rw-r--r-- | stp/simplifier/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/stp/simplifier/Makefile b/stp/simplifier/Makefile index aba07e1b..fb6be7e1 100644 --- a/stp/simplifier/Makefile +++ b/stp/simplifier/Makefile @@ -1,11 +1,16 @@ -include ../Makefile.common +#===-- stp/simplifier/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 = simplifier.cpp bvsolver.cpp -OBJS = $(SRCS:.cpp=.o) +LEVEL=../.. -libsimplifier.a: $(OBJS) - $(AR) rc $@ $^ - $(RANLIB) $@ +LIBRARYNAME=stp_simplifier +DONT_BUILD_RELINKED=1 +BUILD_ARCHIVE=1 -clean: - rm -rf *.o *~ *.a .#* +include $(LEVEL)/Makefile.common |