dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/csdoc il2doc.c,NONE,1.1 Makefile.am,1.1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/csdoc il2doc.c,NONE,1.1 Makefile.am,1.14,1.15
Date: Fri, 23 May 2003 21:56:34 -0400

Update of /cvsroot/dotgnu-pnet/pnet/csdoc
In directory subversions:/tmp/cvs-serv24246/csdoc

Modified Files:
        Makefile.am 
Added Files:
        il2doc.c 
Log Message:


Add the "il2doc" utility program.


--- NEW FILE ---
/*
 * il2doc.c - Convert an IL binary into XML documentation form.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
[...2338 lines suppressed...]

        /* Dump the top-level public classes */
        classInfo = 0;
        while((classInfo = (ILClass *)ILImageNextToken
                                (image, IL_META_TOKEN_TYPE_DEF, (void 
*)classInfo)) != 0)
        {
                if(ILClass_IsPublic(classInfo))
                {
                        DumpClass(classInfo);
                }
        }

        /* Clean up and exit */
        ILImageDestroy(image);
        return 0;
}

#ifdef  __cplusplus
};
#endif

Index: Makefile.am
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/csdoc/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** Makefile.am 4 Jul 2002 04:59:12 -0000       1.14
--- Makefile.am 24 May 2003 01:56:32 -0000      1.15
***************
*** 1,4 ****
  bin_PROGRAMS       = csdoc2texi csdoc2html csdoc2hier
! noinst_PROGRAMS    = csdocvalil csdoc2stub csdoc2test src2xml
  man_MANS           = csdoc2texi.1 csdoc2html.1 csdoc2hier.1
  EXTRA_DIST         = $(man_MANS)
--- 1,4 ----
  bin_PROGRAMS       = csdoc2texi csdoc2html csdoc2hier
! noinst_PROGRAMS    = csdocvalil csdoc2stub csdoc2test src2xml il2doc
  man_MANS           = csdoc2texi.1 csdoc2html.1 csdoc2hier.1
  EXTRA_DIST         = $(man_MANS)
***************
*** 30,34 ****
  csdoc2test_LDADD   = $(CSDOC_LIBS)
  
  src2xml_SOURCES    = src2xml.c
  
! AM_CFLAGS = -I$(top_srcdir)/include
\ No newline at end of file
--- 30,37 ----
  csdoc2test_LDADD   = $(CSDOC_LIBS)
  
+ il2doc_SOURCES     = il2doc.c
+ il2doc_LDADD       = $(CSDOC_LIBS)
+ 
  src2xml_SOURCES    = src2xml.c
  
! AM_CFLAGS = -I$(top_srcdir)/include





reply via email to

[Prev in Thread] Current Thread [Next in Thread]