Getting us a step closer to xslt on mozilla, see 36038,

[NOT PART OF THE BUILD]
This commit is contained in:
axel%pike.org 2005-11-02 07:35:41 +00:00
parent 7fccdfb86a
commit 9af0e8ac32
5 changed files with 22 additions and 2 deletions

View File

@ -26,6 +26,10 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = base net xml xpath xslt main
DIRS = base net xml xpath xslt
ifndef MOZ_XSL
DIRS += main
endif
include $(topsrcdir)/config/rules.mk

View File

@ -45,4 +45,8 @@ CPPSRCS = ArrayList.cpp \
include $(topsrcdir)/config/rules.mk
ifdef MOZ_XSL
DEFINES += -DMOZILLA
endif
install:: $(OBJS)

View File

@ -26,12 +26,18 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = dom parser printer util
DIRS = dom parser util
ifndef MOZ_XSL
DIRS += printer
endif
CPPSRCS = XMLDOMUtils.cpp XMLUtils.cpp
include $(topsrcdir)/config/rules.mk
INCLUDES += -I$(srcdir)/../base -I$(srcdir)/dom
ifdef MOZ_XSL
DEFINES += -DMOZILLA
endif
install:: $(OBJS)

View File

@ -67,5 +67,8 @@ include $(topsrcdir)/config/rules.mk
INCLUDES += -I$(srcdir)/../base -I$(srcdir)/../xml \
-I$(srcdir)/../xml/dom -I$(srcdir)/../xslt
ifdef MOZ_XSL
DEFINES += -DMOZILLA
endif
install:: $(OBJS)

View File

@ -43,5 +43,8 @@ INCLUDES += -I$(srcdir) -I$(srcdir)/../base -I$(srcdir)/../net \
-I$(srcdir)/../xml/printer -I$(srcdir)/../xpath -I$(srcdir)/../xslt/util \
-I$(srcdir)/../xslt/functions
COMPILE_CXXFLAGS += -D__cplusplus
ifdef MOZ_XSL
DEFINES += -DMOZILLA
endif
install:: $(OBJS)