~ubuntu-branches/ubuntu/trusty/judy/trusty

« back to all changes in this revision

Viewing changes to make_includes/platform.bsd_ia32.mk

  • Committer: Bazaar Package Importer
  • Author(s): Troy Heber
  • Date: 2005-03-22 06:55:53 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050322065553-syjpkd48r4re18dn
Tags: 1.0.1-5

* Moving LGPL link in copyright back to LGPL-2.1
* Cleanup of debian/rules: removed explicit refs to 32-bit archs, removed
  unnecessary nostrip, using --man dir to install man pages, moving from
  dh_movefiles to dh_install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# @(#) $Revision: 4.21 $ $Source: /judy/make_includes/platform.freebsd_ia32.mk $
2
 
 
3
 
# Makefile fragment for Judy* for platform "freebsd_ia32".
4
 
# See platform.hpux_pa.mk for more comments.
5
 
 
6
 
SHELL   = /bin/sh
7
 
 
8
 
# For portability use the generic names for cc, ld, and ar, which are typically
9
 
# symlinks to more specific names, such as /usr/bin/cc -> /opt/ansic/bin/cc.
10
 
 
11
 
CCPATH  = cc
12
 
LDPATH  = ld
13
 
ARPATH  = ar
14
 
AR      = $(ARPATH)
15
 
AR_OPT1 = -r
16
 
 
17
 
# Object file directories:
18
 
#
19
 
# $INTDIR is the location for intermediate (non-deliverable) constructed files,
20
 
# optionally including a suffix component for recursive make calls.
21
 
#
22
 
# $DELDIR is the CPF-standard "deliver/" followed by various paths for
23
 
# different files so they are in an appropriate place for delivery to an HPUX
24
 
# system.  Yes, this leads to annoyingly long full paths such as
25
 
# hpux_pa/product/deliver/usr/share/doc/Judy, but Judy-cious use of symlinks in
26
 
# the top of a personal sandbox can mitigate this.
27
 
#
28
 
# Note:  Through version 4.56, files were placed in deliver/opt/Judy, but in
29
 
# preparation for 11.11 OEUR delivery we decided they belong in various "core
30
 
# HPUX" locations under /usr on the filesystem (see below).
31
 
#
32
 
# Note:  For open source delivery, Judy files belong back in /opt/Judy; see the
33
 
# install target.
34
 
#
35
 
# Note:  For safety the values of $OBJDIR_OPT and the suffix of $DELDIR_DOC are
36
 
# hard-coded into the install and uninstall targets.
37
 
 
38
 
OBJDIR_OPT =    /opt/Judy
39
 
 
40
 
# For Linux, $DELDIR_LIB_SUFFIX is simply null.
41
 
 
42
 
DELDIR_LIB =    $(DELDIR)/usr/lib$(DELDIR_LIB_SUFFIX)
43
 
DELDIR_INC =    $(DELDIR)/usr/include
44
 
DELDIR_DOC =    $(DELDIR)/usr/share/doc/Judy
45
 
DELDIR_DEMO =   $(DELDIR_DOC)/demo
46
 
DELDIR_MAN =    $(DELDIR)/usr/share/man/man3$(MANDIR_SUFFIX)
47
 
 
48
 
# Use normal tools for building internal tools (programs):
49
 
 
50
 
CCPATH_TOOL = $(CCPATH)
51
 
 
52
 
CSTRIP  = cstrip_not_present
53
 
 
54
 
# HP-UX has rmnl(1) but NetBSD does not, so use grep instead; note the tab:
55
 
 
56
 
RMNL    = grep -v '^[   ]*$$'
57
 
 
58
 
# How to echo with escaped chars expanded; NetBSD /bin/sh requires -e:
59
 
 
60
 
ECHO    = echo -e
61
 
PWD     = /bin/pwd
62
 
 
63
 
# Suffix for $LIB_ID (same as what's passed in $LIB_SUFFIX for a recursive
64
 
# make):
65
 
 
66
 
LIB_ID_SUFFIX = a
67
 
 
68
 
# Linker option to build a shared library:
69
 
#
70
 
# Note:  The gcc manual entry contains this ominous prose about the -shared
71
 
# option:  "Only a few systems support this option."  We'll see...
72
 
#
73
 
# TBD:  In the long run we should probably append a version number suffix to
74
 
# the library and use the ld -soname option (see the manual entry), but I think
75
 
# we can accomplish this later (at "version 2").  Also per the howto file (see
76
 
# http://www.ibiblio.org/pub/Linux/docs/HOWTO/GCC-HOWTO), it's possible the
77
 
# building should be done with gcc instead of ld.
78
 
 
79
 
LD_OPT_SL = -shared
80
 
 
81
 
# Optionally include PIC libs in tarchives:
82
 
 
83
 
TARCHIVE_LIBS_PIC = libs_pic
84
 
 
85
 
# NetBSD manual pages are not compressed.
86
 
 
87
 
COMPRESSPATH    = cat
88
 
MANDIR_SUFFIX   =
89
 
MANFILE_SUFFIX  =
90
 
 
91
 
# A weird concession to Win32 VC++ "CL" compiler, which needs -Fo to specify
92
 
# the object file and -Fe to specify the executable file:
93
 
#
94
 
# WARNING!  There must be a blank after the "-o" on the following lines to
95
 
# satisfy the /opt/ccover/bin/covc command.
96
 
 
97
 
CCoo = -o 
98
 
CCoe = -o 
99
 
 
100
 
# Ensure $PLATFORM is set:
101
 
 
102
 
PLATFORM = bsd_ia32
103
 
 
104
 
# Platform-specific library lists for NetBSD/IA32 for various "lib" targets:
105
 
 
106
 
LIB_LIST        = lib32a
107
 
LIBS_LIST       = lib32a
108
 
LIBS_ALL_LIST   = lib32a lib32so
109
 
LIBS_PIC_LIST   = lib32PICa
110
 
 
111
 
# Unfortunately there are CC_OPTS differences between both platforms AND
112
 
# flavors, so spell them out here by flavor, meaning this file cannot be
113
 
# flavor-ignorant:
114
 
 
115
 
CC_OPTS_product = -Wall -O 
116
 
CC_OPTS_cov     = -Wall -O -DJU_FLAVOR_COV
117
 
CC_OPTS_debug   = -Wall -g -DJU_FLAVOR_DEBUG