mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 05:31:06 +00:00
a1527534bb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17594 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
752 B
Makefile
26 lines
752 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 = LLVMexecve
|
|
SHARED_LIBRARY = 1
|
|
DONT_BUILD_RELINKED = 1
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
all:: llee
|
|
|
|
llee: $(LLVMToolDir)/llee
|
|
|
|
$(LLVMToolDir)/llee: Makefile
|
|
$(Echo) Constructing llee shell script
|
|
$(Verb) echo exec env LD_PRELOAD=$(LibDir)/libLLVMexecve$(SHLIBEXT) $$\* > $@
|
|
$(Verb) chmod u+x $@
|
|
|
|
clean::
|
|
$(Verb) rm -f $(LLVMToolDir)/llee
|