pmd-sky/tools/fixrom/Makefile
AnonymousRandomPerson 608e361e57 Initialized base repo
2023-06-28 23:35:19 -04:00

14 lines
137 B
Makefile

CC := gcc
CFLAGS := -O3
.PHONY: all clean
all: fixrom
@:
fixrom: fixrom.c
$(CC) $(CFLAGS) -o $@ $^
clean:
$(RM) fixrom fixrom.exe