I want to compress javascript in yui compressor, How to write Make file for compress javascript.
Because grammar is difficult and does not understand it, Could you give me a sample Makefile for me?
|
|
I want to compress javascript in yui compressor, How to write Make file for compress javascript. Because grammar is difficult and does not understand it, Could you give me a sample Makefile for me?
|
||||||
|
|
|
Your makefile would look something like
Note that the second line is indented with a tab character, not just spaces. The make utility cares about this.
The The variable If you have multiple files that will all be compressed into a single output file, you can put them all on the dependency line, and then use the special variable
Alternately, if you want them each compressed separately, you can write a pattern rule and use it for all of them:
Make defaults to building the first target that it sees, which is |
||||||
|