1
0
Fork 0
liza/Makefile.am

44 lines
1.2 KiB
Makefile
Raw Normal View History

## liza Makefile.am for automake
#
# Copyright (C) 2014 LoVullo Associates, Inc.
#
# This file is part of liza.
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
##
path_src = $(top_builddir)/src
path_test = $(top_builddir)/test
2014-04-18 10:03:40 -04:00
namespaces=$(shell find src -type d)
nsindex=$(addsuffix /index.js, $(namespaces))
2014-01-17 00:17:23 -05:00
SUBDIRS = doc
EXTRA_DIST = src package.json $(path_src)/version.js README.md autogen.sh
2014-01-17 00:17:23 -05:00
2014-04-18 10:03:40 -04:00
.PHONY: FORCE todo
2014-04-18 10:03:40 -04:00
all-am: modindex
2014-04-18 10:03:40 -04:00
modindex: $(nsindex)
%/index.js: FORCE
./tools/gen-index "$*" > "$@"
2014-04-18 08:59:29 -04:00
test: check
check:
@PATH="$(PATH):$(CURDIR)/node_modules/mocha/bin" \
mocha --require $(path_test)/pre.js --recursive $(TESTARGS)
2014-04-18 10:03:40 -04:00
FORCE: