OLD | NEW |
1 # Makefile for libxslt, specific for Windows, MSVC and NMAKE. | 1 # Makefile for libxslt, specific for Windows, MSVC and NMAKE. |
2 # | 2 # |
3 # Take a look at the beginning and modify the variables to suit your | 3 # Take a look at the beginning and modify the variables to suit your |
4 # environment. Having done that, you can do a | 4 # environment. Having done that, you can do a |
5 # | 5 # |
6 # nmake [all] to build the libxslt and the accompanying utilities. | 6 # nmake [all] to build the libxslt and the accompanying utilities. |
7 # nmake clean to remove all compiler output files and return to a | 7 # nmake clean to remove all compiler output files and return to a |
8 # clean state. | 8 # clean state. |
9 # nmake rebuild to rebuild everything from scratch. This basically does | 9 # nmake rebuild to rebuild everything from scratch. This basically does |
10 # a 'nmake clean' and then a 'nmake all'. | 10 # a 'nmake clean' and then a 'nmake all'. |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 | 360 |
361 testplugin: | 361 testplugin: |
362 @echo "plugins are disabled with static=yes" | 362 @echo "plugins are disabled with static=yes" |
363 | 363 |
364 !endif | 364 !endif |
365 | 365 |
366 | 366 |
367 # Source dependences should be autogenerated somehow here, but how to | 367 # Source dependences should be autogenerated somehow here, but how to |
368 # do it? I have no clue. | 368 # do it? I have no clue. |
369 | 369 |
OLD | NEW |