FemMonitor/Makefile

9 lines
273 B
Makefile
Raw Normal View History

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:
2023-04-15 19:57:29 -07:00
gcc -g -o $(OUT) $(CFLAGS) FemMonitor/*.c $(LDFLAGS)
clean:
rm -f $(OUT)