summaryrefslogtreecommitdiff
path: root/documentation/Makefile
blob: b3f5a4cb0ebc33db52924c3a14748ab2055730a5 (plain)
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
#
# "$Id: Makefile,v 1.4 1999/01/07 19:17:09 mike Exp $"
#
# Documentation makefile for the Fast Light Tool Kit (FLTK).
#
# Copyright 1998-1999 by Bill Spitzak and others.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
#
# Please report all bugs and problems to "fltk-bugs@easysw.com".
#

HTMLFILES	= \
		src/preface.html \
		src/intro.html \
		src/basics.html \
		src/common.html \
		src/editor.html \
		src/drawing.html \
		src/events.html \
		src/subclassing.html \
		src/fluid.html \
		src/opengl.html \
		src/widgets.html \
		src/Fl_Adjuster.html \
		src/Fl_Box.html \
		src/Fl_Browser.html \
		src/Fl_Browser_.html \
		src/Fl_Button.html \
		src/Fl_Chart.html \
		src/Fl_Check_Button.html \
		src/Fl_Choice.html \
		src/Fl_Clock.html \
		src/Fl_Color_Chooser.html \
		src/Fl_Counter.html \
		src/Fl_Dial.html \
		src/Fl_Double_Window.html \
		src/Fl_End.html \
		src/Fl_Float_Input.html \
		src/Fl_Free.html \
		src/Fl_Gl_Window.html \
		src/Fl_Group.html \
		src/Fl_Hold_Browser.html \
		src/Fl_Input.html \
		src/Fl_Input_.html \
		src/Fl_Int_Input.html \
		src/Fl_Light_Button.html \
		src/Fl_Menu_.html \
		src/Fl_Menu_Bar.html \
		src/Fl_Menu_Button.html \
		src/Fl_Menu_Item.html \
		src/Fl_Menu_Window.html \
		src/Fl_Multi_Browser.html \
		src/Fl_Multiline_Input.html \
		src/Fl_Multiline_Output.html \
		src/Fl_Output.html \
		src/Fl_Overlay_Window.html \
		src/Fl_Pack.html \
		src/Fl_Positioner.html \
		src/Fl_Repeat_Button.html \
		src/Fl_Return_Button.html \
		src/Fl_Roller.html \
		src/Fl_Round_Button.html \
		src/Fl_Scroll.html \
		src/Fl_Scrollbar.html \
		src/Fl_Secret_Input.html \
		src/Fl_Select_Browser.html \
		src/Fl_Single_Window.html \
		src/Fl_Slider.html \
		src/Fl_Tabs.html \
		src/Fl_Tile.html \
		src/Fl_Timer.html \
		src/Fl_Valuator.html \
		src/Fl_Value_Input.html \
		src/Fl_Value_Output.html \
		src/Fl_Value_Slider.html \
		src/Fl_Widget.html \
		src/Fl_Window.html \
		src/functions.html \
		src/enumerations.html \
		src/glut.html \
		src/forms.html \
		src/osissues.html \
		src/license.html

all:	index.html fltk.ps.gz fltk.pdf

clean:
	rm -f index.html toc.html doc*.html *.gif *.jpg
	rm -f fltk.ps fltk.ps.gz
	rm -f fltk.pdf

depend:

install:

index.html: $(HTMLFILES)
	@echo "Generating HTML documentation..."
	@rm -f index.html toc.html doc*.html *.gif *.jpg
	@htmldoc -d . -t html --toclevels 2 --title src/FL.gif $(HTMLFILES)

fltk.ps.gz: $(HTMLFILES)
	@echo "Generating PostScript documentation..."
	@rm -f fltk.ps fltk.ps.gz
	@htmldoc -f fltk.ps --jpeg=90 --duplex --verbose --toclevels 2 --title src/FL.gif $(HTMLFILES)
	@gzip -9 fltk.ps

fltk.pdf: $(HTMLFILES)
	@echo "Generating PDF documentation..."
	@rm -f fltk.pdf
	@htmldoc -f fltk.pdf --compression=9 --jpeg=90 --duplex --verbose --toclevels 2 --title src/FL.gif $(HTMLFILES)

#
# End of "$Id: Makefile,v 1.4 1999/01/07 19:17:09 mike Exp $".
#