aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorarf20 <aruizfernandez05@gmail.com>2025-11-30 05:11:02 +0100
committerarf20 <aruizfernandez05@gmail.com>2025-11-30 05:11:02 +0100
commitb1430f0f2d76859eafda9fc6098c3b4876501471 (patch)
tree467c0fc17fa40bf0eda18b830de54fc596add268 /Makefile
parentae9b7722e93111a8ee67e5b9b3a791df7b94c765 (diff)
downloadarfnet2-search-b1430f0f2d76859eafda9fc6098c3b4876501471.tar.gz
arfnet2-search-b1430f0f2d76859eafda9fc6098c3b4876501471.zip
file indexing, stat, hash map tree insert
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index aba1197..2f28169 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
CC = gcc
CFLAGS = -g -Wall -pedantic
-LDFLAGS = -lmicrohttpd
+LDFLAGS = -lmicrohttpd -lmagic
BIN = search
-SRC = main.c config.c
+SRC = main.c config.c index.c
$(BIN): $(SRC)
$(CC) -o $@ $(CFLAGS) $^ $(LDFLAGS)