When working with lesscss I would like to join two or three .less files into one super css file.
I know that you can do it using some little rub
Create a main.less file and open it (name it as you like)
Import your other css and less files via @import
@import
@import "filename.less"; for less files
@import "filename.less";
@import "filename.css"; for css files.
@import "filename.css";
Compile your main.less file and just include this main.css in your site
Smile :)