]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/Makefile
Do not convert compared times to UTC.
[citadel.git] / webcit-ng / Makefile
index 8c8e317fe952a4d9d156aa8d22846686b628be50..9e00b7f8d26bce18eb0cf8f8491c67d3f5ffd950 100644 (file)
@@ -1,4 +1,9 @@
-CFLAGS := $(CFLAGS) -ggdb -Wno-format-truncation
+# Copyright (c) 1996-2023 by the citadel.org team
+#
+# This program is open source software.  Use, duplication, or
+# disclosure are subject to the GNU General Public License v3.
+
+CFLAGS := $(CFLAGS) -ggdb -Wno-format-truncation -DDEBUG_ICAL_OVERLAP
 LDFLAGS := $(LDFLAGS)
 
 SRC := server
@@ -9,7 +14,7 @@ SOURCES := $(wildcard $(SRC)/*.c)
 OBJECTS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(SOURCES))
 
 webcit: $(OBJECTS)
-       gcc $(CFLAGS) $(OBJECTS) $(LDFLAGS) -lcitadel -lpthread -lcrypto -lssl -lexpat -o webcit
+       gcc $(CFLAGS) $(OBJECTS) $(LDFLAGS) -lcitadel -lpthread -lcrypto -lssl -lexpat -lical -o webcit
 
 $(SRC)/%.c: $(HEADERS)
        touch $@