abagchi 99/11/30 13:35:22
Modified: c/samples Makefile.in configure.in
Log:
Included EnumVal in the list of samples
Revision Changes Path
1.4 +11 -1 xml-xerces/c/samples/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/xml-xerces/c/samples/Makefile.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Makefile.in 1999/11/12 20:31:22 1.3
+++ Makefile.in 1999/11/30 21:35:21 1.4
@@ -55,6 +55,9 @@
#
#
# $Log: Makefile.in,v $
+# 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 @@
MemParse_DIR=MemParse
PParse_DIR=PParse
StdInParse_DIR=StdInParse
+EnumVal_DIR=EnumVal
LIB_DIR=${XERCESCROOT}/lib
PLATFORM = @platform@
@@ -82,7 +86,7 @@
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 @@
@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 @@
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 @@
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
1.2 +2 -1 xml-xerces/c/samples/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/xml-xerces/c/samples/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- configure.in 1999/11/09 01:09:23 1.1
+++ configure.in 1999/11/30 21:35:21 1.2
@@ -60,5 +60,6 @@
MemParse/Makefile \
Redirect/Makefile \
PParse/Makefile \
-StdInParse/Makefile])
+StdInParse/Makefile \
+EnumVal/Makefile])