From 3e27227b83c2c602237f016f04f2c5fa1e31de87 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Mon, 29 Jul 2019 09:01:55 -0400 Subject: Add sources and compilation guide --- tools/gbafix/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/gbafix/Makefile (limited to 'tools/gbafix/Makefile') diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile new file mode 100644 index 0000000..5b410da --- /dev/null +++ b/tools/gbafix/Makefile @@ -0,0 +1,13 @@ +CC = gcc +.PHONY: all clean + +SRCS = gbafix.c + +all: gbafix + @: + +gbafix: $(SRCS) + $(CC) $(SRCS) -o $@ $(LDFLAGS) + +clean: + $(RM) gbafix gbafix.exe -- cgit v1.2.3