%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /data/www_bck/varak.net_bck/jwchat.varak.net/
Upload File :
Create Path :
Current File : //data/www_bck/varak.net_bck/jwchat.varak.net/Makefile.win

# You can set these variables from the command line.
GRUNT   		?= node_modules\.bin\grunt.cmd
BOWER                   ?= node_modules\.bin\bower.cmd
PHANTOMJS               ?= node_modules\.bin\phantomjs.cmd
SASS 			?= sass 
RMRF 			?= rmdir /q /s 
RMF 			?= del /q 
HTTPSERVE		?= ./node_modules/.bin/http-server.cmd

.PHONY: all help clean css minjs build

all: dev

help:
	@echo "Please use \`make <target>' where <target> is one of the following"
	@echo "  dev        to set up the development environment"
	@echo "  build      create minified builds containing converse.js and all its dependencies"
	@echo "  serve      to serve this directory via a webserver on port 8000"

########################################################################
## Miscellaneous

serve:
	$(HTTPSERVE) -p 8000

########################################################################
## Install dependencies

stamp-npm: package.json
	npm install
	$(GRUNT) touch:npm

stamp-bower: stamp-npm bower.json
	$(BOWER) install
	$(GRUNT) touch:bower

clean::
	@if EXIST stamp-npm $(RMF) stamp-npm
	@if EXIST stamp-bower $(RMF) stamp-bower
	@if EXIST node_modules\. $(RMRF) node_modules
	@if EXIST components\. $(RMRF) components

dev: clean
	npm install
	$(BOWER) update
	bundler install --path=.

########################################################################
## Builds

css::
	$(SASS) sass/converse.scss > css/converse.css

build::
	$(GRUNT) jst
	$(GRUNT) minify

########################################################################
## Tests

check:: stamp-npm
	$(PHANTOMJS) node_modules/phantom-jasmine/lib/run_jasmine_test.coffee tests.html


Zerion Mini Shell 1.0