diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-05 22:38:53 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-05 22:38:53 +0000 |
commit | 450eae13bfd668ebd938218c0687213fcba8dd13 (patch) | |
tree | 0856ef807ece455b448c9458fc60f03997e46969 /tools/klee-stats/Makefile | |
parent | f23940669cb73c63560f2ede9ee677c50a8a3e27 (diff) | |
download | klee-450eae13bfd668ebd938218c0687213fcba8dd13.tar.gz |
Moved PrintStats.py to tool/klee-stats/
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/klee-stats/Makefile')
-rw-r--r-- | tools/klee-stats/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/tools/klee-stats/Makefile b/tools/klee-stats/Makefile new file mode 100644 index 00000000..a1eba234 --- /dev/null +++ b/tools/klee-stats/Makefile @@ -0,0 +1,46 @@ +#===-- tools/klee-stats/Makefile -----------------------*- Makefile -*--===# +# +# The KLEE Symbolic Virtual Machine +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# + +LEVEL = ../.. + +TOOLSCRIPTNAME := klee-stats + +include $(LEVEL)/Makefile.common + +# FIXME: Move this stuff (to "build" a script) into Makefile.rules. + +ToolBuildPath := $(ToolDir)/$(TOOLSCRIPTNAME) + +all-local:: $(ToolBuildPath) + +$(ToolBuildPath): $(ToolDir)/.dir + +$(ToolBuildPath): $(TOOLSCRIPTNAME) + $(Echo) Copying $(BuildMode) script $(TOOLSCRIPTNAME) + $(Verb) $(CP) -f $(TOOLSCRIPTNAME) "$@" + $(Verb) chmod 0755 "$@" + +ifdef NO_INSTALL +install-local:: + $(Echo) Install circumvented with NO_INSTALL +uninstall-local:: + $(Echo) Uninstall circumvented with NO_INSTALL +else +DestTool = $(PROJ_bindir)/$(TOOLSCRIPTNAME) + +install-local:: $(DestTool) + +$(DestTool): $(ToolBuildPath) $(PROJ_bindir) + $(Echo) Installing $(BuildMode) $(DestTool) + $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool) + +uninstall-local:: + $(Echo) Uninstalling $(BuildMode) $(DestTool) + -$(Verb) $(RM) -f $(DestTool) +endif |