mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
3a994220ad
every file. llvm-svn: 10976
24 lines
670 B
Makefile
24 lines
670 B
Makefile
##===- 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: $(DESTTOOLCURRENT)/llee
|
|
|
|
$(DESTTOOLCURRENT)/llee: Makefile
|
|
echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/execve$(SHLIBEXT) $$\* > $@
|
|
chmod u+x $@
|
|
|
|
clean::
|
|
rm -f $(DESTTOOLCURRENT)/llee
|