From 0448f3de0bc3e9aa71bd095e87fd1cc2584e0a99 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 12 Jul 2007 21:24:08 +0000 Subject: Add DOMImplementation, DOMImplementationList Add DOMImplementationRegistry Define DOMImplementationSource and provide API to allow their registration This little lot should permit some kind of sensible DOM bootstrapping. svn path=/trunk/dom/; revision=3403 --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index ae0c9eb..b0f78b2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,14 +34,17 @@ OBJS = # Targets release: $(addprefix Release/, $(addsuffix .o, $(OBJS))) + @${MAKE} -C bootstrap release @${MAKE} -C core release @${AR} ${ARFLAGS} $(RELEASE) Release/* debug: $(addprefix Debug/, $(addsuffix .o, $(OBJS))) + @${MAKE} -C bootstrap debug @${MAKE} -C core debug @${AR} ${ARFLAGS} $(DEBUG) Debug/* clean: + @${MAKE} -C bootstrap clean @${MAKE} -C core clean ifneq (${OBJS}, ) -@${RM} ${RMFLAGS} $(addprefix Release/, $(addsuffix .o, ${OBJS})) -- cgit v1.2.3