commit 118cc008fe0d8f11ec9d0acf55962c003472fb3b parent cea8ec5e7f3299a919043b1ad12c1caa295fd8fc Author: Antoine Amarilli <a3nm@a3nm.net> Date: Mon, 24 Sep 2012 17:28:11 +0200 fix Makefile Diffstat:
Makefile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,11 +1,11 @@ CC = gcc -CFLAGS = -Wall -Wno-unused-but-set-variable -g -DENABLE_THREADS -D_REENTRANT +CFLAGS = -Wall -Wno-unused-but-set-variable -O2 -DENABLE_THREADS -D_REENTRANT LIBS = -lpthread -lnsl -lircclient #-lssl all: irctk irctk: irctk.c - $(CC) $(CFLAGS) $(LIBS) -o irctk irctk.c + $(CC) $(CFLAGS) -o irctk irctk.c $(LIBS) clean: -rm -f irctk *.o