summaryrefslogtreecommitdiffstats
path: root/src/utils/indxbib/indxbib.am
blob: d2a7d5a22714247d7e650e9533b060c46d6fcdc7 (plain) (blame)
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
52
53
54
55
56
57
# Copyright (C) 2014-2020 Free Software Foundation, Inc.
#
# This file is part of groff.
#
# groff is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# groff is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

indxbib_srcdir = $(top_srcdir)/src/utils/indxbib
prefixexecbin_PROGRAMS += indxbib
indxbib_SOURCES = \
  src/utils/indxbib/indxbib.cpp \
  src/utils/indxbib/signal.c
src/utils/indxbib/indxbib.$(OBJEXT): defs.h
indxbib_LDADD = libbib.a libgroff.a $(LIBM) lib/libgnu.a
PREFIXMAN1 += src/utils/indxbib/indxbib.1
EXTRA_DIST += \
  src/utils/indxbib/indxbib.1.man \
  src/utils/indxbib/eign

install-data-local: install_indxbib
install_indxbib: $(indxbib_srcdir)/eign
	-test -d $(DESTDIR)$(datadir) \
	  || $(mkinstalldirs) $(DESTDIR)$(datadir)
	-test -d $(DESTDIR)$(dataprogramdir) \
	  || $(mkinstalldirs) $(DESTDIR)$(dataprogramdir)
	-test -d $(DESTDIR)$(datasubdir) \
	  || $(mkinstalldirs) $(DESTDIR)$(datasubdir)
	if test -f /usr/lib/eign; then \
	  rm -f $(DESTDIR)$(common_words_file); \
	  ln -s /usr/lib/eign $(DESTDIR)$(common_words_file) 2>/dev/null \
	    || ln /usr/lib/eign $(DESTDIR)$(common_words_file) 2>/dev/null \
	    || cp /usr/lib/eign $(DESTDIR)$(common_words_file); \
	else \
	  rm -f $(DESTDIR)$(common_words_file); \
	  $(INSTALL_DATA) $(indxbib_srcdir)/eign $(DESTDIR)$(common_words_file); \
	fi

uninstall-local: uninstall_indxbib
uninstall_indxbib:
	rm -f $(DESTDIR)$(common_words_file)


# Local Variables:
# fill-column: 72
# mode: makefile-automake
# End:
# vim: set autoindent filetype=automake textwidth=72: