1 |
frodo |
2 |
GENERATE = psion/Application_ID_Section.psi \ |
2 |
|
|
psion/ASCII_Codes.psi \ |
3 |
|
|
psion/Basic_Elements.psi \ |
4 |
|
|
psion/Basic_Structures.psi \ |
5 |
frodo |
46 |
psion/Clip_Art_File.psi \ |
6 |
frodo |
2 |
psion/Embedded_Object_Section.psi \ |
7 |
frodo |
46 |
psion/File_Structure.psi \ |
8 |
frodo |
2 |
psion/Fonts.psi \ |
9 |
|
|
psion/Header_Section.psi \ |
10 |
|
|
psion/Identifiers.psi \ |
11 |
|
|
psion/Index.psi \ |
12 |
|
|
psion/Introduction.psi \ |
13 |
|
|
psion/Layout_Codes.psi \ |
14 |
|
|
psion/MBM_File.psi \ |
15 |
|
|
psion/Page_Layout_Section.psi \ |
16 |
|
|
psion/Paint_Data_Section.psi \ |
17 |
|
|
psion/Password_Section.psi \ |
18 |
|
|
psion/Record_File.psi \ |
19 |
|
|
psion/Record_Section.psi \ |
20 |
|
|
psion/Section_Table_Section.psi \ |
21 |
frodo |
46 |
psion/Section_Table_Offset_Section.psi \ |
22 |
|
|
psion/Sheet_File.psi \ |
23 |
frodo |
2 |
psion/Sketch_File.psi \ |
24 |
|
|
psion/Sketch_Section.psi \ |
25 |
|
|
psion/Substitutions.psi \ |
26 |
|
|
psion/TextEd_File.psi \ |
27 |
|
|
psion/TextEd_Section.psi \ |
28 |
|
|
psion/Text_Layout_Section.psi \ |
29 |
|
|
psion/Text_Section.psi \ |
30 |
|
|
psion/Word_File.psi \ |
31 |
|
|
psion/Word_Status_Section.psi \ |
32 |
|
|
psion/Word_Styles_Section.psi |
33 |
|
|
|
34 |
|
|
EXTRA_DIST=$(GENERATE) generate_ascii.sh generate_html.sh generate_html4.sh \ |
35 |
frodo |
7 |
generate_rtf.sh html_links.sh index_html.sh |
36 |
frodo |
2 |
|
37 |
frodo |
7 |
all-local: .touch-html .touch-html4 .touch-ascii .touch-rtf |
38 |
frodo |
2 |
|
39 |
|
|
.touch-html: $(GENERATE) |
40 |
|
|
if HTMLDOCS |
41 |
|
|
rm -rf html |
42 |
|
|
mkdir html |
43 |
|
|
./generate_html.sh .. html $(GENERATE) |
44 |
|
|
touch .touch-html |
45 |
|
|
endif |
46 |
|
|
|
47 |
|
|
|
48 |
|
|
.touch-html4: $(GENERATE) |
49 |
|
|
if HTML4DOCS |
50 |
|
|
rm -rf html4 |
51 |
|
|
mkdir html4 |
52 |
|
|
./generate_html4.sh .. html4 $(GENERATE) |
53 |
|
|
touch .touch-html4 |
54 |
|
|
endif |
55 |
|
|
|
56 |
|
|
.touch-ascii: $(GENERATE) |
57 |
|
|
if ASCIIDOCS |
58 |
|
|
rm -rf ascii |
59 |
|
|
mkdir ascii |
60 |
|
|
./generate_ascii.sh .. ascii $(GENERATE) |
61 |
|
|
touch .touch-ascii |
62 |
|
|
endif |
63 |
|
|
|
64 |
frodo |
7 |
.touch-rtf: $(GENERATE) |
65 |
|
|
if RTFDOCS |
66 |
|
|
rm -rf rtf |
67 |
|
|
mkdir rtf |
68 |
|
|
./generate_rtf.sh .. rtf $(GENERATE) |
69 |
|
|
touch .touch-rtf |
70 |
|
|
endif |
71 |
|
|
|
72 |
frodo |
2 |
clean-local: |
73 |
frodo |
7 |
rm -rf html html4 ascii rtf .touch-* |