FemMonitor/Makefile
2021-04-01 22:57:16 -07:00

9 lines
224 B
Makefile

CFLAGS = -std=c99 `curl-config --cflags` `xml2-config --cflags`
LDFLAGS = `curl-config --libs` `xml2-config --libs` -lncurses -lpthread
OUT = fem
all:
gcc -o $(OUT) $(CFLAGS) FemMonitor/*.c $(LDFLAGS)
clean:
rm -f $(OUT)