pokeemerald/tools/gbafix/Makefile

11 lines
122 B
Makefile
Raw Normal View History

2018-08-30 06:08:57 +02:00
CC = gcc
.PHONY: clean
SRCS = gbafix.c
gbafix: $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) gbafix gbafix.exe