File: Makefile.am

package info (click to toggle)
libpipeline 1.5.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,048 kB
  • sloc: ansic: 34,415; sh: 5,519; makefile: 168
file content (102 lines) | stat: -rw-r--r-- 2,574 bytes parent folder | download | duplicates (5)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
## Process this file with automake to produce Makefile.in

## Copyright (C) 2010-2017 Colin Watson.
##
## This file is part of libpipeline.
##
## libpipeline 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 2 of the License, or (at
## your option) any later version.
##
## libpipeline 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 libpipeline; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
## USA

dist_man3_MANS = libpipeline.3

FUNCTIONS = \
	pipecmd_new \
	pipecmd_new_argv \
	pipecmd_new_args \
	pipecmd_new_argstr \
	pipecmd_new_function \
	pipecmd_new_sequencev \
	pipecmd_new_sequence \
	pipecmd_new_passthrough \
	pipecmd_dup \
	pipecmd_arg \
	pipecmd_argf \
	pipecmd_argv \
	pipecmd_args \
	pipecmd_argstr \
	pipecmd_get_nargs \
	pipecmd_nice \
	pipecmd_discard_err \
	pipecmd_chdir \
	pipecmd_fchdir \
	pipecmd_setenv \
	pipecmd_unsetenv \
	pipecmd_clearenv \
	pipecmd_pre_exec \
	pipecmd_sequence_command \
	pipecmd_dump \
	pipecmd_tostring \
	pipecmd_exec \
	pipecmd_free \
	pipeline_new \
	pipeline_new_commandv \
	pipeline_new_commands \
	pipeline_new_command_argv \
	pipeline_new_command_args \
	pipeline_join \
	pipeline_connect \
	pipeline_command \
	pipeline_command_argv \
	pipeline_command_args \
	pipeline_command_argstr \
	pipeline_commandv \
	pipeline_commands \
	pipeline_want_in \
	pipeline_want_out \
	pipeline_want_infile \
	pipeline_want_outfile \
	pipeline_ignore_signals \
	pipeline_get_ncommands \
	pipeline_get_command \
	pipeline_set_command \
	pipeline_get_pid \
	pipeline_get_infile \
	pipeline_get_outfile \
	pipeline_dump \
	pipeline_tostring \
	pipeline_free \
	pipeline_install_post_fork \
	pipeline_start \
	pipeline_wait_all \
	pipeline_wait \
	pipeline_run \
	pipeline_pump \
	pipeline_read \
	pipeline_peek \
	pipeline_peek_size \
	pipeline_peek_skip \
	pipeline_readline \
	pipeline_peekline

install-data-hook:
	set -e; cd "$(DESTDIR)$(man3dir)"; for function in $(FUNCTIONS); do \
		rm -f $$function.3; \
		$(LN_S) libpipeline.3 $$function.3; \
	done

uninstall-hook:
	set -e; cd "$(DESTDIR)$(man3dir)"; for function in $(FUNCTIONS); do \
		rm -f $$function.3; \
	done