mirror of
https://github.com/wiiu-env/libfunctionpatcher.git
synced 2024-11-21 17:19:19 +01:00
Create a .ld file
This commit is contained in:
parent
562ad7ec83
commit
3022c8cd1d
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ lib/
|
|||||||
CMakeLists.txt
|
CMakeLists.txt
|
||||||
.idea/
|
.idea/
|
||||||
cmake-build-debug/
|
cmake-build-debug/
|
||||||
|
share/libfunctionpatcher.ld
|
||||||
|
12
Makefile
12
Makefile
@ -99,10 +99,10 @@ export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|||||||
.PHONY: all dist-bin dist-src dist install clean
|
.PHONY: all dist-bin dist-src dist install clean
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
all: lib/libfunctionpatcher.a
|
all: lib/libfunctionpatcher.a share/libfunctionpatcher.ld
|
||||||
|
|
||||||
dist-bin: all
|
dist-bin: all
|
||||||
@tar --exclude=*~ -cjf libfunctionpatcher-$(VERSION).tar.bz2 include lib
|
@tar --exclude=*~ -cjf libfunctionpatcher-$(VERSION).tar.bz2 include lib share
|
||||||
|
|
||||||
dist-src:
|
dist-src:
|
||||||
@tar --exclude=*~ -cjf libfunctionpatcher-src-$(VERSION).tar.bz2 include source Makefile
|
@tar --exclude=*~ -cjf libfunctionpatcher-src-$(VERSION).tar.bz2 include source Makefile
|
||||||
@ -116,9 +116,15 @@ install: dist-bin
|
|||||||
lib:
|
lib:
|
||||||
@[ -d $@ ] || mkdir -p $@
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
|
||||||
|
share:
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@[ -d $@ ] || mkdir -p $@
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
|
||||||
|
share/libfunctionpatcher.ld :$(SOURCES) $(INCLUDES) | share release
|
||||||
|
mv $(CURDIR)/release/*.ld $(CURDIR)/$@
|
||||||
|
|
||||||
lib/libfunctionpatcher.a :$(SOURCES) $(INCLUDES) | lib release
|
lib/libfunctionpatcher.a :$(SOURCES) $(INCLUDES) | lib release
|
||||||
@$(MAKE) BUILD=release OUTPUT=$(CURDIR)/$@ \
|
@$(MAKE) BUILD=release OUTPUT=$(CURDIR)/$@ \
|
||||||
BUILD_CFLAGS="-DNDEBUG=1 -O2 -s" \
|
BUILD_CFLAGS="-DNDEBUG=1 -O2 -s" \
|
||||||
@ -146,7 +152,7 @@ $(OFILES_SRC) : $(HFILES)
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
%.o: %.def
|
%.o: %.def
|
||||||
$(SILENTMSG) $(notdir $<)
|
$(SILENTMSG) $(notdir $<)
|
||||||
$(SILENTCMD)rplimportgen $< $*.s --forceSingleSection $(ERROR_FILTER)
|
$(SILENTCMD)rplimportgen $< $*.s $*.ld $(ERROR_FILTER)
|
||||||
$(SILENTCMD)$(CC) -x assembler-with-cpp $(ASFLAGS) -c $*.s -o $@ $(ERROR_FILTER)
|
$(SILENTCMD)$(CC) -x assembler-with-cpp $(ASFLAGS) -c $*.s -o $@ $(ERROR_FILTER)
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user