mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-18 16:04:34 +00:00
3d8eccf9dc
* COPYING: Of course we know the licence we want to use now :-) * COPYING-GPLV3: Add the text of GPLv3. * Makefile.am: Add the file COPYING-GPLV3 above to source distribution. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
29 lines
642 B
Makefile
29 lines
642 B
Makefile
SUBDIRS = include src tools tests doc
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
headers = config.h
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = $(srcdir)/abigail.m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libabigail.pc
|
|
|
|
EXTRA_DIST = \
|
|
README COPYING ChangeLog \
|
|
COPYING-LGPLV2 COPYING-LGPLV3 \
|
|
COPYING-GPLV3 gen-changelog.py \
|
|
$(headers) $(m4data_DATA) \
|
|
libabigail.pc.in
|
|
|
|
update-changelog:
|
|
python $(srcdir)/gen-changelog.py > $(srcdir)/ChangeLog
|
|
|
|
RELEASED_BRANCH = master
|
|
tag-release-only:
|
|
git tag -m "$(PACKAGE_NAME) release $(VERSION)" \
|
|
"$(PACKAGE_NAME)-$(VERSION)" $(RELEASED_BRANCH)
|
|
|
|
tag-release: tag-release-only
|
|
|
|
|