CFLAGS = -std=gnu99 `curl-config --cflags` `xml2-config --cflags` `ncursesw6-config --cflags`
LDFLAGS = `curl-config --libs` `xml2-config --libs` `ncursesw6-config --libs` -lpthread
OUT = fem

all:
	gcc -g -o $(OUT) $(CFLAGS) FemMonitor/*.c $(LDFLAGS)
clean:
	rm -f $(OUT)