~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to make/otp_ded.mk.in

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2010-03-09 17:34:57 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100309173457-4yd6hlcb2osfhx31
Tags: 1:13.b.4-dfsg-3
Manpages in section 1 are needed even if only arch-dependent packages are
built. So, re-enabled them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#-*-makefile-*-   ; force emacs to enter makefile-mode
2
2
# ----------------------------------------------------
3
 
# Make include file for otp
4
 
#
5
 
# Copyright (C) 1996, Ericsson Telecommunications
6
 
# Author: Lars Thorsen
 
3
# %CopyrightBegin%
 
4
#
 
5
# Copyright Ericsson AB 2009-2010. All Rights Reserved.
 
6
#
 
7
# The contents of this file are subject to the Erlang Public License,
 
8
# Version 1.1, (the "License"); you may not use this file except in
 
9
# compliance with the License. You should have received a copy of the
 
10
# Erlang Public License along with this software. If not, it can be
 
11
# retrieved online at http://www.erlang.org/.
 
12
#
 
13
# Software distributed under the License is distributed on an "AS IS"
 
14
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
15
# the License for the specific language governing rights and limitations
 
16
# under the License.
 
17
#
 
18
# %CopyrightEnd%
 
19
 
 
20
# The version.
 
21
#
 
22
# Note that it is important that the version is
 
23
# explicitly expressed here. Some applications need to
 
24
# be able to check this value *before* configure has
 
25
# been run and generated otp_ded.mk
 
26
DED_MK_VSN = 1
 
27
# ----------------------------------------------------
 
28
# Variables needed for building Dynamic Erlang Drivers
7
29
# ----------------------------------------------------
8
30
DED_CC = @CC@
 
31
DED_GCC = @GCC@
9
32
DED_LD = @DED_LD@
10
33
DED_LDFLAGS = @DED_LDFLAGS@
11
 
DED__NOWARN_CFLAGS = @DED_CFLAGS@
12
 
DED_CFLAGS = @WFLAGS@ @DED_CFLAGS@
 
34
DED__NOWARN_NOTHR_CFLAGS = @DED_CFLAGS@
 
35
DED__NOTHR_CFLAGS = @WFLAGS@ @DED_CFLAGS@
 
36
DED__NOWARN_CFLAGS = @DED_EMU_THR_DEFS@ @DED_CFLAGS@
 
37
DED_THR_DEFS = @DED_THR_DEFS@
 
38
DED_EMU_THR_DEFS = @DED_EMU_THR_DEFS@
 
39
DED_WARN_FLAGS = @WFLAGS@
 
40
DED_CFLAGS = @WFLAGS@ @DED_EMU_THR_DEFS@ @DED_CFLAGS@
13
41
DED_LIBS = @LIBS@
 
42
DED_EXT = @DED_EXT@
14
43
ERLANG_OSTYPE = @ERLANG_OSTYPE@
15
 
TARGET = @host@
16
44
PRIVDIR = ../priv
17
45
OBJDIR = $(PRIVDIR)/obj/$(TARGET)
18
46
LIBDIR = $(PRIVDIR)/lib/$(TARGET)
19
 
DED_SYS_INCLUDE = -I$(ERL_TOP)/erts/emulator/beam \
20
 
        -I$(ERL_TOP)/erts/emulator/sys/$(ERLANG_OSTYPE)
21
 
 
 
47
DED_SYS_INCLUDE = @DED_SYS_INCLUDE@
22
48
DED_INCLUDES = $(DED_SYS_INCLUDE)