added SSL

This commit is contained in:
Lorenzo Torres 2026-01-08 14:37:28 +01:00
parent d9ee2c56f2
commit 670e38a105
8 changed files with 142 additions and 22 deletions

View file

@ -3,8 +3,9 @@
include config.mk
SRC = main.c\
password.c
HDR = config.def.h client.h
password.c\
network.c
HDR = config.def.h client.h password.h network.h
OBJ = ${SRC:.c=.o}
all: options asfur
@ -18,7 +19,7 @@ options:
.c.o:
${CC} -c ${CFLAGS} $<
${OBJ}: config.h client.h
${OBJ}: config.h client.h password.h network.h
config.h:
cp config.def.h $@