Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix to the "clean" target on the MacOS makefile |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
44975d66a98cd38401c7ec64192f028b |
User & Date: | drh 2024-11-09 12:41:40.820 |
Context
2024-11-22
| ||
16:04 | Improved error message when unauthorized characters are used in the request URI. (check-in: 3b1ce7c023 user: drh tags: trunk) | |
2024-11-18
| ||
14:47 | If there are duplicate query parameters, the value becomes a list that is formed from teh values of the duplicates. Forum post 5eb29da65a. (Leaf check-in: e431ca0d00 user: drh tags: duplicate-parameters) | |
2024-11-09
| ||
12:41 | Fix to the "clean" target on the MacOS makefile (check-in: 44975d66a9 user: drh tags: trunk) | |
12:34 | Add a makefile for windows. Improvements, including better comments, in existing makefiles. (check-in: b7abbe4090 user: drh tags: trunk) | |
Changes
Changes to Makefile.macos.
︙ | ︙ | |||
25 26 27 28 29 30 31 | wapptclsh: wapptclsh.c $(CC) -I. -I$(TCLINC) -o $@ wapptclsh.c $(TCLLIB) wapptclsh.c: wapptclsh.c.in wapp.tcl wapptclsh.tcl tclsqlite3.c mkccode.tcl $(TCLSH) mkccode.tcl wapptclsh.c.in >$@ clean: | | | 25 26 27 28 29 30 31 32 | wapptclsh: wapptclsh.c $(CC) -I. -I$(TCLINC) -o $@ wapptclsh.c $(TCLLIB) wapptclsh.c: wapptclsh.c.in wapp.tcl wapptclsh.tcl tclsqlite3.c mkccode.tcl $(TCLSH) mkccode.tcl wapptclsh.c.in >$@ clean: rm -f wapptclsh wapptclsh.c |