summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-06-24 16:42:44 -0400
committeryenatch <yenatch@gmail.com>2017-06-24 16:42:44 -0400
commit80f7477c3343517a96c6effcaf96f40c38f8f4d7 (patch)
tree9ff8d6658e38ecd4bde88f819fff3e0a8a5cc327 /tools/Makefile
parent9b1550c5e0abf20da5c7043c3ac49260fac79147 (diff)
Fix tools/gfx
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 9e40bcd27..57a4d84ce 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -1,5 +1,7 @@
.PHONY: all
+CFLAGS := -std=c99
+
all: \
lzcomp \
png_dimensions \
@@ -11,4 +13,4 @@ all: \
@:
%: %.c
- $(CC) -o $@ $<
+ $(CC) $(CFLAGS) -o $@ $<