You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ab...@locus.apache.org on 2000/02/05 01:04:39 UTC

cvs commit: xml-xerces/c/samples Makefile.in

abagchi     00/02/04 16:04:39

  Modified:    c/samples Makefile.in
  Log:
  Made sure all targets are prepended with :: instead of single :
  
  Revision  Changes    Path
  1.6       +16 -13    xml-xerces/c/samples/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/Makefile.in,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile.in	2000/01/18 23:27:30	1.5
  +++ Makefile.in	2000/02/05 00:04:38	1.6
  @@ -55,6 +55,9 @@
   # 
   #
   # $Log: Makefile.in,v $
  +# Revision 1.6  2000/02/05 00:04:38  abagchi
  +# Made sure all targets are prepended with :: instead of single :
  +#
   # Revision 1.5  2000/01/18 23:27:30  rahulj
   # Modified makefile for the new sample: CreateDOMDocument.
   #
  @@ -91,50 +94,50 @@
   CFLAGS = @cflags@
   PREFIX = @prefix@
   
  -all:	saxprint saxcount domprint domcount redirect memparse pparse stdinparse enumval createdomdocument
  +all::	saxprint saxcount domprint domcount redirect memparse pparse stdinparse enumval createdomdocument
   
  -saxprint:
  +saxprint::
   	@echo Building "SAXPrint"
   	cd $(SAXPrint_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -saxcount:
  +saxcount::
   	@echo Building "SAXCount"
   	cd $(SAXCount_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -domprint:
  +domprint::
   	@echo Building "DOMPrint"
   	cd $(DOMPrint_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -domcount:
  +domcount::
   	@echo Building "DOMCount"
   	cd $(DOMCount_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -memparse:
  +memparse::
   	@echo Building "MemParse"
   	cd $(MemParse_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -redirect:
  +redirect::
   	@echo Building "Redirect"
   	cd $(Redirect_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -pparse:
  +pparse::
   	@echo Building "PParse"
   	cd $(PParse_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -stdinparse:
  +stdinparse::
   	@echo Building "StdInParse"
   	cd $(StdInParse_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -enumval:
  +enumval::
   	@echo Building "EnumVal"
   	cd $(EnumVal_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
  -createdomdocument:
  +createdomdocument::
   	@echo Building "CreateDOMDocument"
   	cd $(CreateDOMDocument_DIR) ; $(MAKE) $(MAKE_FLAGS) ; cd ..
   
   
  -clean:
  +clean::
   	cd $(SAXPrint_DIR) && $(MAKE) $@ && cd ..
   	cd $(SAXCount_DIR) && $(MAKE) $@ && cd ..
   	cd $(DOMPrint_DIR) && $(MAKE) $@ && cd ..
  @@ -146,7 +149,7 @@
   	cd $(EnumVal_DIR) && $(MAKE) $@ && cd ..
   	cd $(CreateDOMDocument_DIR) && $(MAKE) $@ && cd ..
   
  -distclean:
  +distclean::
   	cd $(SAXPrint_DIR) && $(MAKE) $@ && cd ..
   	cd $(SAXCount_DIR) && $(MAKE) $@ && cd ..
   	cd $(DOMPrint_DIR) && $(MAKE) $@ && cd ..