diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-10-03 17:55:16 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-10-03 18:00:08 -0500 |
commit | 09b8f4c09e69a2359cdf5e4497b97aca3746b8b1 (patch) | |
tree | 2a5f838839c6c962830d6e34c1399918cecc4a0c /tools | |
parent | f2f28382c4ad2b283d485f70b28d14317d58c997 (diff) |
Fix build
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gbafix/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile index f12c8cc4f..350af76cd 100644 --- a/tools/gbafix/Makefile +++ b/tools/gbafix/Makefile @@ -1,8 +1,12 @@ CC = gcc -.PHONY: clean SRCS = gbafix.c +.PHONY: all clean + +all: gbafix + @: + gbafix: $(SRCS) $(CC) $(SRCS) -o $@ $(LDFLAGS) |