1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/tools/llee/Makefile
Misha Brukman 488440afc8 * Added an interface for how LLEE would communicate with the OS
* Implemented the interface in StorageProxy.c
* Removed the script `llee' as it is now created by the Makefile
* Makefile now compiles a shared object version of the library, but only if
  using gcc-3.3, linking fails under gcc-3.2

llvm-svn: 8751
2003-09-29 22:37:00 +00:00

16 lines
283 B
Makefile

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.so $$\* > $@
chmod u+x $@
clean::
rm -f $(DESTTOOLCURRENT)/llee