Skip to content

Commit

Permalink
Add a makefile to concatenate sources
Browse files Browse the repository at this point in the history
No minification yet
  • Loading branch information
jacobrask committed Nov 17, 2012
1 parent edf7b62 commit ea37d32
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
@@ -0,0 +1,15 @@
all: build

build: src/*.css
@echo '/*!' > underscore.css
@cat LICENSE >> underscore.css
@echo '*/\n\n' >> underscore.css
@cat src/normalize.css >> underscore.css
@echo '\n\n' >> underscore.css;
@cat src/layout.css >> underscore.css
@echo '\n\n' >> underscore.css;
@cat src/text.css >> underscore.css
@echo '\n\n' >> underscore.css;
@cat src/buttons.css >> underscore.css
@echo '\n\n' >> underscore.css;
@cat src/forms.css >> underscore.css

0 comments on commit ea37d32

Please sign in to comment.