mirror of
https://github.com/valitydev/yamerl.git
synced 2024-11-06 10:55:16 +00:00
120ef7ea16
This parser is written against the YAML 1.2 specification. It may therefore be used as a JSON parser as well. The project is an Erlang application. The module "yaml_parser" parses a YAML source (a string, a file, whatever) and runs a callback function for each token scanned. It's more or less like a SAX XML parser. The testsuite provided isn't complete yet, though it contains all the example found in the specification.
16 lines
368 B
Makefile
16 lines
368 B
Makefile
# $Id: Makefile.am 2944 2010-05-11 08:46:58Z jean.sebastien.pedron $
|
|
|
|
ACLOCAL_FLAGS = -I m4
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = include src ebin testsuite
|
|
|
|
EXTRA_DIST = REPOREV \
|
|
debian/changelog \
|
|
debian/compat \
|
|
debian/control \
|
|
debian/copyright \
|
|
debian/rules
|
|
|
|
distdir = $(PACKAGE)-$(VERSION)$(APP_DISTSUFFIX)
|