Cleaned it up and eliminated the pointless #!gmake.

This commit is contained in:
briano%netscape.com 1999-09-02 00:30:07 +00:00
Родитель 275512cc1a
Коммит 64f859af0e
15 изменённых файлов: 238 добавлений и 271 удалений

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ..
topsrcdir = @top_srcdir@
@ -22,8 +22,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = xmlparse xmltok # xmlwf
include $(topsrcdir)/config/config.mk
DIRS = xmlparse xmltok
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,40 +13,36 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH=../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = expat
LIBRARY_NAME = expat_s
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLPARSEAPI="__attribute__ ((dllexport))"
endif
CSRCS = \
hashtable.c \
xmlparse.c \
$(NULL)
EXPORTS = \
xmlparse.h \
$(NULL)
EXPORTS = xmlparse.h
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MODULE=expat
LOCAL_INCLUDES = -I$(srcdir)/../xmltok
MKSHLIB :=
# We want only the static lib, not the shared lib
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLPARSEAPI="__attribute__ ((dllexport))"
endif

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

@ -1,4 +1,3 @@
#!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
@ -14,35 +13,30 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH=../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = expat
LIBRARY_NAME = xmltok_s
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLTOKAPI="__attribute__ ((dllexport))"
endif
CSRCS = \
xmltok.c \
xmlrole.c \
$(NULL)
EXPORTS = \
$(NULL)
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MKSHLIB :=
# We want only the static lib, not the shared lib
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLTOKAPI="__attribute__ ((dllexport))"
endif

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ..
topsrcdir = @top_srcdir@
@ -28,6 +28,4 @@ ifdef ENABLE_TESTS
DIRS += robot
endif
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../..
topsrcdir = @top_srcdir@
@ -23,10 +23,11 @@ VPATH = .:@srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME = raptorhtmlpars
MODULE = htmlparser
DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD
REQUIRES = xpcom netlib raptor
CPPSRCS= \
CPPSRCS = \
nsDTDUtils.cpp \
nsHTMLTokenizer.cpp \
nsXMLTokenizer.cpp \
@ -56,11 +57,13 @@ CPPSRCS= \
nsExpatDTD.cpp \
$(NULL)
#
# Disable some DTD debugging code in the parser that
# breaks on some compilers because of some broken
# streams code in prstrm.cpp.
#
ifndef MOZ_DISABLE_DTD_DEBUG
CPPSRCS += nsDTDDebug.cpp prstrm.cpp
CPPSRCS += nsDTDDebug.cpp prstrm.cpp
endif
EXPORTS = \
@ -99,11 +102,7 @@ EXPORTS = \
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MODULE=htmlparser
REQUIRES = xpcom netlib raptor
EXTRA_DSO_LDOPTS =\
EXTRA_DSO_LDOPTS = \
-L$(DIST)/lib \
-lexpat_s \
-lxmltok_s \
@ -112,5 +111,7 @@ EXTRA_DSO_LDOPTS =\
include $(topsrcdir)/config/rules.mk
DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD
INCLUDES += -I.

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../..
topsrcdir = @top_srcdir@
@ -24,6 +24,4 @@ include $(DEPTH)/config/autoconf.mk
DIRS = logparse
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../../..
topsrcdir = @top_srcdir@
@ -24,9 +24,7 @@ include $(DEPTH)/config/autoconf.mk
PROGRAM = grabpage
CPPSRCS = \
grabpage.cpp \
$(NULL)
CPPSRCS = grabpage.cpp
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ..
topsrcdir = @top_srcdir@
@ -22,8 +22,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = xmlparse xmltok # xmlwf
include $(topsrcdir)/config/config.mk
DIRS = xmlparse xmltok
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,40 +13,36 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH=../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = expat
LIBRARY_NAME = expat_s
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLPARSEAPI="__attribute__ ((dllexport))"
endif
CSRCS = \
hashtable.c \
xmlparse.c \
$(NULL)
EXPORTS = \
xmlparse.h \
$(NULL)
EXPORTS = xmlparse.h
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MODULE=expat
LOCAL_INCLUDES = -I$(srcdir)/../xmltok
MKSHLIB :=
# We want only the static lib, not the shared lib
override NO_SHARED_LIB=1
override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
ifdef MOZ_STRIP_NOT_EXPORTED
DEFINES += -DXMLPARSEAPI="__attribute__ ((dllexport))"
endif

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ..
topsrcdir = @top_srcdir@
@ -28,6 +28,4 @@ ifdef ENABLE_TESTS
DIRS += robot
endif
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../..
topsrcdir = @top_srcdir@
@ -23,10 +23,11 @@ VPATH = .:@srcdir@
include $(DEPTH)/config/autoconf.mk
LIBRARY_NAME = raptorhtmlpars
MODULE = htmlparser
DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD
REQUIRES = xpcom netlib raptor
CPPSRCS= \
CPPSRCS = \
nsDTDUtils.cpp \
nsHTMLTokenizer.cpp \
nsXMLTokenizer.cpp \
@ -56,11 +57,13 @@ CPPSRCS= \
nsExpatDTD.cpp \
$(NULL)
#
# Disable some DTD debugging code in the parser that
# breaks on some compilers because of some broken
# streams code in prstrm.cpp.
#
ifndef MOZ_DISABLE_DTD_DEBUG
CPPSRCS += nsDTDDebug.cpp prstrm.cpp
CPPSRCS += nsDTDDebug.cpp prstrm.cpp
endif
EXPORTS = \
@ -99,11 +102,7 @@ EXPORTS = \
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MODULE=htmlparser
REQUIRES = xpcom netlib raptor
EXTRA_DSO_LDOPTS =\
EXTRA_DSO_LDOPTS = \
-L$(DIST)/lib \
-lexpat_s \
-lxmltok_s \
@ -112,5 +111,7 @@ EXTRA_DSO_LDOPTS =\
include $(topsrcdir)/config/rules.mk
DEFINES += -D_IMPL_NS_HTMLPARS -DXML_DTD
INCLUDES += -I.

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../..
topsrcdir = @top_srcdir@
@ -24,6 +24,4 @@ include $(DEPTH)/config/autoconf.mk
DIRS = logparse
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ../../..
topsrcdir = @top_srcdir@
@ -24,9 +24,7 @@ include $(DEPTH)/config/autoconf.mk
PROGRAM = grabpage
CPPSRCS = \
grabpage.cpp \
$(NULL)
CPPSRCS = grabpage.cpp
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,6 +13,7 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH = ..
topsrcdir = @top_srcdir@
@ -22,8 +22,6 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/config.mk
DIRS = public src
include $(topsrcdir)/config/rules.mk

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

@ -1,4 +1,3 @@
#!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
@ -14,15 +13,16 @@
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
DEPTH=../..
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DEFINES += -D_IMPL_NS_UI
MODULE = raptor
EXPORTS = \
nsIView.h \
@ -35,8 +35,7 @@ EXPORTS = \
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
MODULE = raptor
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk
DEFINES += -D_IMPL_NS_UI