gecko-dev/gconfig/WIN32.mk

113 строки
2.7 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.
#
#
# Configuration common to all versions of Windows NT
# and Windows 95
#
DEFAULT_COMPILER = cl
CC = cl
CCC = cl
LINK = link
AR = lib
AR += -NOLOGO -OUT:"$@"
RANLIB = echo
BSDECHO = echo
NSINSTALL_DIR = $(GDEPTH)/gconfig/nsinstall
NSINSTALL = nsinstall
INSTALL = $(NSINSTALL)
MAKE_OBJDIR = mkdir
MAKE_OBJDIR += $(OBJDIR)
RC = rc.exe
GARBAGE += $(OBJDIR)/vc20.pdb $(OBJDIR)/vc40.pdb
MAPFILE = $(PROGRAM:.exe=.map)
MAP = /MAP:$(MAPFILE)
PDBFILE = $(PROGRAM:.exe=.pdb)
PDB = /PDB:$(PDBFILE)
IMPFILE = $(PROGRAM:.exe=.lib)
IMP = /IMPLIB:$(IMPFILE)
XP_DEFINE += -DXP_PC
LIB_SUFFIX = lib
DLL_SUFFIX = dll
OUT_NAME = -out:
1998-05-13 03:15:00 +04:00
ARCHIVE_SUFFIX = _s
NATIVE_PLATFORM=win
NATIVE_RAPTOR_WIDGET =
1998-07-31 03:33:17 +04:00
NATIVE_RAPTOR_GFX = raptorgfxwin
1998-08-06 06:16:51 +04:00
RAPTOR_GFX=
1998-08-06 06:07:49 +04:00
NATIVE_JULIAN_DLL=juls$(MOZ_BITS)40
ifdef RCFILE
RCFILE := $(RCFILE).rc
RESFILE = $(OBJDIR)/$(RCFILE:.rc=.res)
endif
OS_LIBS = gdi32.lib kernel32.lib advapi32.lib user32.lib
MATH_LIB=
1998-05-11 23:06:15 +04:00
GUI_LIBS =
NSPR_LIBS = libplds21 libplc21 libnspr21 libmsgc21
OPT_SLASH = /
LIB_PREFIX =
1998-05-11 23:33:23 +04:00
XP_REG_LIB = libreg$(MOZ_BITS)
1998-05-11 23:06:15 +04:00
ifdef BUILD_OPT
OS_CFLAGS += -MD
OPTIMIZER += -O2
DEFINES += -UDEBUG -U_DEBUG -DNDEBUG
DLLFLAGS += -OUT:"$@"
1998-08-05 06:17:36 +04:00
LDFLAGS += /SUBSYSTEM:WINDOWS /NOLOGO
else
#
# Define USE_DEBUG_RTL if you want to use the debug runtime library
# (RTL) in the debug build
#
ifdef USE_DEBUG_RTL
OS_CFLAGS += -MDd
else
OS_CFLAGS += -MD
endif
OPTIMIZER += -Od -Z7
#OPTIMIZER += -Zi -Fd$(OBJDIR)/ -Od
DEFINES += -DDEBUG -D_DEBUG -UNDEBUG
DLLFLAGS += -DEBUG -DEBUGTYPE:CV -OUT:"$@"
LDFLAGS += -DEBUG -DEBUGTYPE:BOTH /SUBSYSTEM:WINDOWS /NOLOGO
endif
# XXX FIXME: I doubt we use this. It is redundant with
# SHARED_LIBRARY.
ifdef DLL
DLL := $(addprefix $(OBJDIR)/, $(DLL))
endif
DEFINES += -DWIN32
#
# The following is NOT needed for the NSPR 2.0 library.
#
DEFINES += -D_WINDOWS
1998-07-29 02:37:09 +04:00
#
# The default is no MFC anywhere
#
DEFINES += -DWIN32_LEAN_AND_MEAN