mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00:00
10 lines
162 B
Makefile
10 lines
162 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall -Wextra -g -I../include
|
|
TARGET=sqlite3-tests
|
|
SRC=sqlite3_tests.c
|
|
|
|
all:
|
|
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|