diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
commit | 726b81b19251674e149ccfbb1abacbd837fc6db0 (patch) | |
tree | fbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/plist/Makefile | |
parent | 34f0890e175698940d49238097579f44e4d78c89 (diff) | |
download | FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst |
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/plist/Makefile')
-rw-r--r-- | node_modules/plist/Makefile | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/node_modules/plist/Makefile b/node_modules/plist/Makefile deleted file mode 100644 index 7a918b5..0000000 --- a/node_modules/plist/Makefile +++ /dev/null @@ -1,75 +0,0 @@ - -# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 -THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) -THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) - -# BIN directory -BIN := $(THIS_DIR)/node_modules/.bin - -# applications -NODE ?= node -NPM ?= $(NODE) $(shell which npm) -BROWSERIFY ?= $(NODE) $(BIN)/browserify -MOCHA ?= $(NODE) $(BIN)/mocha -ZUUL ?= $(NODE) $(BIN)/zuul - -REPORTER ?= spec - -all: dist/plist.js dist/plist-build.js dist/plist-parse.js - -install: node_modules - -clean: - @rm -rf node_modules dist - -dist: - @mkdir -p $@ - -dist/plist-build.js: node_modules lib/build.js dist - @$(BROWSERIFY) \ - --standalone plist \ - lib/build.js > $@ - -dist/plist-parse.js: node_modules lib/parse.js dist - @$(BROWSERIFY) \ - --standalone plist \ - lib/parse.js > $@ - -dist/plist.js: node_modules lib/*.js dist - @$(BROWSERIFY) \ - --standalone plist \ - index.js > $@ - -node_modules: package.json - @NODE_ENV= $(NPM) install - @touch node_modules - -test: - @if [ "x$(BROWSER_NAME)" = "x" ]; then \ - $(MAKE) test-node; \ - else \ - $(MAKE) test-zuul; \ - fi - -test-node: - @$(MOCHA) \ - --reporter $(REPORTER) \ - test/*.js - -test-zuul: - @if [ "x$(BROWSER_PLATFORM)" = "x" ]; then \ - $(ZUUL) \ - --ui mocha-bdd \ - --browser-name $(BROWSER_NAME) \ - --browser-version $(BROWSER_VERSION) \ - test/*.js; \ - else \ - $(ZUUL) \ - --ui mocha-bdd \ - --browser-name $(BROWSER_NAME) \ - --browser-version $(BROWSER_VERSION) \ - --browser-platform "$(BROWSER_PLATFORM)" \ - test/*.js; \ - fi - -.PHONY: all install clean test test-node test-zuul |