Artifact 2c42180e0ddd717f613d264ba8af2dbcb75522345ada6cecf7ee2cdb347d0a13:
- File Makefile — part of check-in [55e40e4c93] at 2017-12-15 21:43:02 on branch trunk — Add a Makefile and code to generate the stand-alone "wapptclsh" binary. (user: drh size: 354)
#!/usr/bin/make CC = gcc -O0 -static 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 $@ wapptclsh.c $(TCLLIB) wapptclsh.c: wapptclsh.c.in wapp.tcl wapptclsh.tcl tclsqlite3.c mkccode.tcl $(TCLSH) mkccode.tcl wapptclsh.c.in >$@