diff options
-rwxr-xr-x | swatchmaker/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/swatchmaker/Makefile b/swatchmaker/Makefile index d3f1f918..a5af0778 100755 --- a/swatchmaker/Makefile +++ b/swatchmaker/Makefile @@ -5,10 +5,10 @@ OUTPUT_PATH = swatch bootswatch: - lessc swatchmaker.less > ${OUTPUT_PATH}/bootstrap.css - lessc --compress swatchmaker.less > ${OUTPUT_PATH}/bootstrap.min.css - lessc swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.css - lessc --compress swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.min.css + recess --compile swatchmaker.less > ${OUTPUT_PATH}/bootstrap.css + recess --compress swatchmaker.less > ${OUTPUT_PATH}/bootstrap.min.css + recess --compile swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.css + recess --compress swatchmaker-responsive.less > ${OUTPUT_PATH}/bootstrap-responsive.min.css bootstrap: -test -d bootstrap && rm -r bootstrap |