mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 21:43:08 +00:00
be7ce4110e
This reverts commit e96515433d
.
24 lines
612 B
Makefile
24 lines
612 B
Makefile
SUBDIRS = include src test tools config doc
|
|
EXTRA_DIST = autogen.sh configitems README.md VERSION requirements.json
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in aclocal.m4 config.h.in config.log configure stamp-h.in
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libpqxx.pc
|
|
|
|
TESTS = tools/lint
|
|
|
|
|
|
# Generate ChangeLog from git history. It goes all the way back through
|
|
# the project's git, bzr, svn, and cvs days.
|
|
dist-hook: ChangeLog
|
|
|
|
ChangeLog: configure.ac
|
|
git log --stat --name-only --date=short --abbrev-commit >$@
|
|
|
|
|
|
# We use README.md, but automake expects plain README.
|
|
README: README.md
|
|
ln -s $< $@
|