From 8f888fb1a3469b87e557efad93b293dd36288ba9 Mon Sep 17 00:00:00 2001 From: Sunil Nimmagadda Date: Sat, 14 Sep 2024 12:32:01 +0530 Subject: A HTTP(S), FTP client --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d8d5906 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# Define SMALL to disable command line editing +#CFLAGS+=-DSMALL + +PROG= ftp +SRCS= cmd.c file.c ftp.c http.c main.c progressmeter.c url.c util.c xmalloc.c + +LDADD+= -ledit -lcurses -lutil -ltls -lssl -lcrypto +DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} + +regression-tests: + @echo Running regression tests... + @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress + +.include -- cgit v1.2.3