From 0d0f36ae5292c918042b843961d402056076b9a8 Mon Sep 17 00:00:00 2001 From: Felix Perktold Date: Wed, 22 Jul 2026 03:17:51 +0200 Subject: init --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..560b5b1 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CC = gcc +CCFLAGS = -g -O0 -Wall -lcurl -lsqlite3 -pthread + +all: main + +run: main + ./a.out + +main: main.c + $(CC) $(CCFLAGS) db_init.c main.c + +clean: + rm -fv *.so *.o a.out + +.PHONY: clean all run -- cgit v1.2.3