Skip to content

Instantly share code, notes, and snippets.

@edwardhotchkiss
Created May 25, 2012 03:14
Show Gist options
  • Save edwardhotchkiss/2785534 to your computer and use it in GitHub Desktop.
Save edwardhotchkiss/2785534 to your computer and use it in GitHub Desktop.
blog: Node.JS - Automation with a Makefile
$ cd my_project
$ touch Makefile
$ [sudo] npm install uglify-js -g
$ [sudo] npm install less -g
# CSS Directory
CSS_DIR = assets/css/
# LESS Directory
LESS_DIR = assets/less/
# JS Directory
JS_DIR = assets/js/
# minify CSS with LESSC
css:
lessc ${LESS_DIR}index.less ${CSS_DIR}main.min.css -compress
# minify JavaScript with UgilifyJS
js:
uglifyjs -o ${JS_DIR}main.min.js ${JS_DIR}jekyll.js
# start jekyll
run:
jekyll --server
.PHONY: js css
$ make css
$ make js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment