Skip to content

Instantly share code, notes, and snippets.

View EpocSquadron's full-sized avatar

Daniel S Poulin EpocSquadron

View GitHub Profile
@EpocSquadron
EpocSquadron / Makefile
Created September 15, 2011 17:45 — forked from rgrove/Makefile
Simple Makefile to minify CSS and JS.
# Patterns matching CSS files that should be minified. Files with a -min.css
# suffix will be ignored.
CSS_FILES = $(filter-out %-min.css,$(wildcard \
public/css/*.css \
public/css/**/*.css \
))
# Patterns matching JS files that should be minified. Files with a -min.js
# suffix will be ignored.
JS_FILES = $(filter-out %-min.js,$(wildcard \