зеркало из https://github.com/mozilla/pjs.git
89 строки
1.9 KiB
Plaintext
Executable File
89 строки
1.9 KiB
Plaintext
Executable File
#!nmake
|
|
#
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
#
|
|
# 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 Sun Microsystems,
|
|
# Inc. Portions created by Sun are
|
|
# Copyright (C) 1999 Sun Microsystems, Inc. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
|
|
DEPTH=..\..
|
|
IGNORE_MANIFEST=1
|
|
DIRS = jni
|
|
|
|
JAVAHOME=$(JDKHOME)
|
|
DEFINES=-D_IMPL_NS_WEB -DWIN32_LEAN_AND_MEAN
|
|
!ifdef JAVA_DOM_OJI_ENABLE
|
|
DEFINES=$(DEFINES) -DJAVA_DOM_OJI_ENABLE
|
|
!endif
|
|
MODULE=javadom
|
|
IS_COMPONENT=1
|
|
LIBRARY_NAME=libjavadom
|
|
|
|
CPPSRCS= \
|
|
!ifdef JAVA_DOM_OJI_ENABLE
|
|
JavaDOMSecurityContext.cpp \
|
|
!endif
|
|
nsJavaDOMImpl.cpp \
|
|
nsJavaDOMModule.cpp \
|
|
$(NULL)
|
|
|
|
CPP_OBJS= \
|
|
!ifdef JAVA_DOM_OJI_ENABLE
|
|
.\$(OBJDIR)\JavaDOMSecurityContext.obj \
|
|
!endif
|
|
.\$(OBJDIR)\nsJavaDOMImpl.obj \
|
|
.\$(OBJDIR)\nsJavaDOMModule.obj \
|
|
$(NULL)
|
|
|
|
EXPORTS = \
|
|
nsIJavaDOM.h
|
|
|
|
!ifndef JAVA_DOM_OJI_ENABLE
|
|
LINCS= \
|
|
-I$(JAVAHOME)\include \
|
|
-I$(JAVAHOME)\include\win32
|
|
!endif
|
|
|
|
MAKE_OBJ_TYPE = DLL
|
|
DLLNAME = javadom
|
|
DLL=.\$(OBJDIR)\$(DLLNAME).dll
|
|
|
|
LCFLAGS = \
|
|
$(LCFLAGS) \
|
|
$(DEFINES) \
|
|
$(NULL)
|
|
|
|
LLIBS= \
|
|
!ifdef JAVA_DOM_OJI_ENABLE
|
|
$(DIST)\lib\oji.lib \
|
|
!else
|
|
$(JAVAHOME)\lib\jvm.lib \
|
|
!endif
|
|
$(DIST)\lib\xpcom.lib \
|
|
$(LIBNSPR)
|
|
|
|
include <$(DEPTH)\config\config.mak>
|
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
install:: $(DLL)
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).dll $(DIST)\bin\components
|
|
$(MAKE_INSTALL) .\$(OBJDIR)\$(DLLNAME).lib $(DIST)\lib
|
|
|
|
clobber::
|
|
rm -f $(DIST)\bin\components\$(DLLNAME).dll
|
|
rm -f $(DIST)\lib\$(DLLNAME).lib
|