citadel.h is now citadel_defs.h
[citadel.git] / citadel / Makefile
1 # Makefile for Citadel Server
2 # Copyright (c) 1987-2023 by Art Cancro and the citadel.org team
3 #
4 # No, we are NOT using the obsolete GNU Autotools.  This configure script works
5 # well on the Linux operating system (which uses the Linux kernel) and on BSD.
6 #
7 # This program is open source software.  Use, duplication, and/or
8 # disclosure are subject to the GNU General Purpose License version 3.
9
10
11 # config.mk is generated by ./configure
12 include config.mk
13
14 all := citserver setup ctdlmigrate sendcommand citmail chkpw chkpwd
15 all: $(all)
16
17 citserver: server/*.c server/modules/*/*.c config.mk server/*.h
18         cc ${CFLAGS} \
19                 server/*.c server/modules/*/*.c \
20                 ${LDFLAGS} -lresolv -lcitadel -lpthread -lz -lical -lldap -lcrypt -lexpat -lcurl -ldb \
21                 -o citserver
22
23 setup: utils/setup.c server/citadel_dirs.c utils/*.h server/*.h
24         cc ${CFLAGS} ${LDFLAGS} utils/setup.c -lcitadel -o setup
25
26 ctdlmigrate: utils/ctdlmigrate.c server/citadel_dirs.c utils/*.h server/*.h
27         cc ${CFLAGS} ${LDFLAGS} utils/ctdlmigrate.c -lcitadel -lreadline -o ctdlmigrate
28
29 sendcommand: utils/sendcommand.c server/citadel_dirs.c utils/*.h server/*.h
30         cc ${CFLAGS} ${LDFLAGS} utils/sendcommand.c -lcitadel -o sendcommand
31
32 citmail: utils/citmail.c server/citadel_dirs.c utils/*.h server/*.h
33         cc ${CFLAGS} ${LDFLAGS} utils/citmail.c -lcitadel -o citmail
34
35 chkpw: utils/chkpw.c utils/*.h server/*.h
36         cc ${CFLAGS} ${LDFLAGS} utils/chkpw.c -o chkpw
37
38 chkpwd: utils/chkpwd.c utils/auth.c utils/*.h server/*.h
39         cc ${CFLAGS} ${LDFLAGS} utils/chkpwd.c utils/auth.c -lcrypt -o chkpwd
40
41 config.mk: configure
42         ./configure
43
44 clean:
45         rm -vf $(all)
46         find . -name *.o | xargs rm -vf
47
48 distclean: clean
49         rm -vf config.mk
50
51 install: $(all) utils/*.sh
52         #
53         # Installing to ${CTDLDIR}
54         #
55         @for x in $(all) utils/*.sh ; do \
56                 install -v -C -D -t ${CTDLDIR} $$x ;\
57         done