mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
2e1fbdd267
* 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8751 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
283 B
Makefile
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
|