1 |
# -*- Mode: makefile -*- |
2 |
# |
3 |
# ***** BEGIN LICENSE BLOCK ***** |
4 |
# Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
5 |
# |
6 |
# The contents of this file are subject to the Mozilla Public License Version |
7 |
# 1.1 (the "License"); you may not use this file except in compliance with |
8 |
# the License. You may obtain a copy of the License at |
9 |
# http://www.mozilla.org/MPL/ |
10 |
# |
11 |
# Software distributed under the License is distributed on an "AS IS" basis, |
12 |
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
13 |
# for the specific language governing rights and limitations under the |
14 |
# License. |
15 |
# |
16 |
# The Original Code is Mozilla Communicator client code, released |
17 |
# March 31, 1998. |
18 |
# |
19 |
# The Initial Developer of the Original Code is |
20 |
# Netscape Communications Corporation. |
21 |
# Portions created by the Initial Developer are Copyright (C) 1998 |
22 |
# the Initial Developer. All Rights Reserved. |
23 |
# |
24 |
# Contributor(s): |
25 |
# |
26 |
# Alternatively, the contents of this file may be used under the terms of |
27 |
# either the GNU General Public License Version 2 or later (the "GPL"), or |
28 |
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
29 |
# in which case the provisions of the GPL or the LGPL are applicable instead |
30 |
# of those above. If you wish to allow use of your version of this file only |
31 |
# under the terms of either the GPL or the LGPL, and not to allow others to |
32 |
# use your version of this file under the terms of the MPL, indicate your |
33 |
# decision by deleting the provisions above and replace them with the notice |
34 |
# and other provisions required by the GPL or the LGPL. If you do not delete |
35 |
# the provisions above, a recipient may use your version of this file under |
36 |
# the terms of any one of the MPL, the GPL or the LGPL. |
37 |
# |
38 |
# ***** END LICENSE BLOCK ***** |
39 |
|
40 |
# |
41 |
# Config stuff for SunOS4.1 |
42 |
# |
43 |
|
44 |
CC = gcc |
45 |
CCC = g++ |
46 |
RANLIB = ranlib |
47 |
|
48 |
#.c.o: |
49 |
# $(CC) -c -MD $*.d $(CFLAGS) $< |
50 |
|
51 |
CPU_ARCH = sparc |
52 |
GFX_ARCH = x |
53 |
|
54 |
# A pile of -D's to build xfe on sunos |
55 |
MOZ_CFLAGS = -DSTRINGS_ALIGNED -DNO_REGEX -DNO_ISDIR -DUSE_RE_COMP \ |
56 |
-DNO_REGCOMP -DUSE_GETWD -DNO_MEMMOVE -DNO_ALLOCA \ |
57 |
-DBOGUS_MB_MAX -DNO_CONST |
58 |
|
59 |
# Purify doesn't like -MDupdate |
60 |
NOMD_OS_CFLAGS = -DXP_UNIX -Wall -Wno-format -DSW_THREADS -DSUNOS4 -DNEED_SYSCALL \ |
61 |
$(MOZ_CFLAGS) |
62 |
|
63 |
OS_CFLAGS = $(NOMD_OS_CFLAGS) -MDupdate $(DEPENDENCIES) |
64 |
OS_LIBS = -ldl -lm |
65 |
|
66 |
MKSHLIB = $(LD) -L$(MOTIF)/lib |
67 |
|
68 |
HAVE_PURIFY = 1 |
69 |
MOTIF = /home/motif/usr |
70 |
MOTIFLIB = -L$(MOTIF)/lib -lXm |
71 |
INCLUDES += -I/usr/X11R5/include -I$(MOTIF)/include |
72 |
|
73 |
NOSUCHFILE = /solaris-rm-f-sucks |
74 |
|
75 |
LOCALE_MAP = $(DEPTH)/cmd/xfe/intl/sunos.lm |
76 |
|
77 |
EN_LOCALE = en_US |
78 |
DE_LOCALE = de |
79 |
FR_LOCALE = fr |
80 |
JP_LOCALE = ja |
81 |
SJIS_LOCALE = ja_JP.SJIS |
82 |
KR_LOCALE = ko |
83 |
CN_LOCALE = zh |
84 |
TW_LOCALE = zh_TW |
85 |
I2_LOCALE = i2 |
86 |
IT_LOCALE = it |
87 |
SV_LOCALE = sv |
88 |
ES_LOCALE = es |
89 |
NL_LOCALE = nl |
90 |
PT_LOCALE = pt |
91 |
|
92 |
LOC_LIB_DIR = /usr/openwin/lib/locale |
93 |
|
94 |
BSDECHO = echo |
95 |
|
96 |
# |
97 |
# These defines are for building unix plugins |
98 |
# |
99 |
BUILD_UNIX_PLUGINS = 1 |
100 |
DSO_LDOPTS = |
101 |
DSO_LDFLAGS = |