From 8871f7b50bc6fef814254c85b851e05d638e66be Mon Sep 17 00:00:00 2001 From: arf20 Date: Sat, 29 Nov 2025 05:02:41 +0100 Subject: initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..aba1197 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CC = gcc +CFLAGS = -g -Wall -pedantic +LDFLAGS = -lmicrohttpd + +BIN = search +SRC = main.c config.c + +$(BIN): $(SRC) + $(CC) -o $@ $(CFLAGS) $^ $(LDFLAGS) + +.PHONY: clean +clean: + rm $(BIN) + -- cgit v1.2.3