2018-11-12 00:16:14 +01:00
|
|
|
noinst_LIBRARIES = libbip.a
|
|
|
|
|
|
|
|
libbip_a_SOURCES = conf.y lex.l \
|
|
|
|
bip.c bip.h \
|
|
|
|
connection.c connection.h \
|
|
|
|
defaults.h \
|
|
|
|
irc.c irc.h \
|
|
|
|
line.c line.h \
|
|
|
|
log.c log.h \
|
|
|
|
md5.c md5.h \
|
|
|
|
path_util.c path_util.h \
|
|
|
|
tuple.h \
|
|
|
|
util.c util.h
|
|
|
|
|
2018-11-18 21:37:46 +01:00
|
|
|
libbip_a_CFLAGS = ${OPENSSL_CFLAGS}
|
|
|
|
|
2018-11-12 00:16:14 +01:00
|
|
|
bin_PROGRAMS = bip bipmkpw
|
|
|
|
|
|
|
|
bip_SOURCES = bip_main.c
|
2018-12-09 20:04:43 +01:00
|
|
|
bip_CFLAGS = ${OPENSSL_CFLAGS}
|
2018-11-18 21:37:46 +01:00
|
|
|
bip_LDADD = libbip.a ${OPENSSL_LIBS}
|
|
|
|
|
2018-11-12 00:16:14 +01:00
|
|
|
|
|
|
|
bipmkpw_SOURCES = bipmkpw.c md5.c util.c
|
2018-12-09 20:04:43 +01:00
|
|
|
bipmkpw_CFLAGS = ${OPENSSL_CFLAGS}
|
2018-11-12 00:16:14 +01:00
|
|
|
AM_YFLAGS= -d
|
|
|
|
BUILT_SOURCES = conf.c conf.h lex.c
|
2018-12-11 11:12:08 +01:00
|
|
|
|
|
|
|
AM_CFLAGS=-Wall -Wextra -Werror
|