Track tools

This commit is contained in:
PikalaxALT
2018-12-20 20:43:40 -05:00
parent 7f5addc626
commit d141011e7f
94 changed files with 12602 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
CC = gcc
.PHONY: clean
SRCS = gbafix.c
gbafix: $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) gbafix gbafix.exe