File: Makefile

package info (click to toggle)
openocd 0.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 30,588 kB
  • sloc: ansic: 338,635; sh: 8,789; tcl: 7,352; asm: 2,470; cpp: 1,671; makefile: 1,401; python: 897; perl: 743; xml: 77; haskell: 35
file content (16 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Builds the full sqlite3 extension for Jim Tcl with the sqlite3 amalgamation

all: sqlite3.so

SQLITE3_OPTS := -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 \
	-DSQLITE_ENABLE_STAT3 -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_OMIT_INCRBLOB

sqlite3.so: jim-sqlite3.c sqlite3.c
	./build-ext -Wall -o $@ -I.. -L.. $(SQLITE3_OPTS) $(BUILDOPTS) $^

clean:
	rm -f *.o *.so

# Note that this will only work when not cross compiling
test: sqlite3.so
	../jimsh test-sqlite3.tcl