gecko-dev/config/Rhapsody.mk

112 строки
3.4 KiB
Makefile
Исходник Обычный вид История

1998-03-28 05:44:41 +03:00
#
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
######################################################################
# Config stuff for Rhapsody
######################################################################
#
######################################################################
# Version-independent
######################################################################
ARCH := rhapsody
1998-08-18 11:29:04 +04:00
ifeq (86,$(findstring 86,$(OS_TEST)))
CPU_ARCH := i386
1998-08-18 11:29:04 +04:00
else
CPU_ARCH := ppc
1998-08-18 11:29:04 +04:00
endif
GFX_ARCH :=
1998-03-28 05:44:41 +03:00
1998-10-02 08:46:02 +04:00
OS_INCLUDES =
1998-08-18 11:29:04 +04:00
G++INCLUDES = -I/usr/include/g++
1998-03-28 05:44:41 +03:00
LOC_LIB_DIR =
MOTIF =
MOTIFLIB =
1998-10-02 08:46:02 +04:00
OS_LIBS = -lstdc++
1998-03-28 05:44:41 +03:00
PLATFORM_FLAGS = -Wall -pipe -DRHAPSODY -D$(CPU_ARCH)
1998-03-28 05:44:41 +03:00
MOVEMAIL_FLAGS = -DHAVE_STRERROR
PORT_FLAGS = -DSW_THREADS -DHAVE_STDDEF_H -DHAVE_STDLIB_H -DHAVE_FILIO_H -DNTOHL_ENDIAN_H -DMACHINE_ENDIAN_H -DNO_REGEX -DNO_REGCOMP -DHAS_PGNO_T -DNO_TZNAME -DNEEDS_GETCWD -DHAVE_SYSERRLIST
1998-03-28 05:44:41 +03:00
PDJAVA_FLAGS =
# "Commons" are tentative definitions in a global scope, like this:
# int x;
# The meaning of a common is ambiguous. It may be a true definition:
# int x = 0;
# or it may be a declaration of a symbol defined in another file:
# extern int x;
# Use the -fno-common option to force all commons to become true
# definitions so that the linker can catch multiply-defined symbols.
# Also, common symbols are not allowed with Rhapsody dynamic libraries.
DSO_FLAGS = -fno-common
1998-10-02 08:46:02 +04:00
# Build Mozilla/X11 version, else build NGLayout/ybfe.
ifdef HAVE_X11
OS_INCLUDES += -I/usr/X11R6/include
OS_LIBS += -L/usr/X11R6/lib -lXm -lXt -lXext -lX11
PORT_FLAGS +=
else
1998-10-13 06:49:30 +04:00
PORT_FLAGS += -DNO_X11
1998-10-02 08:46:02 +04:00
NO_X11 = 1
endif
1998-08-20 00:42:14 +04:00
ifdef USE_AUTOCONF
OS_CFLAGS = $(DSO_FLAGS)
else
OS_CFLAGS = $(PLATFORM_FLAGS) $(DSO_FLAGS) $(PORT_FLAGS) $(MOVEMAIL_FLAGS)
1998-08-20 00:42:14 +04:00
endif
1998-03-28 05:44:41 +03:00
######################################################################
# Version-specific stuff
######################################################################
ifeq ($(CPU_ARCH),i386)
PLATFORM_FLAGS += -mno-486
endif
1998-03-28 05:44:41 +03:00
######################################################################
# Overrides for defaults in config.mk (or wherever)
######################################################################
1998-10-01 10:55:38 +04:00
# 5.1 renamed cc++ to c++.
1998-05-13 10:40:49 +04:00
ifeq ($(OS_RELEASE),5.0)
CCC = cc++
1998-05-13 10:40:49 +04:00
else
CCC = c++
1998-05-13 10:40:49 +04:00
endif
CC = cc
AR = libtool -static -o $@
1998-08-18 11:29:04 +04:00
EMACS = /usr/bin/emacs
PERL = /usr/bin/perl
RANLIB = ranlib
LDFLAGS =
1998-10-01 10:55:38 +04:00
# -nostdlib gets around the missing -lm problem.
DSO_LDFLAGS = -arch $(CPU_ARCH) -dynamiclib -nostdlib -lstdc++ -lcc_dynamic -compatibility_version 1 -current_version 1 -all_load -undefined suppress
1998-10-01 10:55:38 +04:00
# Comment out MKSHLIB to build only static libraries.
MKSHLIB = $(CC) $(DSO_LDFLAGS)
DLL_SUFFIX = dylib
1998-03-28 05:44:41 +03:00
######################################################################
# Other
######################################################################