19 lines
417 B
Makefile
19 lines
417 B
Makefile
if COND_WANT_TESTS
|
|
MAYBE_TESTS = tests
|
|
endif
|
|
SUBDIRS = src . $(MAYBE_TESTS)
|
|
|
|
dist_man_MANS = bip.1 bip.conf.5 bipmkpw.1 bipgenconfig.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
|
|
|
|
lint:
|
|
find src/ tests/ \( -name *.c -o -name *.h \) -type f -print0 | xargs -0 clang-format -i
|