Mercurial
view third_party/sqlite3/Makefile.fallback @ 275:78699f810817
Add Qwen3-VL and WebRTC dictation services
Add Bazel targets for the CUDA-backed Qwen3-VL server and a local WebRTC faster-whisper dictation service.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: e3d8cb06-6c95-4ae0-9757-651d3796ab00
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 10:58:47 -0700 |
| parents | 589bab390fb4 |
| children |
line wrap: on
line source
#!/usr/bin/make # # If the configure script does not work, then this Makefile is available # as a backup. Manually configure the variables below. # # Note: This makefile works out-of-the-box on MacOS 10.2 (Jaguar) # CC = gcc CFLAGS = -O0 -I. LIBS = -lz COPTS += -D_BSD_SOURCE COPTS += -DSQLITE_ENABLE_LOCKING_STYLE=0 COPTS += -DSQLITE_THREADSAFE=0 COPTS += -DSQLITE_OMIT_LOAD_EXTENSION COPTS += -DSQLITE_WITHOUT_ZONEMALLOC COPTS += -DSQLITE_ENABLE_RTREE sqlite3: shell.c sqlite3.c $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)