~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to src/Config.tmpl_freebsd

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Configuration file for FreeBSD and gcc compiler.
 
2
 
 
3
include $(TCM_HOME)/src/Config.GEN
 
4
 
 
5
STRIP           = /usr/bin/strip --strip-debug
 
6
# STRIP           = true
 
7
 
 
8
CFLAGS          = -Wall -pedantic
 
9
CFLAGS          += -fomit-frame-pointer
 
10
# CFLAGS        += -g
 
11
 
 
12
LEX             = flex
 
13
YACC            = bison
 
14
 
 
15
XWIN_HOME       = /usr/X11R6
 
16
 
 
17
SYSFLAGS        = -DBSD
 
18
# SYSFLAGS += -DDEBUG
 
19
 
 
20
# Uncomment one of the following Motif/Lesstif segments or
 
21
# add your own.
 
22
 
 
23
# Lesstif 1.2 (dynamic linked)
 
24
MOTIF_HOME = /usr/X11R6/LessTif/Motif1.2
 
25
LDLIBS = -lXm
 
26
 
 
27
# Lesstif 1.2 (static linked)
 
28
# MOTIF_HOME = /usr/X11R6/LessTif/Motif1.2
 
29
# LDLIBS = $(MOTIF_LIB)/libXm.a
 
30
 
 
31
# OSF/Motif 1.2 (dynamic linked)
 
32
# MOTIF_HOME = /local/opt/motif12
 
33
# LDLIBS = -lXm
 
34
 
 
35
# OSF/Motif 1.2 (static linked)
 
36
# MOTIF_HOME = /local/opt/motif12
 
37
# LDLIBS = $(MOTIF_LIB)/libXm.a
 
38
 
 
39
# OSF/Motif 2.0 (dynamic linked)
 
40
# MOTIF_HOME = /local/opt/motif20
 
41
# LDLIBS = -lXpm -lXm
 
42
 
 
43
# OSF/Motif 2.0 (static linked)
 
44
# MOTIF_HOME = /local/opt/motif20
 
45
# LDLIBS = $(MOTIF_LIB)/libXpm.a $(MOTIF_LIB)/libXm.a
 
46
 
 
47
# OSF/Motif 2.1 (dynamic linked)
 
48
# MOTIF_HOME = /local/opt/motif21
 
49
# LDLIBS = -lXp -lXm
 
50
 
 
51
# OSF/Motif 2.1 (static linked)
 
52
# MOTIF_HOME = /local/opt/motif21
 
53
# LDLIBS = $(MOTIF_LIB)/libXm.a $(XWIN_LIB)/libXp.a
 
54
 
 
55
# OpenMotif 2.1 (dynamic linked)
 
56
# MOTIF_HOME = $(XWIN_HOME)
 
57
# LDLIBS = -lXm -lXp
 
58
 
 
59
# OpenMotif 2.1 (static linked)
 
60
# MOTIF_HOME  = $(XWIN_HOME)
 
61
# LDLIBS = $(MOTIF_LIB)/libXm.a -lXp
 
62
 
 
63
# The other libraries (don't change these)
 
64
LDLIBS += -lXt -lSM -lICE -lXext -lX11 -lm
 
65
 
 
66
# 'make depend' and its flags
 
67
MKDEPEND=$(TCM_HOME)/bin/makedepend.sh
 
68
MKDEPENDFLAGS := $(CPPFLAGS) -D__i386__ -I/usr/include/g++-3 \
 
69
                -I/usr/include/g++-2 \
 
70
                -I/usr/include/g++
 
71