Including: Preliminary work on internationalizing error messages Preliminary work on exposing runtime errors as catchable exceptions ECMA-proposed throw and try/catch/finally, with multiple catch clauses and catchguards ECMA-proposed in/instanceof operators IEEE-conformant number to string conversion Fixes and other good stuff. git-svn-id: svn://10.0.0.236/trunk@8770 18797224-902f-48f8-a5cc-f745e15eee43
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
#
|
|
# 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 for all versions of Linux
|
|
#
|
|
|
|
CC = gcc -Wall -Wno-format
|
|
CCC = g++ -Wall -Wno-format
|
|
|
|
RANLIB = echo
|
|
|
|
#.c.o:
|
|
# $(CC) -c -MD $*.d $(CFLAGS) $<
|
|
|
|
CPU_ARCH = $(shell uname -m)
|
|
ifeq (86,$(findstring 86,$(CPU_ARCH)))
|
|
CPU_ARCH = x86
|
|
endif
|
|
GFX_ARCH = x
|
|
|
|
OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DLINUX
|
|
OS_LIBS = -lm -lc
|
|
|
|
ASFLAGS += -x assembler-with-cpp
|
|
|
|
ifeq ($(CPU_ARCH),alpha)
|
|
|
|
# Ask the C compiler on alpha linux to let us work with denormalized
|
|
# double values, which are required by the ECMA spec.
|
|
|
|
OS_CFLAGS += -mieee
|
|
endif
|