blob: 39f025017b6bb3f47ae0db9b251be70dd6469ef3 (
plain) (
blame)
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
|
--- Documentation/Makefile.in.orig Thu Jan 22 15:34:28 2004
+++ Documentation/Makefile.in Thu Jan 22 15:51:08 2004
@@ -1,6 +1,4 @@
-prefix=@prefix@/share/
-
-HTML_PREFIX = $(prefix)/doc/ClanLib-docs-@version_minor@/Documentation
+HTML_PREFIX = @prefix@/share/doc/clanlib
all: faq
Utilities/webbuilder.pl documentation.theme index.xml
@@ -10,14 +8,15 @@
# cd Tutorial; make
faq:
- perl FAQ.theme
+ chmod +x FAQ.theme
+ ./FAQ.theme
install:
@install -d $(HTML_PREFIX)
@install -d $(HTML_PREFIX)/Images
@install -m 0644 Images/*.gif $(HTML_PREFIX)/Images
@install -m 0644 *.html $(HTML_PREFIX)
-
+
# cd Reference; make man_install
cd Reference; make html_install
cd Overview; make install
|