hanchenye-llvm-project/llvm/tools/llee/Makefile

25 lines
710 B
Makefile
Raw Normal View History

##===- tools/llee/Makefile ---------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
# This file was developed by the LLVM research group and is distributed under
# the University of Illinois Open Source License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LEVEL = ../..
LIBRARYNAME = execve
SHARED_LIBRARY = 1
include $(LEVEL)/Makefile.common
all:: llee
llee: $(TOOLDIR)/llee
$(TOOLDIR)/llee: Makefile
2004-10-24 03:49:20 +08:00
@$(ECHO) Constructing llee shell script
$(VERB) echo exec env LD_PRELOAD=$(TOOLDIR)/libexecve$(SHLIBEXT) $$\* > $@
$(VERB) chmod u+x $@
clean::
2004-10-24 03:49:20 +08:00
$(VERB) rm -f $(TOOLDIR)/llee