1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/make
#
# Makefile for wapptclsh on unix. Usage:
#
# make clean wapptclsh TCLDIR=/home/drh/local
#
# You need a static build of TCL9 in the directory that TCLDIR specifies.
# To construct such a build:
#
# (1) Download and untar the TCL9 sources
# (2) CD into the unix subdirectory
# (3) ./configure --disable-shared --prefix=/home/drh/local
# change as appropriate -^^^^^^^^^^^^^^^
# (4) make install
#
CFLAGS = -Os -static
CC = gcc $(CFLAGS)
OPTS = -DSQLITE_ENABLE_DESERIALIZE
TCLDIR ?= /home/drh/tcl/tcl9
TCLLIB = $(TCLDIR)/lib/libtcl9.0.a -lm -lz -lpthread -ldl
TCLINC = $(TCLDIR)/include
TCLSH = $(TCLDIR)/bin/tclsh9.0
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 -f wapptclsh wapptclsh.c
|
|
|
<
|
|
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/make
#
# Makefile for wapptclsh on unix. Usage:
#
# make clean wapptclsh
#
# You need a static build of TCL9 in the directory that TCLDIR specifies.
# To construct such a build:
#
# (1) Download and untar the TCL9 sources
# (2) CD into the unix subdirectory
# (3) ./configure --disable-shared --prefix=$HOME/tcl90
# (4) make install
#
CFLAGS = -Os -static
CC = gcc $(CFLAGS)
OPTS =
TCLDIR ?= $(HOME)/tcl90
TCLLIB = $(TCLDIR)/lib/libtcl9.0.a -lm -lz -lpthread -ldl
TCLINC = $(TCLDIR)/include
TCLSH = $(TCLDIR)/bin/tclsh9.0
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 >$@
env:
@ echo CC = $(CC)
@ echo OPTS = $(OPTS)
@ echo TCLDIR = $(TCLDIR)
clean:
rm -f wapptclsh wapptclsh.c
|