mirror of
https://github.com/wiiu-env/wiiuhaxx_common.git
synced 2024-12-18 12:11:50 +01:00
11 lines
297 B
Makefile
11 lines
297 B
Makefile
|
DEFINES :=
|
||
|
|
||
|
all:
|
||
|
powerpc-eabi-gcc -x assembler-with-cpp -nostartfiles -nostdlib $(DEFINES) -o wiiuhaxx_loader.elf wiiuhaxx_loader.s
|
||
|
powerpc-eabi-objcopy -O binary wiiuhaxx_loader.elf wiiuhaxx_loader.bin
|
||
|
cp wiiuhaxx_loader.bin $(OUTPATH)
|
||
|
|
||
|
clean:
|
||
|
rm -f wiiuhaxx_loader.elf wiiuhaxx_loader.bin
|
||
|
|