Skip to content

Commit

Permalink
diet target in makefile created css files in diet folder
Browse files Browse the repository at this point in the history
  • Loading branch information
javisantana committed Dec 21, 2012
1 parent 703fbd4 commit bd8ad6d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ CSS_FILES = $(wildcard themes/css/*.css)
CSS_FILES_IE = $(wildcard themes/css/ie/*.css) CSS_FILES_IE = $(wildcard themes/css/ie/*.css)


#dist: dist/cartodb.js dist/cartodb.full.js themes #dist: dist/cartodb.js dist/cartodb.full.js themes
dist: dist/cartodb.js themes dist: dist/cartodb.js dist/cartodb.css dist/cartodb.ie.css




dist_folder: dist_folder:
Expand All @@ -18,6 +18,12 @@ dist/cartodb.uncompressed.js: dist_folder
dist/cartodb.js: dist/cartodb.uncompressed.js dist/cartodb.js: dist/cartodb.uncompressed.js
$(UGLIFYJS) dist/cartodb.uncompressed.js > dist/cartodb.js $(UGLIFYJS) dist/cartodb.uncompressed.js > dist/cartodb.js


dist/cartodb.css: css
cp themes/css/cartodb.css dist

dist/cartodb.ie.css: css
cp themes/css/cartodb.ie.css dist

clean: clean:
rm -rf dist/* rm -rf dist/*


Expand Down

0 comments on commit bd8ad6d

Please sign in to comment.