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

BIN = monitor
SRC = main.c monitor.c

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

.PHONY: clean
clean:
	rm $(BIN)