mirror of
https://github.com/tailix/libclayer.git
synced 2024-11-13 11:04:17 -05:00
20 lines
315 B
Text
20 lines
315 B
Text
# vim: set syntax=automake:
|
|
|
|
AM_CFLAGS = \
|
|
-std=c99 \
|
|
-pedantic \
|
|
-Wall \
|
|
-Wextra \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-D_POSIX_C_SOURCE=200809L
|
|
|
|
if WITH_LIBC
|
|
AM_CFLAGS += \
|
|
-I$(top_builddir)/libc/include \
|
|
-I$(top_srcdir)/libc/include
|
|
endif
|
|
|
|
if ENABLE_WERROR
|
|
AM_CFLAGS += -Werror
|
|
endif
|