mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 15:24:30 -04: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
|