11 lines
122 B
Makefile
Raw Normal View History

2018-08-29 23:08:57 -05:00
CC = gcc
.PHONY: clean
SRCS = gbafix.c
gbafix: $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) gbafix gbafix.exe