Artifact f03a03bf2a9b3a83c738a60d2299356c61e916d928a249dc87be0fbdf3030c6f:
- File Makefile — part of check-in [0819ed51b3] at 2024-09-29 22:03:35 on branch trunk — Update the built-in SQLite to the latest 3.47.0 alpha. (user: drh size: 451)
#!/usr/bin/make CFLAGS = -Os -static CC = gcc $(CFLAGS) OPTS = -DSQLITE_ENABLE_DESERIALIZE TCLLIB = /home/drh/tcl/lib/libtcl8.6.a -lm -lz -lpthread -ldl TCLINC = /home/drh/tcl/include TCLSH = tclsh all: wapptclsh wapptclsh: wapptclsh.c $(CC) -I. -I$(TCLINC) -o $@ $(OPTS) wapptclsh.c $(TCLLIB) wapptclsh.c: wapptclsh.c.in wapp.tcl wapptclsh.tcl tclsqlite3.c mkccode.tcl $(TCLSH) mkccode.tcl wapptclsh.c.in >$@ clean: rm wapptclsh wapptclsh.c