OLD | NEW |
1 # Makefile for libxslt, specific for Windows, GCC (mingw) and GNU make. | 1 # Makefile for libxslt, specific for Windows, GCC (mingw) and GNU make. |
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 # make [all] to build the libxslt and the accompanying utilities. | 6 # make [all] to build the libxslt and the accompanying utilities. |
7 # make clean to remove all compiler output files and return to a | 7 # make clean to remove all compiler output files and return to a |
8 # clean state. | 8 # clean state. |
9 # make rebuild to rebuild everything from scratch. This basically does | 9 # make rebuild to rebuild everything from scratch. This basically does |
10 # a 'make clean' and then a 'make all'. | 10 # a 'make clean' and then a 'make all'. |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 $(LD) $(APP_LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) $(APPLIB
S) | 299 $(LD) $(APP_LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) $(APPLIB
S) |
300 endif | 300 endif |
301 | 301 |
302 # Builds xsltproc and friends. Uses the implicit rule for commands. | 302 # Builds xsltproc and friends. Uses the implicit rule for commands. |
303 $(UTILS) : $(UTILS_INTDIR) $(BINDIR) libxslt libxslta libexslt libexslta | 303 $(UTILS) : $(UTILS_INTDIR) $(BINDIR) libxslt libxslta libexslt libexslta |
304 | 304 |
305 | 305 |
306 # Source dependencies, just how? | 306 # Source dependencies, just how? |
307 #-include depends.mingw | 307 #-include depends.mingw |
308 | 308 |
OLD | NEW |