2018-12-09 21:08:58 +01:00
|
|
|
if COND_WANT_TESTS
|
|
|
|
MAYBE_TESTS = tests
|
|
|
|
endif
|
|
|
|
SUBDIRS = src . $(MAYBE_TESTS)
|
2009-08-24 21:26:46 +02:00
|
|
|
|
2022-03-20 11:39:06 +01:00
|
|
|
dist_man_MANS = bip.1 bip.conf.5 bipmkpw.1 bipgenconfig.1
|
2009-08-24 21:26:46 +02:00
|
|
|
|
|
|
|
examplesdir = $(prefix)/share/doc/bip/examples/
|
2011-09-13 04:55:17 +02:00
|
|
|
dist_examples_DATA = samples/bip.conf samples/bip.vim
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
BUGS \
|
|
|
|
scripts/bip-release \
|
2017-02-15 16:03:15 +01:00
|
|
|
scripts/bipgenconfig \
|
|
|
|
systemd
|
2022-01-12 21:48:43 +01:00
|
|
|
|
|
|
|
lint:
|
|
|
|
find src/ tests/ \( -name *.c -o -name *.h \) -type f -print0 | xargs -0 clang-format -i
|