mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 23:30:27 +00:00
507f5d6e87
Elf2dol now compiles when you run make, patch_linker.sh is ran from the makefile to make the needed changes to the 2.7 linker(confirmed to work on Windows, will likely work on Linux as well). asmdiff.sh now points to the correct build version.
9 lines
101 B
Makefile
9 lines
101 B
Makefile
CC := cc
|
|
CFLAGS := -O3 -Wall -s
|
|
|
|
elf2dol: elf2dol.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
$(RM) elf2dol
|