From f76318c1fc606df947682794f4d85908dd8f3f39 Mon Sep 17 00:00:00 2001 From: nisstyre56 Date: Wed, 9 Jul 2014 02:47:56 -0400 Subject: [PATCH] fix copy/paste mistake --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 55a13b7..a81c10d 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ schreammake: tokenize.c - gcc -DNDEBUG -c -fPIC -O$1 -Wall -Wextra -pedantic -Wpointer-arith -Werror --std=c99 ./tokenize.c; + gcc -DNDEBUG -c -fPIC -O3 -Wall -Wextra -pedantic -Wpointer-arith -Werror --std=c99 ./tokenize.c; gcc -lmaa -shared -o tokenize.so tokenize.o;