File: INSTALL

package info (click to toggle)
ht 2.0.20-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,324 kB
  • sloc: cpp: 97,563; ansic: 17,183; sh: 3,811; lex: 226; makefile: 213; yacc: 127
file content (32 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (6)
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
 Installing HT
===============

(1)
    a. This creates by default the development (debug) version of HT (-g -O0):

	    ./configure

    b. If you want a final (release) version (-O2 -fomit-frame-pointer) do the 
	  following instead:

	    ./configure --enable-release

    c. if you want to build with profiling information (-pg -g) add 
	  '--enable-profiling'

(2) compile and link HT:

	    make
	    
(3) (optionally) install HT:

	    make install

(4) run HT:

	    ht or ./ht

Note: The package 'tex4ht' comes with a program called /usr/bin/ht which
      conflicts with this program's name...
      In order to use both programs properly you should rename one of them.
      (for example: mv /usr/local/bin/ht /usr/local/bin/ht.alt)