diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
commit | cc5db41f30708c1cc2d33a46879c96a9404764a3 (patch) | |
tree | d59ba2fd880b8eb47ab7e1a5885d067b028598ff /tools/gbafix | |
parent | aad94c34334ee44f1298175df38f14dc27ae5fb8 (diff) |
Revert multiple source change commits for rebase.
Diffstat (limited to 'tools/gbafix')
-rw-r--r-- | tools/gbafix/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/gbafix/Makefile b/tools/gbafix/Makefile index efb016c97..91a60a9e4 100644 --- a/tools/gbafix/Makefile +++ b/tools/gbafix/Makefile @@ -3,16 +3,10 @@ CC ?= gcc SRCS = gbafix.c -ifeq ($(OS),Windows_NT) -EXE := .exe -else -EXE := -endif - -all: gbafix$(EXE) +all: gbafix @: -gbafix$(EXE): $(SRCS) +gbafix: $(SRCS) $(CC) $(SRCS) -o $@ $(LDFLAGS) clean: |