From 5a2a5804ab924ea419b0d213513002de6499628d Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 31 Jan 2016 17:53:08 -0600 Subject: Switch to C99, optimize for size --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d091e68..1751acd 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS = -D_POSIX_C_SOURCE=200809L -O2 -Wall +CFLAGS = -D_POSIX_C_SOURCE=200809L -std=c99 -Os -Wall SRCS = $(sort $(wildcard *.c)) OBJS = $(SRCS:.c=.o) -- cgit v1.2.3