Sha256: 4a6ab3d9f4b6c3a51442a4555a467ff5027c91868cd3947ebc3e7a599db8615a

Contents?: true

Size: 836 Bytes

Versions: 11

Compression:

Stored size: 836 Bytes

Contents

.PHONY: data.js glossary.js

run: browserify
	npm start .

browserify:
	browserify helpline.js -o helpline_browserify.js

build-mac: install browserify
	npm run build
	cp -r build/mac/HelpLine.app /Applications
upload:
	scp build/HelpLine-0.0.1.dmg pitecan.com:/www/www.pitecan.com/tmp/HelpLine.dmg

build-chromebook: browserify install
	npm run build

#dmg: build-mac
#	-/bin/rm -f HelpLine.dmg
#	hdiutil create -srcfolder build/mac/HelpLine.app -volname HelpLine HelpLine.dmg

#install: npm browserify cursorpos electron
install:
	npm install

electron:
	npm install electron

#
# Scrapboxからデータ更新
#
update: data.js glossary.js
data.js:
	ruby getdata.rb > data.js
glossary.js:
	ruby getglossary.rb > glossary.js

clean:
	-/bin/rm -r -f node_modules
	-/bin/rm -r -f build
	-/bin/rm -f HelpLine.dmg

all: update build-mac

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
helpline-0.1.10 Makefile
helpline-0.1.9 Makefile
helpline-0.1.8 Makefile
helpline-0.1.7 Makefile
helpline-0.1.6 Makefile
helpline-0.1.5 Makefile
helpline-0.1.4 Makefile
helpline-0.1.3 Makefile
helpline-0.1.2 Makefile
helpline-0.1.1 Makefile
helpline-0.1.0 Makefile