Artifact bcf960093cd46a8929daf9606471e3f56804e7f5:
- File Makefile — part of check-in [06c26c027e] at 2016-07-11 19:21:59 on branch trunk — Add support for encrypted SQL archives using the SQLite Encryption Extension. (user: drh size: 464)
#!/bin/make CC = gcc -g -I. -D_FILE_OFFSET_BITS=64 -Wall -Werror ZLIB = -lz FUSELIB = -lfuse SQLITE_OPT = $(OPT) -DSQLITE_THREADSAFE=0 -DSQLITE_OMIT_LOAD_EXTENSION all: sqlar sqlar: sqlar.c sqlite3.o $(CC) -o sqlar $(OPT) sqlar.c sqlite3.o $(ZLIB) sqlarfs: sqlarfs.c sqlite3.o $(CC) -o sqlarfs $(OPT) sqlarfs.c sqlite3.o $(ZLIB) $(FUSELIB) sqlite3.o: sqlite3.c sqlite3.h $(CC) -c sqlite3.c $(SQLITE_OPT) sqlite3.c clean: rm -f sqlar sqlarfs sqlite3.o