~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to Config.mk.sgi.mips3

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# configuration for good old make.
 
2
# select an architecture from makearch/*
 
3
# ...one of:  sgi.mips3 sgi.mips2 sol.sun4 sol6.sun4 sun4 linux.i386
 
4
ARCH=sgi.mips3
 
5
 
 
6
# specify root directory for installation
 
7
INSTALLROOT=/home/erg/src/gviz
 
8
 
 
9
# specify where to find tcl 8.0
 
10
TCLDIR=/usr/common/tcl
 
11
 
 
12
# specify where to find tk 8.0
 
13
TKDIR=/usr/common/tcl
 
14
 
 
15
# specify where to find non-tcl/tk packages (See INSTALL file.)
 
16
EXTLIB_INC=-I/home/north/arch/$(ARCH)/include
 
17
EXTLIB_LIB=-L/home/north/arch/$(ARCH)/lib -ljpeg -lpng -lfreetype -lz
 
18
 
 
19
###################################################
 
20
#  Typically, nothing below should be changed.    #
 
21
###################################################
 
22
 
 
23
BINDIR=$(INSTALLROOT)/build/$(ARCH)/bin
 
24
LIBDIR=$(INSTALLROOT)/build/$(ARCH)/lib
 
25
INCDIR=$(INSTALLROOT)/include
 
26
 
 
27
MANDIR=$(INSTALLROOT)/man/man1
 
28
LIBMANDIR=$(INSTALLROOT)/man/man3
 
29
PKGMANDIR=$(INSTALLROOT)/man/mann
 
30
 
 
31
# postscipt and html docs
 
32
DOCDIR=$(INSTALLROOT)/doc
 
33
 
 
34
TCLVERSION=8.0
 
35
# location of libtcl.a
 
36
TCL_LIBDIR=$(TCLDIR)/lib
 
37
# location of tcl.h
 
38
TCL_INCDIR=$(TCLDIR)/include
 
39
# location to install tcl packages
 
40
TCL_PKGDIR=$(LIBDIR)
 
41
 
 
42
TKVERSION=8.0
 
43
# location of libtk.a
 
44
TK_LIBDIR=$(TKDIR)/lib
 
45
# location of tk.h
 
46
TK_INCDIR=$(TKDIR)/include
 
47