3f4a260a54
Largely inspired by https://lwn.net/Articles/584175/ "They must be suitable for every distribution to use." Packagers must define: - ExecStart=/path/to/bip_env.sh - Environment=BIP_DEFAULT_CONFIG='/path/to/default/bip' using a unit file drop-in bip-config.service.d/<distrib>.conf
29 lines
700 B
Makefile
29 lines
700 B
Makefile
bin_PROGRAMS = src/bip src/bipmkpw
|
|
src_bip_SOURCES = src/conf.y src/lex.l \
|
|
src/bip.c src/bip.h \
|
|
src/connection.c src/connection.h \
|
|
src/defaults.h \
|
|
src/irc.c src/irc.h \
|
|
src/line.c src/line.h \
|
|
src/log.c src/log.h \
|
|
src/md5.c src/md5.h \
|
|
src/path_util.c src/path_util.h \
|
|
src/tuple.h \
|
|
src/util.c src/util.h
|
|
src_bipmkpw_SOURCES = src/bipmkpw.c src/md5.c src/util.c
|
|
AM_YFLAGS= -d
|
|
BUILT_SOURCES = src/conf.c src/conf.h src/lex.c
|
|
|
|
AM_CFLAGS=-Wall -Wextra -Werror
|
|
|
|
dist_man_MANS = bip.1 bip.conf.5 bipmkpw.1
|
|
|
|
examplesdir = $(prefix)/share/doc/bip/examples/
|
|
dist_examples_DATA = samples/bip.conf samples/bip.vim
|
|
|
|
EXTRA_DIST = \
|
|
BUGS \
|
|
scripts/bip-release \
|
|
scripts/bipgenconfig \
|
|
systemd
|