File: Makefile.am

package info (click to toggle)
roy 1.0.8-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,316 kB
  • ctags: 1,564
  • sloc: ansic: 14,459; sh: 8,259; makefile: 322
file content (152 lines) | stat: -rw-r--r-- 3,717 bytes parent folder | download
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
## Process this file with automake to produce Makefile.in

pod_MANS = \
rarray.3                \
rarray_append.3         \
rarray_last.3           \
rarray_len.3            \
rarray_new.3            \
rarray_pop.3            \
rbhash.3                \
rbhash_entry_getkey.3   \
rbhash_free.3           \
rbhash_insert.3         \
rbhash_len.3            \
rbhash_lookup.3         \
rbhash_new.3            \
rbhash_remove.3         \
rbhash_remove_entry.3   \
rbucket.3               \
rbuf.3                  \
rbuf_append.3           \
rbuf_auto.3             \
rbuf_down.3             \
rbuf_empty.3            \
rbuf_equal.3            \
rbuf_erase.3            \
rbuf_free.3             \
rbuf_hash.3             \
rbuf_insert.3           \
rbuf_last.3             \
rbuf_len.3              \
rbuf_new.3              \
rbuf_own.3              \
rbuf_prepend.3          \
rbuf_rdonly.3           \
rbuf_set_to.3           \
rbuf_split.3		\
rbuf_sprintf.3          \
rbuf_str.3              \
rbuf_truncate.3         \
rbuf_up.3               \
rchunk.3                \
rdebug.3                \
rflag.3                 \
rhash.3                 \
rhash_entry_getkey.3    \
rhash_free.3            \
rhash_insert.3          \
rhash_len.3             \
rhash_lookup.3          \
rhash_new.3             \
rhash_remove.3          \
rhash_remove_entry.3    \
rinit.3                 \
rlist.3                 \
rlist_append.3          \
rlist_compare.3         \
rlist_free.3            \
rlist_first.3           \
rlist_new.3             \
rlist_next.3            \
rlist_nth.3             \
rlist_prepend.3         \
rlist_prev.3            \
rlist_remove.3          \
rmain.3                 \
rmem.3                  \
roy.3                   \
rthread.3               \
rthread_mutex.3         \
rthread_event.3         \
rxp.3                   \
roy-config.1            \
rmdbg.3                 \
rmdbgtool.1


man_MANS = \
$(pod_MANS)             \
rarray_free.3           \
rarray_nth.3            \
rarray_peek.3           \
rarray_push.3           \
rarray_set_len.3        \
rbhash_entry_setkey.3   \
rbhash_lookup_next.3    \
rbuf_append_char.3      \
rbuf_append_data.3      \
rbuf_append_rbuf.3      \
rbuf_append_sprintf.3   \
rbuf_append_str.3       \
rbuf_append_vsprintf.3  \
rbuf_equal_data.3       \
rbuf_equal_rbuf.3       \
rbuf_equal_rbufcase.3   \
rbuf_equal_str.3        \
rbuf_equal_rbuf_len.3   \
rbuf_equal_str_len.3    \
rbuf_equal_strcase.3    \
rbuf_float.3            \
rbuf_long.3             \
rbuf_new_with_sprintf.3 \
rbuf_prepend_char.3     \
rbuf_prepend_data.3     \
rbuf_prepend_rbuf.3     \
rbuf_prepend_str.3      \
rchunk_alloc.3          \
rchunk_alloc0.3         \
rchunk_free.3           \
rcleanup.3              \
rhash_entry_setkey.3    \
rhash_lookup_next.3     \
rlist_last.3            \
rmem_alloc.3            \
rmem_alloc0.3           \
rmem_free.3             \
rmem_new.3              \
rmem_new0.3             \
rmem_realloc.3          


EXTRA_DIST = $(man_MANS) $(pod_MANS:.3=.pod) $(pod_MANS:.1=.pod)
MAINTAINERCLEANFILES = $(pod_MANS)

%.3: %.pod
	pod2man --center="Roy API Docs" --release="Roy @ROY_VERSION@" --section=3 $< > $@

%.1: %.pod
	pod2man --center="Roy Tools" --release="Roy @ROY_VERSION@" --section=1 $< > $@


SEEALSO_TOPICS = \
  rarray         \
  rbhash         \
  rbuf           \
  rchunk         \
  rdebug         \
  rflag          \
  rhash          \
  rinit          \
  rlist          \
  rmain          \
  rmem           \
  rthread        \
  rxp            \
  rbucket        \
  rmdbg
  
see_also:
	./see_also.pl roy.pod $(SEEALSO_TOPICS:=.3)
	for i in $(SEEALSO_TOPICS); do ./see_also.pl $$i*.pod $$i*.3 roy.3; done