mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
Getting us a step closer to xslt on mozilla, see 36038,
[NOT PART OF THE BUILD]
This commit is contained in:
parent
7fccdfb86a
commit
9af0e8ac32
@ -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
|
||||
|
@ -45,4 +45,8 @@ CPPSRCS = ArrayList.cpp \
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
ifdef MOZ_XSL
|
||||
DEFINES += -DMOZILLA
|
||||
endif
|
||||
|
||||
install:: $(OBJS)
|
@ -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)
|
@ -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)
|
@ -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)
|
Loading…
Reference in New Issue
Block a user