2018-02-16 12:19:37 -05:00
|
|
|
# tame-progtest Makefile
|
|
|
|
#
|
2022-05-03 14:14:29 -04:00
|
|
|
# Copyright (C) 2014-2022 Ryan Specialty Group, LLC.
|
2018-02-16 12:19:37 -05:00
|
|
|
#
|
|
|
|
# This file is part of TAME.
|
|
|
|
#
|
|
|
|
# TAME 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/>.
|
|
|
|
|
2018-02-23 12:28:03 -05:00
|
|
|
.PHONY: check test modindex dist browserify FORCE
|
2018-02-16 12:39:51 -05:00
|
|
|
|
|
|
|
namespaces=$(shell find src/ -type d)
|
|
|
|
nsindex=$(addsuffix /index.js, $(namespaces))
|
2018-02-16 12:19:37 -05:00
|
|
|
|
2018-02-23 10:40:00 -05:00
|
|
|
.DEFAULT_GOAL: all
|
|
|
|
|
2018-02-23 12:24:14 -05:00
|
|
|
# used be parent Makefile to prevent doc/ building `all'
|
|
|
|
all-nodoc: all
|
2018-02-23 10:40:00 -05:00
|
|
|
all: tame-progtest.js
|
|
|
|
|
2018-02-20 16:12:28 -05:00
|
|
|
modindex: $(nsindex)
|
|
|
|
%/index.js: FORCE
|
|
|
|
$(CURDIR)/build-aux/gen-index "$*" > "$@"
|
|
|
|
|
2018-02-16 12:19:37 -05:00
|
|
|
test: check
|
2018-04-10 15:02:32 -04:00
|
|
|
check: modindex
|
2018-02-16 12:19:37 -05:00
|
|
|
PATH="$(PATH):$(CURDIR)/node_modules/mocha/bin" \
|
2018-03-05 15:53:26 -05:00
|
|
|
mocha @NODE_DESTRUCTURE@ --recursive test/
|
2018-04-10 15:02:32 -04:00
|
|
|
test/runner-test
|
2018-02-16 12:39:51 -05:00
|
|
|
|
2018-02-16 14:02:18 -05:00
|
|
|
browserify: tame-progtest.js
|
2018-02-23 10:40:00 -05:00
|
|
|
tame-progtest.js: check modindex
|
2018-02-16 14:02:18 -05:00
|
|
|
$(CURDIR)/node_modules/.bin/browserify \
|
|
|
|
--debug \
|
|
|
|
-r $(CURDIR)/src/index.js:progtest \
|
|
|
|
$(CURDIR)/src/index.js \
|
|
|
|
-o "$@"
|
2018-02-23 12:28:03 -05:00
|
|
|
|
|
|
|
dist: tame-progtest.js
|