Add an option for building Java-supplement and
fix the Java building problem about JDIRS.
This commit is contained in:
sherry.shen%sun.com 2000-03-09 01:14:22 +00:00
Родитель a68bca46d6
Коммит a783dc2393
8 изменённых файлов: 81 добавлений и 7 удалений

Просмотреть файл

@ -25,13 +25,8 @@ srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS= xpcom \
util \
webshell \
DIRS= util \
webclient \
$(NULL)
ifeq ($(OS_ARCH),BeOS)
EXTRA_DSO_LDOPTS += -lbe
endif
include $(topsrcdir)/config/rules.mk

7
java/makefiles Normal file
Просмотреть файл

@ -0,0 +1,7 @@
java/Makefile
java/util/Makefile
java/util/classes/Makefile
java/webclient/Makefile
java/webclient/classes/Makefile
java/webclient/src/Makefile
java/webclient/src/motif/Makefile

37
java/util/Makefile.in Normal file
Просмотреть файл

@ -0,0 +1,37 @@
#!gmake
# 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.
#//------------------------------------------------------------------------
#//
#// Makefile to build the java utility classes
#//
#//------------------------------------------------------------------------
DEPTH = ../..
topsrcdir = @top_srcdir@
VPATH = @srcdir@
srcdir = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS= \
classes \
$(NULL)
include $(topsrcdir)/config/rules.mk

Просмотреть файл

Просмотреть файл

@ -0,0 +1,35 @@
#//------------------------------------------------------------------------
#//
#// Makefile to build the java/webclient tree
#//
#//------------------------------------------------------------------------
#//------------------------------------------------------------------------
#//
#// Specify the depth of the current directory relative to the
#// root of NS
#//
#//------------------------------------------------------------------------
DEPTH=../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
#//------------------------------------------------------------------------
#//
#// Specify any "command" targets. (ie. DIRS, INSTALL_FILES, ...)
#// (these must come before the common makefiles are included)
#//
#// DIRS - There are subdirectories to process
#//
#//------------------------------------------------------------------------
DIRS= classes src
#//------------------------------------------------------------------------
#//
#// Include the common makefile rules
#//
#//------------------------------------------------------------------------
include $(topsrcdir)/config/rules.mk

Просмотреть файл

Просмотреть файл

Просмотреть файл