зеркало из https://github.com/mozilla/pjs.git
Родитель
6932f72e3f
Коммит
ff727cf746
|
@ -1,62 +0,0 @@
|
|||
#!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):
|
||||
# Igor Kushnirskiy <idk@eng.sun.com>
|
||||
#
|
||||
|
||||
DEPTH=..\..\..\..
|
||||
|
||||
MAKE_OBJ_TYPE = lib
|
||||
LIBRARY_NAME = bcorbcore
|
||||
LIB=.\$(OBJDIR)\bcorbcore.lib
|
||||
|
||||
OBJS= \
|
||||
.\$(OBJDIR)\Allocator.obj \
|
||||
.\$(OBJDIR)\Call.obj \
|
||||
.\$(OBJDIR)\Marshaler.obj \
|
||||
.\$(OBJDIR)\ORB.obj \
|
||||
.\$(OBJDIR)\UnMarshaler.obj \
|
||||
.\$(OBJDIR)\util.obj \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
..\public\bcIORB.h \
|
||||
..\public\bcDefs.h \
|
||||
..\public\bcICall.h \
|
||||
..\public\bcIUnMarshaler.h \
|
||||
..\public\bcIAllocator.h \
|
||||
..\public\bcIMarshaler.h \
|
||||
..\public\bcIStub.h \
|
||||
..\public\bcIThread.h
|
||||
|
||||
LLIBS=$(LLIBS) $(LIBNSPR) $(DIST)\lib\xpcom.lib
|
||||
|
||||
INCS = \
|
||||
-I..\public -I..\src \
|
||||
$(INCS) \
|
||||
$(NULL)
|
||||
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
install:: $(LIB)
|
||||
$(MAKE_INSTALL) $(LIB) $(DIST)\lib
|
||||
clobber::
|
||||
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
|
|
@ -44,4 +44,4 @@ include <$(DEPTH)\config\rules.mak>
|
|||
install:: $(DLL)
|
||||
$(MAKE_INSTALL) $(DLL) $(DIST)\bin\components
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\components\$(DLLNAME).dll
|
||||
rm -f "$(DIST)\bin\components\$(DLLNAME).dll"
|
||||
|
|
|
@ -43,7 +43,7 @@ LLIBS=$(LLIBS) $(LIBNSPR) $(DIST)\lib\xpcom.lib
|
|||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
COMPONENT=bcBlackConnectInit
|
||||
CLASSES=bcIBlackConnectInit.class
|
||||
CLASSES=bcIBlackConnectInit.class bcBlackConnectInit.class
|
||||
|
||||
$(COMPONENT).jar.comp: manifest $(CLASSES)
|
||||
$(JDKHOME)\bin\jar cvfm $(COMPONENT).jar.comp manifest *.class
|
||||
|
@ -60,7 +60,7 @@ install-component: $(COMPONENT).jar.comp $(COMPONENT).jar.info $(DLL)
|
|||
clobber-java:
|
||||
-del *.class *.jar.comp
|
||||
clobber:: clobber-java
|
||||
rm $(DIST)\bin\components\$(DLLNAME).dll
|
||||
rm $(DIST)\bin\components\$(COMPONENT).jar.*
|
||||
rm -f "$(DIST)\bin\components\$(DLLNAME).dll"
|
||||
rm -f "$(DIST)\bin\components\$(COMPONENT).jar.*"
|
||||
clobber_all:: clobber-java
|
||||
install:: install-component
|
||||
|
|
|
@ -1,48 +0,0 @@
|
|||
#!nmake
|
||||
#
|
||||
# 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):
|
||||
# Igor Kushnirskiy <idk@eng.sun.com>
|
||||
#
|
||||
|
||||
DEPTH=..\..\..\..
|
||||
|
||||
MAKE_OBJ_TYPE = DLL
|
||||
MODULE=bcjavaloader
|
||||
COMPONENT = 1
|
||||
DLLNAME = bcjavaloader
|
||||
|
||||
DLL=.\$(OBJDIR)\$(DLLNAME).dll
|
||||
|
||||
OBJS= \
|
||||
.\$(OBJDIR)\bcJavaComponentLoader.obj \
|
||||
.\$(OBJDIR)\bcJavaModule.obj \
|
||||
.\$(OBJDIR)\bcJavaComponentFactory.obj \
|
||||
$(NULL)
|
||||
|
||||
LLIBS=$(LLIBS) $(LIBNSPR) $(DIST)\lib\xpcom.lib
|
||||
|
||||
LINCS=-I$(JDKHOME)\include -I$(JDKHOME)\include\win32
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
install:: $(DLL)
|
||||
$(MAKE_INSTALL) $(DLL) $(DIST)\bin\components
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\components\$(DLLNAME).dll
|
|
@ -52,4 +52,4 @@ include <$(DEPTH)\config\rules.mak>
|
|||
install:: $(DLL)
|
||||
$(MAKE_INSTALL) $(DLL) $(DIST)\bin\components
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\components\$(DLLNAME).dll
|
||||
rm -f "$(DIST)\bin\components\$(DLLNAME).dll"
|
||||
|
|
|
@ -57,7 +57,7 @@ install-component: bcJavaSample.jar.comp bcJavaSample.jar.info $(DLL)
|
|||
clobber-java:
|
||||
-del *.class *.jar.comp
|
||||
clobber:: clobber-java
|
||||
rm $(DIST)\bin\components\$(DLLNAME).dll
|
||||
rm $(DIST)\bin\components\bcJavaSample.jar.*
|
||||
rm -f "$(DIST)\bin\components\$(DLLNAME).dll"
|
||||
rm -f "$(DIST)\bin\components\bcJavaSample.jar.*"
|
||||
clobber_all:: clobber-java
|
||||
install:: install-component
|
|
@ -63,6 +63,6 @@ export:: $(PROGRAM)
|
|||
$(MAKE_INSTALL) $(PROGRAM) $(DIST)\bin
|
||||
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\xpidl.exe
|
||||
rm -f "$(DIST)\bin\xpidl.exe"
|
||||
|
||||
$(PROGRAM):: $(OBJS) $(MYLIBS)
|
||||
|
|
|
@ -52,4 +52,4 @@ include <$(DEPTH)\config\rules.mak>
|
|||
install:: $(DLL)
|
||||
$(MAKE_INSTALL) $(DLL) $(DIST)\bin\components
|
||||
clobber::
|
||||
rm -f $(DIST)\bin\components\$(DLLNAME).dll
|
||||
rm -f "$(DIST)\bin\components\$(DLLNAME).dll"
|
||||
|
|
Загрузка…
Ссылка в новой задаче