source: git/Makefile.am @ 148c3f7

fieker-DuValspielwiese
Last change on this file since 148c3f7 was 3259d7, checked in by Michael Orlitzky <michael@…>, 3 years ago
**/*: rename singular.hlp to singular.info. The help file presently named "singular.hlp" is intended to be read with GNU Info, which looks for an extension of ".info" by default. Thus, at the moment, one must run "info singular.hlp" to read the installed file, whereas "info singular" is more natural. This commit replaces "singular.hlp" with "singular.info" throughout the source tree so that the file ultimately has the name that GNU Info or Emacs expect. Closes: https://github.com/Singular/Singular/issues/1107
  • Property mode set to 100644
File size: 955 bytes
Line 
1ACLOCAL_AMFLAGS = -I m4
2
3SUBDIRS = resources omalloc factory \
4libpolys gfanlib IntegerProgramming \
5kernel Singular \
6dox emacs redhat desktop
7
8DIST_SUBDIRS = $(SUBDIRS) doc
9if ENABLE_DOC_BUILD
10SUBDIRS += doc
11endif
12
13EXTRA_DIST = README README.md README.pkg autogen.sh doxy redhat/singular.spec.in GPL2 GPL3
14
15bin_SCRIPTS = libsingular-config
16
17install-data-local:
18        if test -e $(srcdir)/doc/doc.tbz2; then\
19          (cat ${top_srcdir}/doc/doc.tbz2| (cd $(DESTDIR)$(datadir)/singular; tar -jx --no-same-owner -f -));\
20           mkdir $(DESTDIR)$(datadir)/info;\
21           mkdir $(DESTDIR)$(datadir)/doc;\
22           mv  $(DESTDIR)$(datadir)/singular/singular.info  $(DESTDIR)$(datadir)/info/.;\
23        fi
24
25uninstall-local:
26        -(cd $(DESTDIR)$(datadir); rm -rf singular info/singular.info)
27
28configheaderdir = ${includedir}/singular
29nodist_configheader_HEADERS = singularconfig.h
30DISTCLEANFILES = $(nodist_configheader_HEADERS)
31
32pkgconfigdir = $(libdir)/pkgconfig
33pkgconfig_DATA = Singular.pc
Note: See TracBrowser for help on using the repository browser.