mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
104 lines
3.0 KiB
Plaintext
104 lines
3.0 KiB
Plaintext
#// 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.
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// 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
|
|
|
|
|