Artifact 902a5beb04d0c45b9588d719a4880a197047ff87e55b7b8cb0a0ef920d4e7135:
- File Makefile — part of check-in [b9b69d4d68] at 2017-12-15 21:44:16 on branch trunk — Add a "clean" target to the Makefile, and optimize for size. (user: drh size: 389)
#!/usr/bin/make CC = gcc -Os -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 >$@ clean: rm wapptclsh wapptclsh.c