-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.am
More file actions
35 lines (26 loc) · 713 Bytes
/
Makefile.am
File metadata and controls
35 lines (26 loc) · 713 Bytes
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
# $Id: Makefile.am,v 1.34 2007/07/21 13:15:06 jscott Exp $
#
## glinegraph toplevel makefile.am
SUBDIRS = src docs/reference
sysconfdir = /etc
datadir = $(prefix)/share
glinegraph_cairodocdir = $(datadir)/doc/glinegraph-cairo
glinegraph_cairodoc_DATA = README.md \
COPYING \
AUTHORS \
INSTALL \
NEWS \
ChangeLog \
images/* \
autogen.sh
EXTRA_DIST = $(glinegraph_cairodoc_DATA) m4 build-aux
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
clean-local:
rm -vf ./*~
# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done