From 043d021a93af1b8967b0b8a2ca9683efbba63480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemens=20Sch=C3=B6lhorn?= Date: Wed, 21 Feb 2018 17:51:43 +0100 Subject: [PATCH] Compile statically and optimize for size --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 642bae4..5048f6b 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ #-------------Makro-Part------------------ CC = gcc -CFLAGS = -Wall -pedantic -std=c99 -LDFLAGs = +CFLAGS = -Os -Wall -pedantic -std=c99 +LDFLAGS = -static DEBUG = -DNDEBUG