aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-02 13:34:29 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-02 13:34:29 +0100
commitab8d8b26603cbac6e83e742a712b22d6eed550d4 (patch)
treeb9f7f19079d475e771f7f446f9a30f220cc0dab4
parent2326ed83da161a4bd0f15ad1897a04d8a640c34a (diff)
downloadlog-ab8d8b26603cbac6e83e742a712b22d6eed550d4.tar.gz
log-ab8d8b26603cbac6e83e742a712b22d6eed550d4.zip
Add -pedantic parameter and remove -fPIC
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7d154e4..f342347 100644
--- a/Makefile
+++ b/Makefile
@@ -6,8 +6,7 @@ OBJ = ${SRC:.c=.o}
LIBNAME = liblog
-#CFLAGS = -O2 -pipe -Wall -Werror --std=c89 -ansi -pedantic -fPIC
-CFLAGS = -O2 -pipe --std=c89 -ansi -pedantic -fPIC
+CFLAGS = -O2 -pipe -Wall -Werror --std=c89 -ansi -pedantic
LDFLAGS =
${LIBNAME:=.so}: ${OBJ}