CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Makefile.fallback20 linesDownload Raw Back to autoconf
1#!/usr/bin/make2#3# If the configure script does not work, then this Makefile is available4# as a backup.  Manually configure the variables below.5#6# Note:  This makefile works out-of-the-box on MacOS 10.2 (Jaguar)7#8CC = gcc9CFLAGS = -O0 -I.10LIBS = -lz11COPTS += -D_BSD_SOURCE12COPTS += -DSQLITE_ENABLE_LOCKING_STYLE=013COPTS += -DSQLITE_THREADSAFE=014COPTS += -DSQLITE_OMIT_LOAD_EXTENSION15COPTS += -DSQLITE_WITHOUT_ZONEMALLOC16COPTS += -DSQLITE_ENABLE_RTREE17 18sqlite3:	shell.c sqlite3.c19	$(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)20