final touches on dkim test harness
[citadel.git] / webcit-ng / Makefile
index c29a595c8522bd927f2384687bd7cf251f100274..15812fefd855fa96a1ea9f51e88bea47792abadb 100644 (file)
@@ -1,7 +1,5 @@
-# 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.
+# Copyright (c) 1996-2024 by the citadel.org team
+# This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License v3.
 
 CFLAGS := $(CFLAGS) -ggdb -Wno-format-truncation
 LDFLAGS := $(LDFLAGS)
@@ -14,7 +12,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 $@