blob: 94b4c373c70dbf96206bc9bab4acabe3f324614d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CC = gcc
CFLAGS = -g -Wall -pedantic
LDFLAGS = -lmicrohttpd -lcurl -lm
BIN = monitor
SRC = main.c monitor.c
$(BIN): $(SRC)
$(CC) -o $@ $(CFLAGS) $^ $(LDFLAGS)
.PHONY: clean
clean:
rm $(BIN)
|