mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
eab43d86fb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15502 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
673 B
Makefile
24 lines
673 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)/libexecve$(SHLIBEXT) $$\* > $@
|
|
chmod u+x $@
|
|
|
|
clean::
|
|
rm -f $(DESTTOOLCURRENT)/llee
|