From 51893666a5c88bdb1281abeaeaa8713c99752e01 Mon Sep 17 00:00:00 2001 From: "S.J.R. van Schaik" Date: Mon, 15 May 2017 16:34:51 +0200 Subject: [PATCH] make: optimise for size --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 156223b..53cc0f8 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,8 @@ all: $(BUILD)/tbm CFLAGS += -Iinclude CFLAGS += -Wall -Wundef -Wextra -Wshadow -Wimplicit-function-declaration CFLAGS += -Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes +CFLAGS += -Os +LDFLAGS += -Os obj-y += source/bitops.o obj-y += source/bitset.o