summaryrefslogtreecommitdiff
path: root/make/shared.am
blob: 1fce5417de2e3b2fbc7a8ebe0b12899e4ad51968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# vim: set syntax=automake:

AM_CFLAGS = \
	-std=c99 \
	-pedantic \
	-Wall \
	-Wextra \
	-D_POSIX_C_SOURCE=200809L \
	-I$(top_builddir)/include \
	-I$(top_srcdir)/include

if ENABLE_WERROR
AM_CFLAGS += -Werror
endif