1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-17 15:45:32 -05:00

Main: fix CFLAGS

This commit is contained in:
Alex Kotov 2022-02-02 08:28:19 +05:00
parent f8ebbbebf0
commit f96f177a68
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -36,6 +36,12 @@ TESTS = \
examples/panic_simple
endif
if ENABLE_PIC
AM_CFLAGS += -fpic
else
AM_CFLAGS += -fno-pic
endif
if ENABLE_WERROR
AM_CFLAGS += -Werror
endif