summaryrefslogtreecommitdiff
path: root/tools/bin2c
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2017-06-10 03:20:02 -0400
committerProjectRevoTPP <projectrevotpp@hotmail.com>2017-06-10 03:20:02 -0400
commit10f798323e88e4cdf8fe881956dd5ad41121e1a3 (patch)
tree3871c3b6abb80424dc77870f1e1ad7ce38a3afe2 /tools/bin2c
parent16fd2ca3856668cd4e7cb5e94d3022ac5edce8a3 (diff)
parentfe13cf593a7c14480de940e413177586cc8eae2e (diff)
finish decompiling player_pc.c
Diffstat (limited to 'tools/bin2c')
-rw-r--r--tools/bin2c/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bin2c/Makefile b/tools/bin2c/Makefile
index eee19af22..bd5f60490 100644
--- a/tools/bin2c/Makefile
+++ b/tools/bin2c/Makefile
@@ -1,13 +1,13 @@
CC = gcc
-CFLAGS = -Wall -Wextra -std=c11 -O2
+CFLAGS = -Wall -Wextra -std=c11 -O2 -s
.PHONY: clean
SRCS = bin2c.c
bin2c: $(SRCS)
- $(CC) $(CFLAGS) $(SRCS) -o $@
+ $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) bin2c bin2c.exe