mirror of
https://github.com/projectPiki/pikmin2.git
synced 2025-01-20 21:14:44 +00:00
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
|