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)