Artifact c0ef5f01a6c2922162c954baffb4c00dfb1c0bdf85b9822ac44ad09bd1df8d41:
- File Makefile — part of check-in [627a5a8bbc] at 2019-03-06 19:32:50 on branch new-subst-algorithm — Alternative implementation of wapp-subst that does not allow command substitution within unquoted sections. (user: drh size: 389) [more...]
#!/usr/bin/make CC = gcc -Os -static TCLLIB = /home/drh/tcl/lib/libtcl8.7.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 >$@ clean: rm wapptclsh wapptclsh.c