From 80e89c7e3381d8bdefb6b6ce6f0b7f0561cb4a82 Mon Sep 17 00:00:00 2001 From: "Unknown (abagchi)" <dev-null@apache.org> Date: Tue, 30 Nov 1999 21:35:21 +0000 Subject: [PATCH] Included EnumVal in the list of samples git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171437 13f79535-47bb-0310-9956-ffa450edef68 --- samples/Makefile.in | 12 +++++++++++- samples/configure.in | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/samples/Makefile.in b/samples/Makefile.in index 0897e2e41..d746156d5 100644 --- a/samples/Makefile.in +++ b/samples/Makefile.in @@ -55,6 +55,9 @@ # # # $Log$ +# Revision 1.4 1999/11/30 21:35:21 abagchi +# Included EnumVal in the list of samples +# # Revision 1.3 1999/11/12 20:31:22 rahulj # Replaced XML4CROOT with XERCESCROOT. # @@ -74,6 +77,7 @@ Redirect_DIR=Redirect MemParse_DIR=MemParse PParse_DIR=PParse StdInParse_DIR=StdInParse +EnumVal_DIR=EnumVal LIB_DIR=${XERCESCROOT}/lib PLATFORM = @platform@ @@ -82,7 +86,7 @@ CXXFLAGS = @cxxflags@ CFLAGS = @cflags@ PREFIX = @prefix@ -all: saxprint saxcount domprint domcount redirect memparse pparse stdinparse +all: saxprint saxcount domprint domcount redirect memparse pparse stdinparse enumval saxprint: @echo Building "SAXPrint" @@ -116,6 +120,10 @@ stdinparse: @echo Building "StdInParse" cd $(StdInParse_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd .. +enumval: + @echo Building "EnumVal" + cd $(EnumVal_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd .. + clean: cd $(SAXPrint_DIR) && $(MAKE) $@ && cd .. cd $(SAXCount_DIR) && $(MAKE) $@ && cd .. @@ -125,6 +133,7 @@ clean: cd $(Redirect_DIR) && $(MAKE) $@ && cd .. cd $(PParse_DIR) && $(MAKE) $@ && cd .. cd $(StdInParse_DIR) && $(MAKE) $@ && cd .. + cd $(EnumVal_DIR) && $(MAKE) $@ && cd .. distclean: cd $(SAXPrint_DIR) && $(MAKE) $@ && cd .. @@ -135,6 +144,7 @@ distclean: cd $(Redirect_DIR) && $(MAKE) $@ && cd .. cd $(PParse_DIR) && $(MAKE) $@ && cd .. cd $(StdInParse_DIR) && $(MAKE) $@ && cd .. + cd $(EnumVal_DIR) && $(MAKE) $@ && cd .. rm -f Makefile config.cache config.log config.status rm -f *~ core diff --git a/samples/configure.in b/samples/configure.in index 8ca86029e..dd99f5500 100644 --- a/samples/configure.in +++ b/samples/configure.in @@ -60,5 +60,6 @@ DOMPrint/Makefile \ MemParse/Makefile \ Redirect/Makefile \ PParse/Makefile \ -StdInParse/Makefile]) +StdInParse/Makefile \ +EnumVal/Makefile]) -- GitLab