File: Makefile.am

package info (click to toggle)
singular 1%3A4.1.1-p2%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 35,856 kB
  • sloc: cpp: 288,280; ansic: 17,387; lisp: 4,242; yacc: 1,654; python: 1,608; makefile: 1,424; lex: 1,387; perl: 632; sh: 567; xml: 182
file content (32 lines) | stat: -rw-r--r-- 812 bytes parent folder | download | duplicates (7)
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
ACLOCAL_AMFLAGS = -I ../m4

bin_SCRIPTS = libpolys-config

man_MANS = libpolys-config.1

AM_H2MFLAGS = \
	--manual="CAS Singular" \
	--source="Singular" \
	--libtool \
	--no-info

## short descriptions for manpages
libpolys_config_DESCRIPTION = "get information about installed Singular polynomial library"

SUBDIRS=misc reporter coeffs polys tests

configheaderdir = ${includedir}/$(DEB_HOST_MULTIARCH)/singular/singular
nodist_configheader_HEADERS = libpolysconfig.h
DISTCLEANFILES = $(nodist_configheader_HEADERS)

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = singular-libpolys.pc

%.1: %
	$(HELP2MAN) \
			-s 1 \
			$(AM_H2MFLAGS) \
			-I $(top_srcdir)/man/$*.h2m \
			-n $(if $($(subst -,_,$*)_DESCRIPTION), $($(subst -,_,$*)_DESCRIPTION), "manual page for $*") \
			-o $@ \
		$(abs_top_builddir)/$<