-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
51 lines (41 loc) · 1.2 KB
/
Makefile.am
File metadata and controls
51 lines (41 loc) · 1.2 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- mode: makefile; -*-
SUBDIRS = bin src cpan docker release-notes .
# The ACLOCAL_AMFLAGS are used by 'autoreconf' and by the Makefile
# rebuild rule when they need to run 'aclocal'.
ACLOCAL_AMFLAGS = -I autotools
########################################################################
# RPM installation only (website build)
#
# just in case the session directory has not been created
apache_session_DATA =
#
bedrockdir = $(apache_default_htdocsdir)/bedrock
bedrock_DATA =
########################################################################
FILES = \
AUTHORS \
bedrock-build \
BUGS \
INSTALL \
NEWS \
README.md \
README-Apache.md \
COPYING \
ChangeLog \
TODO.md
docdir = $(datadir)/bedrock/doc
dist_doc_DATA = $(FILES)
## ensure that these files make it into the distribution tarball
EXTRA_DIST = \
bedrock.spec
MAINTAINERCLEANFILES = config.status \
config.log \
bedrock.spec \
$(PACKAGE)-$(VERSION).tar.gz \
*~
DISTCHECK_CONFIGURE_FLAGS = --enable-distcheck-hack
include version.mk
clean-local:
for a in $$(ls bedrock*.tar.gz 2>/dev/null); do \
rm -f $$a; \
done