blob: ce4816d94dc718f4bf56ea315572d88863f6551d (
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
35
36
37
38
39
40
41
|
# Nils Freydank <holgersson@posteo.de> (2020-01-08)
Avoid auto installation of files we install later manually.
Adopted from asturm's patch for mdds-1.4.3.
diff --git a/Makefile.am b/Makefile.am
index 9b69455b..010c7826 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,7 +7,6 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/test/include \
$(CXXFLAGS_UNITTESTS)
-dist_doc_DATA = AUTHORS README.md
nodist_pkgconf_DATA = misc/mdds-@API_VERSION@.pc
DISTCLEANFILES = \
@@ -15,8 +14,6 @@ DISTCLEANFILES = \
EXTRA_DIST = \
autogen.sh \
- CHANGELOG \
- LICENSE \
doc/_static/images/fst-example1-initial.svg \
doc/_static/images/fst-example1-insert1.svg \
doc/_static/images/fst-example1-insert2.svg \
@@ -95,14 +92,6 @@ EXTRA_DIST = \
misc/sorted_string_data.dat \
misc/sorted_string_map_perf.cpp
-install-data-local:
- $(MKDIR_P) $(DESTDIR)$(docdir)
- $(INSTALL_DATA) $(top_srcdir)/LICENSE $(DESTDIR)$(docdir)/COPYING
- $(INSTALL_DATA) $(top_srcdir)/CHANGELOG $(DESTDIR)$(docdir)/NEWS
-
-uninstall-local:
- rm -f $(DESTDIR)$(docdir)/COPYING $(DESTDIR)$(docdir)/NEWS
-
if BUILD_DOCS
doc-doxygen:
|