/usr/share/doc/libftp-dev/examples/Makefile is in libftp-dev 4.0-1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | TARGETS = qftp
OBJECTS = qftp.o
SOURCES = qftp.c
DEBUG = -g
INCLUDES =
CFLAGS = -Wall $(DEBUG) $(INCLUDES)
LDFLAGS = -lftp
all : $(TARGETS)
ln -sf qftp ftpdir
ln -sf qftp ftpget
ln -sf qftp ftpsend
ln -sf qftp ftprm
ln -sf qftp ftplist
clean :
rm -f $(OBJECTS) core *~ ftpdir ftpget ftpsend ftprm ftplist
clobber : clean
rm -f $(TARGETS) $(OLDTARGETS)
|