File: Makefile.am

package info (click to toggle)
apophenia 1.0%2Bds-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,152 kB
  • sloc: ansic: 19,483; makefile: 378; awk: 124; sh: 105; javascript: 35; sed: 32
file content (42 lines) | stat: -rw-r--r-- 1,094 bytes parent folder | download | duplicates (4)
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
#The programs
bin_PROGRAMS = \
	apop_text_to_db \
	apop_db_to_crosstab \
	apop_plot_query

AM_CFLAGS = \
	-I $(top_srcdir) \
	$(GSL_CFLAGS)

man_MANS = \
	apop_text_to_db.1 \
	apop_db_to_crosstab.1 \
	apop_plot_query.1

LDADD = \
	$(top_builddir)/libapophenia.la \
	$(GSL_LIBS)

AM_H2MFLAGS = \
	--manual="Apophenia" \
	--version-string="$(PACKAGE_VERSION)" \
	--source="Apophenia (Debian $(DEB_PKG_VERSION))" \
	--libtool \
	--no-info

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

## short descriptions inspired from the header of the C source files
apop_text_to_db_DESCRIPTION =     "command line utility to convert a text file into a database table"
apop_db_to_crosstab_DESCRIPTION = "command line utility to convert a three-column table to a crosstab"
apop_plot_query_DESCRIPTION =     "command line utility to take in a query and put out a Gnuplot table file"

CLEANFILES = \
	$(man_MANS)