Sha256: b96cee9b1aa2c14a2ee4d665d0889f709cf5883c69ae02a08c1713db08ef3161

Contents?: true

Size: 917 Bytes

Versions: 3

Compression:

Stored size: 917 Bytes

Contents

.PHONY: data.js glossary.js test

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


#
# gem
#
release:
	rake release

#
# テスト
#
test:
	ruby test/test.rb

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
helpline-0.1.17 Makefile
helpline-0.1.16 Makefile
helpline-0.1.15 Makefile