mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
9 lines
102 B
Makefile
9 lines
102 B
Makefile
CC := gcc
|
|
CFLAGS := -O3 -Wall -s
|
|
|
|
elf2dol: elf2dol.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
$(RM) elf2dol
|