File: Makefile

package info (click to toggle)
ustr 1.0.4-6.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,676 kB
  • sloc: ansic: 19,041; makefile: 935; perl: 779; sh: 686; xml: 97
file content (22 lines) | stat: -rw-r--r-- 421 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
ALL = \
  functions.html \
  constants.html \
  ustr.3 \
  ustr_const.3 \

all: $(ALL)

#  This _shouldn't_ be part of teh normal build ... so we need to make sure it
# happens before we distribute.

functions.html: functions.txt txt2html.pl
		./txt2html.pl

constants.html: constants.txt txt2html.pl
		./txt2html.pl

ustr.3: functions.txt txt2man.pl
		./txt2man.pl

ustr_const.3: constants.txt txt2man.pl
		./txt2man.pl