X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2FMakefile;h=645e0260693768a8a6e03635753e08c77b155838;hb=HEAD;hp=8c8e317fe952a4d9d156aa8d22846686b628be50;hpb=2bf441a5ae7f54effaad484ab8a451c26a560eb3;p=citadel.git diff --git a/webcit-ng/Makefile b/webcit-ng/Makefile index 8c8e317fe..15812fefd 100644 --- a/webcit-ng/Makefile +++ b/webcit-ng/Makefile @@ -1,3 +1,6 @@ +# 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) @@ -9,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 $@