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

Right place for CFLAGS

This commit is contained in:
Alex Kotov 2020-12-06 11:51:11 +05:00
parent e6f9225b32
commit e3afde92f9
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 7 additions and 2 deletions

View file

@ -6,6 +6,6 @@ compiler:
script:
- ./autogen.sh
- ./configure CFLAGS='-Werror -Wno-gnu-variable-sized-type-not-at-end'
- ./configure CFLAGS='-Werror'
- make
- make check

View file

@ -1,6 +1,11 @@
SUBDIRS = include
AM_CFLAGS = -std=c99 -Wall -Wextra -I$(top_srcdir)/include
AM_CFLAGS = \
-std=c99 \
-Wall \
-Wextra \
-Wno-gnu-variable-sized-type-not-at-end \
-I$(top_srcdir)/include
lib_LIBRARIES = libkernaux.a