CFLAGS := $(CFLAGS) -ggdb -Wno-format-truncation LDFLAGS := $(LDFLAGS) # link webcit: server/*.c gcc $(CFLAGS) server/*.c $(LDFLAGS) -lcitadel -lpthread -lcrypto -lssl -lexpat -o webcit # remove compilation products clean: rm -f webcit distclean: clean # install to target directory install: echo Not yet...