pikmin2/tools/Makefile
Nerdu 507f5d6e87 Add makefile for elf2dol, Edit asmdiff.sh, Add patch_linker.sh
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.
2021-10-04 10:10:08 -04:00

9 lines
101 B
Makefile

CC := cc
CFLAGS := -O3 -Wall -s
elf2dol: elf2dol.c
$(CC) $(CFLAGS) -o $@ $^
clean:
$(RM) elf2dol