Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove obsolete comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d43e163a27b44775a502b33c71b85719 |
User & Date: | mistachkin 2012-09-03 03:51:04.187 |
Context
2012-09-03
| ||
10:16 | In the MinGW makefile, ignore failures of the mkdir command in case the directory already exists. ... (check-in: 80c4b3a2 user: mistachkin tags: trunk) | |
03:51 | Remove obsolete comments. ... (check-in: d43e163a user: mistachkin tags: trunk) | |
03:47 | Fix some confusing spacing in the MinGW makefile. ... (check-in: e498d82d user: mistachkin tags: trunk) | |
Changes
Changes to src/makemake.tcl.
︙ | ︙ | |||
629 630 631 632 633 634 635 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop | < < < < | 629 630 631 632 633 634 635 636 637 638 639 640 641 642 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop clean: ifdef USE_WINDOWS $(RM) $(subst /,\,$(APPNAME)) $(RMDIR) $(subst /,\,$(OBJDIR)) else $(RM) $(APPNAME) $(RMDIR) $(OBJDIR) |
︙ | ︙ |
Changes to win/Makefile.mingw.
︙ | ︙ | |||
587 588 589 590 591 592 593 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop | < < < < | 587 588 589 590 591 592 593 594 595 596 597 598 599 600 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop clean: ifdef USE_WINDOWS $(RM) $(subst /,\,$(APPNAME)) $(RMDIR) $(subst /,\,$(OBJDIR)) else $(RM) $(APPNAME) $(RMDIR) $(OBJDIR) |
︙ | ︙ |
Changes to win/Makefile.mingw.mistachkin.
︙ | ︙ | |||
587 588 589 590 591 592 593 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop | < < < < | 587 588 589 590 591 592 593 594 595 596 597 598 599 600 | # This rule prevents make from using its default rules to try build # an executable named "manifest" out of the file named "manifest.c" # $(SRCDIR)/../manifest: # noop clean: ifdef USE_WINDOWS $(RM) $(subst /,\,$(APPNAME)) $(RMDIR) $(subst /,\,$(OBJDIR)) else $(RM) $(APPNAME) $(RMDIR) $(OBJDIR) |
︙ | ︙ |