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:
parent
e6f9225b32
commit
e3afde92f9
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue