diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-23 12:28:03 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-23 12:28:03 -0500 |
commit | 6487282f559e1e45e9e03198ab915ff3a9023fa3 (patch) | |
tree | 192f61ba773785c5c4f1eab257d5e6f22a09a059 | |
parent | b490d0737140919549fb1eb0a3650f8d0e9c0a54 (diff) | |
download | tame-6487282f559e1e45e9e03198ab915ff3a9023fa3.tar.gz tame-6487282f559e1e45e9e03198ab915ff3a9023fa3.tar.bz2 tame-6487282f559e1e45e9e03198ab915ff3a9023fa3.zip |
progtest: add dist target
-rw-r--r-- | progtest/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/progtest/Makefile b/progtest/Makefile index 1365ed2..f71de4f 100644 --- a/progtest/Makefile +++ b/progtest/Makefile @@ -17,7 +17,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -.PHONY: check test modindex browserify FORCE +.PHONY: check test modindex dist browserify FORCE namespaces=$(shell find src/ -type d) nsindex=$(addsuffix /index.js, $(namespaces)) @@ -44,3 +44,5 @@ tame-progtest.js: check modindex -r $(CURDIR)/src/index.js:progtest \ $(CURDIR)/src/index.js \ -o "$@" + +dist: tame-progtest.js |