1. What's this?
===============

Gmet is generic metadate tools.

Gmet consists of 2 parts, parser and processor.

Parser parses .mt file which defines specific metadata
format, and generates C code which parse metadata
corresponding to the format.

Processor processes or prints metadata which was
parsed by C parser.

2. Licence
==========

BSD Licence.

3. Requirements
===============

perl CPAN module
  Parse::RecDescent

4. Usage
========

* Prepare .mt file
	Refer ./MT_GRAMMAR.

* Input .mt file to Parser
	Exec command.
	  $gmet XXX.mt
	This command output XXX.c and XXX.h.

* Compile and link
	You already used libgmet and libgmet_print
	  $gcc XXX.c -lgmet -lgmet_print -o <out file>
        If your system doesn't set /usr/local/lib to
        library path, Execute following:
          $export LD_LIBRARY_PATH=/usr/local/lib

* Process metadata corresponding to .mt

* Test script is on test directory, or on svn repository.
  It will help you.

5. AUTHOR
=========

	Tetsuya Yasuda <tetsuyayasuda@usrs.sourceforge.jp>

6. INDENT
=========

apply "indent -bli0 -npcs -prs -nut".
