mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 11:34:21 +01:00
11 lines
162 B
Makefile
11 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)
|