mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
108 lines
3.1 KiB
Plaintext
108 lines
3.1 KiB
Plaintext
#// The contents of this file are subject to the Netscape Public
|
|
#// License Version 1.1 (the "License"); you may not use this file
|
|
#// except in compliance with the License. You may obtain a copy of
|
|
#// the License at http://www.mozilla.org/NPL/
|
|
#//
|
|
#// Software distributed under the License is distributed on an "AS
|
|
#// IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
#// implied. See the License for the specific language governing
|
|
#// rights and limitations under the License.
|
|
#//
|
|
#// The Original Code is mozilla.org code.
|
|
#//
|
|
#// The Initial Developer of the Original Code is Netscape
|
|
#// Communications Corporation. Portions created by Netscape are
|
|
#// Copyright (C) 1998 Netscape Communications Corporation. All
|
|
#// Rights Reserved.
|
|
#//
|
|
#// Contributor(s):
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Specify the depth of the current directory relative to the
|
|
#// root of NS
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
DEPTH=..\..
|
|
include <$(DEPTH)\config\config.mak>
|
|
|
|
!ifdef MOZ_OJI
|
|
# DIRS = java classes
|
|
!endif
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Define any Public Make Variables here: (ie. PDFFILE, MAPFILE, ...)
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
|
|
DLLNAME = jsd$(MOZ_BITS)$(VERSION_NUMBER)
|
|
PDBFILE = $(DLLNAME).pdb
|
|
MAPFILE = $(DLLNAME).map
|
|
RESFILE = jsd$(MOZ_BITS)40.res
|
|
DLL =.\$(OBJDIR)\$(DLLNAME).dll
|
|
MAKE_OBJ_TYPE = DLL
|
|
|
|
!if "$(MOZ_BITS)" != "16"
|
|
LINCS = -I$(DEPTH)\include \
|
|
-I$(PUBLIC)\js
|
|
!endif
|
|
|
|
!if "$(MOZ_BITS)" == "16"
|
|
DEFFILE = $(DLLNAME).def
|
|
!endif
|
|
|
|
# LCFLAGS= $(LCFLAGS) -DEXPORT_JSD_API -DJSD_THREADSAFE
|
|
|
|
LLIBS= $(LIBNSPR) \
|
|
$(DIST)\lib\js$(MOZ_BITS)$(VERSION_NUMBER).lib \
|
|
!ifdef MOZ_OJI
|
|
$(DIST)\lib\oji$(MOZ_BITS).lib
|
|
!endif
|
|
|
|
!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE)
|
|
LLIBS=$(LLIBS) $(GLOWDIR)\glowcode.lib
|
|
!endif
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Define the files necessary to build the target (ie. OBJS)
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
OBJS = \
|
|
.\$(OBJDIR)\jsdebug.obj \
|
|
.\$(OBJDIR)\jsd_high.obj \
|
|
.\$(OBJDIR)\jsd_hook.obj \
|
|
.\$(OBJDIR)\jsd_lock.obj \
|
|
.\$(OBJDIR)\jsd_scpt.obj \
|
|
.\$(OBJDIR)\jsd_stak.obj \
|
|
.\$(OBJDIR)\jsd_step.obj \
|
|
.\$(OBJDIR)\jsd_text.obj \
|
|
.\$(OBJDIR)\jsd_val.obj \
|
|
$(NULL)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// install headers
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
INSTALL_DIR=$(PUBLIC)\jsd
|
|
INSTALL_FILE_LIST= \
|
|
jsdebug.h \
|
|
$(NULL)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Include the common makefile rules
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
install:: $(DLL)
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
|
|
|
|
export:: INSTALL_FILES
|
|
|
|
|