facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
20 lines
547 B
Makefile
20 lines
547 B
Makefile
#!/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)
|