Sha256: 923fb4a27c2c7fec30ea307279824f75c65e9cd5857f80bbd1b51f461c2370a0

Contents?: true

Size: 671 Bytes

Versions: 17

Compression:

Stored size: 671 Bytes

Contents

.PHONY: all serve clean

COFFEE:=./node_modules/.bin/coffee

#### General

all: build

build: src/*coffee
	@$(COFFEE) -v > /dev/null
	$(COFFEE) -o lib/ -c src/*.coffee

clean:
	rm -f lib/*.js


#### Testing

test_server: build
	node tests/test_server/server.js

serve:
	@if [ -e .pidfile.pid ]; then		\
		kill `cat .pidfile.pid`;	\
		rm .pidfile.pid;		\
	fi

	@while [ 1 ]; do				\
		make build;				\
		echo " [*] Running http server";	\
		make test_server &			\
		SRVPID=$$!;				\
		echo $$SRVPID > .pidfile.pid;		\
		echo " [*] Server pid: $$SRVPID";	\
		inotifywait -r -q -e modify .;		\
		kill `cat .pidfile.pid`;		\
		rm -f .pidfile.pid;			\
		sleep 0.1;				\
	done

Version data entries

17 entries across 17 versions & 7 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/sockjs/Makefile
disco_app-0.18.0 test/dummy/node_modules/sockjs/Makefile
disco_app-0.18.2 test/dummy/node_modules/sockjs/Makefile
enju_library-0.3.8 spec/dummy/node_modules/sockjs/Makefile
ilog-0.4.1 node_modules/sockjs/Makefile
ilog-0.4.0 node_modules/sockjs/Makefile
ilog-0.3.3 node_modules/sockjs/Makefile
jester-data-8.0.0 node_modules/sockjs/Makefile
ezii-os-5.2.1 node_modules/sockjs/Makefile
ezii-os-2.0.1 node_modules/sockjs/Makefile
ezii-os-1.1.0 node_modules/sockjs/Makefile
ezii-os-1.0.0 node_modules/sockjs/Makefile
ezii-os-0.0.0.1.0 node_modules/sockjs/Makefile
ezii-os-0.0.0.0.1 node_modules/sockjs/Makefile
optimacms-0.4.3 spec/dummy/node_modules/sockjs/Makefile
optimacms-0.4.2 spec/dummy/node_modules/sockjs/Makefile
dragonfly_puppeteer-0.1.0 node_modules/sockjs/Makefile