blob: ed65ae410a8308c84e981892b8704b912dbf9c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
ACLOCAL_AMFLAGS = -I m4
pkgconfdir = $(libdir)/pkgconfig
pkgconf_DATA = libvisio-@VSD_MAJOR_VERSION@.@VSD_MINOR_VERSION@.pc
SUBDIRS = src build docs
EXTRA_DIST = \
AUTHORS \
COPYING.GPL \
COPYING.LGPL \
COPYING.MPL \
NEWS \
README \
autogen.sh \
libvisio-@VSD_MAJOR_VERSION@.@VSD_MINOR_VERSION@.pc.in \
libvisio-zip.in \
libvisio.spec \
libvisio.spec.in
distclean-local:
rm -rf *.cache *~
rpm: dist
rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
@rm -f $(PACKAGE)-$(VERSION).tar.gz
zip: all install
sh libvisio-zip
dist-hook:
git log --date=short --pretty="format:@%cd %an <%ae> [%H]%n%n%s%n%n%e%b" | sed -e "s|^\([^@]\)|\t\1|" -e "s|^@||" >$(distdir)/ChangeLog
|