diff options
author | 2023-02-02 13:34:29 +0100 | |
---|---|---|
committer | 2023-02-02 13:34:29 +0100 | |
commit | ab8d8b26603cbac6e83e742a712b22d6eed550d4 (patch) | |
tree | b9f7f19079d475e771f7f446f9a30f220cc0dab4 | |
parent | 2326ed83da161a4bd0f15ad1897a04d8a640c34a (diff) | |
download | log-ab8d8b26603cbac6e83e742a712b22d6eed550d4.tar.gz log-ab8d8b26603cbac6e83e742a712b22d6eed550d4.zip |
Add -pedantic parameter and remove -fPIC
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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} |