From 7c13e810fc6a5fb4022a12a16789161ffd028364 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 21 Aug 2013 18:20:52 +0200 Subject: [PATCH] add -Os flag to makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 96a2291fa..1e400c8fb 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -CC = gcc -CFLAGS = -Wall -OBJS = aux.o ecdsa.o secp256k1.o sha256.o rand.o +CC = gcc +CFLAGS = -Wall -Os +OBJS = aux.o ecdsa.o secp256k1.o sha256.o rand.o all: test-speed test-verify