diff options
Diffstat (limited to 'tools/gbafix/Makefile')
-rw-r--r-- | tools/gbafix/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile index f12c8cc..91a60a9 100644 --- a/tools/gbafix/Makefile +++ b/tools/gbafix/Makefile @@ -1,8 +1,11 @@ -CC = gcc -.PHONY: clean +CC ?= gcc +.PHONY: all clean SRCS = gbafix.c +all: gbafix + @: + gbafix: $(SRCS) $(CC) $(SRCS) -o $@ $(LDFLAGS) |