Makefile
676 Bytes
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
#
# Makefile for the Developer's Doc.
#
# Targets to update the FrameMaker book file and create
# .ps versions.
#
# These targets DO NOT check in the updated files; this could
# mean that the checked-in files need to be 'generated'. If you
# print the .ps version built here, you should have no problem,
# however.
#
default: all
#
# update the book
#
update:
p_tupdate
chmod ug+w *.book *.doc
/usr/frame/bin/fmbatch scripts/update.script
chmod ug-w *.book *.doc
#
# create PRdev.ps
#
ps:
p_tupdate
chmod ug+w *.book *.doc
/usr/frame/bin/fmbatch scripts/ps.script
chmod ug-w *.book *.doc
#
# do everything
#
all: update ps
clobber:
/bin/rm -f *.ps *.backup *~