1## Run `./bootstrap` to generate the "Makefile.in" files in this directory and
2## the "$SUBDIRS" subdirectories.
3
4SUBDIRS = include src . tests win32
5
6EXTRA_DIST = README LICENSE CMakeLists.txt doc/doxygen.cfg
7
8pkgconfigdir = $(libdir)/pkgconfig
9pkgconfig_DATA = yaml-0.1.pc
10
11maintainer-clean-local:
12	-rm -f aclocal.m4 config.h.in configure config/*
13	-find ${builddir} -name Makefile.in -exec rm -f '{}' ';'
14
15distclean-local:
16	-make -C tests/run-test-suite clean
17
18.PHONY: bootstrap
19bootstrap: maintainer-clean
20	./bootstrap
21	./configure
22	make
23
24test: all
25	make -C tests check-TESTS
26
27test-suite:
28	(export LIBYAML_DIR=$$PWD; make -C tests/run-test-suite test)
29
30test-all: test test-suite
31