aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2f281695ecc07b3acc650fabf5abba3773694e29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CC = gcc
CFLAGS = -g -Wall -pedantic
LDFLAGS = -lmicrohttpd -lmagic

BIN = search
SRC = main.c config.c index.c

$(BIN): $(SRC)
	$(CC) -o $@ $(CFLAGS) $^ $(LDFLAGS)

.PHONY: clean
clean:
	rm $(BIN)