]> code.citadel.org Git - citadel.git/blob - webcit-ng/Makefile
cda937007a98555c7e34b80dd9f5e8b0b1a48c3d
[citadel.git] / webcit-ng / Makefile
1 CFLAGS := -ggdb -Wno-format-truncation
2 LDFLAGS := 
3
4 # link
5 webcit: server/*.c
6         gcc server/*.c $(LDFLAGS) -lcitadel -lpthread -lcrypto -lssl -lexpat -o webcit
7
8 # remove compilation products
9 clean:
10         rm -f webcit
11
12 distclean: clean
13
14 # install to target directory
15 install:
16         echo Not yet...