diff options
Diffstat (limited to 'stp/c_interface/Makefile')
-rw-r--r-- | stp/c_interface/Makefile | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/stp/c_interface/Makefile b/stp/c_interface/Makefile index cf6b09d1..3082f715 100644 --- a/stp/c_interface/Makefile +++ b/stp/c_interface/Makefile @@ -1,13 +1,16 @@ -include ../Makefile.common +#===-- stp/c_interface/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 = c_interface.cpp -OBJS = $(SRCS:.cpp=.o) +LEVEL=../.. -libcinterface.a: $(OBJS) - $(AR) rc $@ $^ - $(RANLIB) $@ +LIBRARYNAME=stp_c_interface +DONT_BUILD_RELINKED=1 +BUILD_ARCHIVE=1 -clean: - rm -rf *.o *~ *.a .#* - -c_interface.o: c_interface.h +include $(LEVEL)/Makefile.common |