diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-08-01 21:04:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 21:04:28 -0400 |
commit | 201418cd4d3e0c96b8f7f99e6242f2a08b5041b7 (patch) | |
tree | 57cbe7905db69e8f7e88327c0d665b49f2dd67fb /tools/gbafix | |
parent | 00cf527c16d02fc912666d97a49dc7fedf996225 (diff) | |
parent | 6032159d1bc099d4ed112e5e387ebba1d35fe6a9 (diff) |
Merge pull request #87 from PikalaxALT/title_screen
Title screen
Diffstat (limited to 'tools/gbafix')
-rw-r--r-- | tools/gbafix/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile index f12c8cc4f..5b410da08 100644 --- a/tools/gbafix/Makefile +++ b/tools/gbafix/Makefile @@ -1,8 +1,11 @@ CC = gcc -.PHONY: clean +.PHONY: all clean SRCS = gbafix.c +all: gbafix + @: + gbafix: $(SRCS) $(CC) $(SRCS) -o $@ $(LDFLAGS) |