File: makevars

package info (click to toggle)
galib 2.4.7-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,216 kB
  • ctags: 3,153
  • sloc: cpp: 23,666; ansic: 520; makefile: 247; sh: 93
file content (105 lines) | stat: -rw-r--r-- 3,097 bytes parent folder | download | duplicates (4)
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
# -*- Mode: makefile -*-
# Copyright (c) 2005 Matthew Wall, all rights reserved
# makefile variables for compiling on unix environments
# -----------------------------------------------------------------------------

LIB   =libga.a

### Set these directories to whatever is appropriate for your system.  These 
### are used only if you do a 'make install'.  They specify where the library
### and header files should be installed.
DESTDIR=/usr/local
HDR_DEST_DIR=$(DESTDIR)/include
LIB_DEST_DIR=$(DESTDIR)/lib


### Make sure that these are ok for your operating system.
MKDEPEND    = makedepend
MKDIR       = mkdir -p
CP          = cp
RM          = rm -rf


### Uncomment a block from the list below appropriate for the compiler and 
### operating system on which you are compiling.

# gcc3, gcc4
#  verified 28dec04 on linux-x86 (fedora core 2 with gcc 3.3.3)
#  verified 28dec04 on linux-ppc (yellow dog 3 with gcc 3.2.2)
#  verified 28dec04 on win2k-x86 (cygwin-win2k with gcc 3.3.3)
#  verified 10jan05 on linux-x86 (fedora core 3 with gcc 3.4.2)
#  verified 06mar07 on linux-x86 (debian with gcc 3.3.5)
#  verified 06mar07 on linux-x86 (ubuntu with gcc 4.0.3)
#  verified 06mar07 on macosx-ppc (macosx 10.4.8 with gcc 4.0.1)
CXX         = g++
CXXFLAGS    = -g -Wall
LD          = g++ -w
AR          = ar rv
INSTALL     = install -c
RANLIB      = echo no ranlib

# gcc2
#  verified 28dec04 on linux-x86 (redhat 6.2 with gcc 2.95.2)
#  verified 28dec04 on sol7-x86 (solaris 7 with gcc 2.95.2)
#  verified 28dec04 on sol6-sparc (solaris 6 with gcc 2.95.2)
#CXX         = g++
#CXXFLAGS    = -g -Wall -O -fexceptions -O0
#LD          = g++ -w
#AR          = ar rv
#INSTALL     = install -c
#RANLIB      = echo no ranlib

# macosx using gcc2
#  verified 28dec04 macosx-ppc (macosx 10.3.7 with gcc 2.95.2)
#CXX         = gcc2
#CXXFLAGS    = -g -Wall -fexceptions
#LD          = gcc2 -w
#AR          = ar rv
#INSTALL     = install
#RANLIB      = ranlib
#CXX_LIBS    = -lstdc++

# macosx using gcc3
#  verified 28dec04 macosx-ppc (macosx 10.3.7 with gcc 3.3)
#CXX         = g++
#CXXFLAGS    = -g -Wall -O -O0
#LD          = gcc3 -w
#AR          = ar rv
#INSTALL     = install
#RANLIB      = ranlib

# HPUX11 with aCC
#  verified 28dec04 hpux11-hppa (hpux 11 with aCC A.03.31)
#CXX         = aCC
#CXXFLAGS    = -g
#LD          = aCC
#AR          = ar rv
#INSTALL     = bsdinst -c
#RANLIB      = ranlib

# AIX 4.3 with xlC
#  verified 28dec04 aix-ppc (aix 4.3.3 with xlC 6.0.0.5)
#CXX         = xlC
#CXXFLAGS    = -g -O -qrtti=all
#LD          = xlC
#AR          = ar rv
#INSTALL     = bsdinst -c
#RANLIB      = ranlib

# IRIX 6.x with new 32-bit libraries
#  verified 28dec04 irix65-mips (irix 6.5 with CC 7.3.1.2m)
#CXX         = CC
#CXXFLAGS    = -g -fullwarn -n32
#LD          = ld
#AR          = ar rv
#INSTALL     = bsdinst -c
#RANLIB      = echo no ranlib

# IRIX 6.x with old 32-bit libraries
#  verified 28dec04 irix65-mips (irix 6.5 with CC 7.3.1.2m)
#CXX         = CC
#CXXFLAGS    = -g -fullwarn
#LD          = ld
#AR          = ar rv
#INSTALL     = bsdinst -c
#RANLIB      = echo no ranlib