Review #752 » 0001-Build-lexer-in-a-separate-unit-without-AM_CFLAGS.patch
src/Makefile.am | ||
---|---|---|
noinst_LIBRARIES = libbip.a
|
||
noinst_LIBRARIES = libbip.a libbiplex.a
|
||
libbip_a_SOURCES = conf.y lex.l \
|
||
libbiplex_a_SOURCES = \
|
||
conf.y lex.l
|
||
# Not adding AM_CFLAGS here, because many debian flex releases generate code
|
||
# that compares signed and unsigned integers.
|
||
libbiplex_a_CFLAGS = $(OPENSSL_CFLAGS)
|
||
libbip_a_SOURCES = \
|
||
bip.c bip.h \
|
||
connection.c connection.h \
|
||
defaults.h \
|
||
... | ... | |
bip_SOURCES = bip_main.c
|
||
bip_CFLAGS = ${OPENSSL_CFLAGS} $(AM_CFLAGS)
|
||
bip_LDADD = libbip.a ${OPENSSL_LIBS}
|
||
bip_LDADD = libbip.a libbiplex.a ${OPENSSL_LIBS}
|
||
bipmkpw_SOURCES = bipmkpw.c md5.c util.c
|
||
bipmkpw_CFLAGS = ${OPENSSL_CFLAGS} $(AM_CFLAGS)
|
||
bipmkpw_LDADD = libbip.a libbiplex.a $(OPENSSL_LIBS)
|
||
AM_YFLAGS= -d
|
||
BUILT_SOURCES = conf.c conf.h lex.c
|
||
AM_CFLAGS=-Wall -Wextra -Werror -O2 -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fstack-clash-protection -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-z,separate-code -Wpedantic -Wformat=2 -Wformat-overflow=2 -Wformat-truncation=2 -Wformat-security -Wnull-dereference -Wstack-protector -Wtrampolines -Walloca -Wvla -Warray-bounds=2 -Wimplicit-fallthrough=3 -Wtraditional-conversion -Wshift-overflow=2 -Wcast-qual -Wstringop-overflow=4 -Wconversion -Warith-conversion -Wlogical-op -Wduplicated-cond -Wduplicated-branches -Wformat-signedness -Wshadow -Wstrict-overflow=4 -Wundef -Wstrict-prototypes -Wswitch-default -Wswitch-enum -Wstack-usage=1000000 -Wcast-align=strict
|
||
AM_CFLAGS=-Wall -Wextra -Werror -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fstack-clash-protection -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-z,separate-code -Wpedantic -Wformat=2 -Wformat-overflow=2 -Wformat-truncation=2 -Wformat-security -Wnull-dereference -Wstack-protector -Wtrampolines -Walloca -Wvla -Warray-bounds=2 -Wimplicit-fallthrough=3 -Wtraditional-conversion -Wshift-overflow=2 -Wcast-qual -Wstringop-overflow=4 -Wconversion -Warith-conversion -Wlogical-op -Wduplicated-cond -Wduplicated-branches -Wformat-signedness -Wshadow -Wstrict-overflow=4 -Wundef -Wstrict-prototypes -Wswitch-default -Wswitch-enum -Wstack-usage=1000000 -Wcast-align=strict
|