gecko-dev/layout/build/Makefile

68 строки
1.8 KiB
Makefile
Исходник Обычный вид История

1998-04-14 00:24:54 +04:00
#!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.
DEPTH = ../..
include $(DEPTH)/config/config.mk
LCFLAGS=-D_IMPL_NS_HTML
LIBRARY_NAME = raptorhtml
MODULE=raptor
REQUIRES=xpcom raptor
1998-04-14 00:24:54 +04:00
CPPSRCS=dlldeps.cpp
1998-06-25 22:38:59 +04:00
#INCLUDES += -I../html/base/src -I../base/src -I../css/layout/src
1998-06-26 19:31:45 +04:00
ifeq ($(OS_ARCH),IRIX)
1998-06-26 19:12:06 +04:00
LD = $(CCC)
1998-06-26 19:31:45 +04:00
LD_ALL = -all
LD_NONE = -none
endif
1998-06-25 22:38:59 +04:00
# These must be maintained in the proper order for Linux.
1998-06-26 19:31:45 +04:00
EXTRA_DSO_LDOPTS = \
$(LD_ALL) \
1998-04-14 00:24:54 +04:00
$(DIST)/lib/libraptorhtmldoc_s.a \
$(DIST)/lib/libnglhtmlcon_s.a \
1998-04-14 00:24:54 +04:00
$(DIST)/lib/libraptorhtmlforms_s.a \
$(DIST)/lib/libraptorhtmltable_s.a \
$(DIST)/lib/libraptorhtmlbase_s.a \
$(DIST)/lib/libnglcsslay_s.a \
$(DIST)/lib/libraptorhtmlstyle_s.a \
$(DIST)/lib/libraptorlayout_s.a \
1998-06-26 19:31:45 +04:00
$(DIST)/lib/libraptorevents_s.a \
$(LD_NONE) \
1998-06-25 22:38:59 +04:00
$(DIST)/bin/libraptorhtmlpars.so \
$(DIST)/bin/libraptorgfx.so \
$(DIST)/bin/libraptorbase.so \
$(DIST)/bin/libgmbaseunix.so \
$(DIST)/bin/libjsdom.so \
$(DIST)/bin/libjs.so \
1998-06-25 22:38:59 +04:00
$(DIST)/bin/libnetlib.so \
$(DIST)/bin/libxpcom.so \
$(DIST)/bin/libnspr21.so \
$(DIST)/bin/libplds21.so \
$(DIST)/bin/libplc21.so \
-lm
1998-04-14 00:24:54 +04:00
include $(DEPTH)/config/rules.mk