diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-04-25 15:08:02 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-04-25 15:08:02 +0000 |
commit | 8e47e70f341e0e3f1d75c2b18d17480b7237ad2e (patch) | |
tree | 9b41805883586269b27067b1538439a945b6b2e1 /lib/libftp/utils/Makefile | |
parent | 6f52f41fb2b710f9af14cc0267f4d0bb22253c5d (diff) |
Now check all the warning purges and general clean-up in on the second
pass.
Notes
Notes:
svn path=/head/; revision=8067
Diffstat (limited to 'lib/libftp/utils/Makefile')
-rw-r--r-- | lib/libftp/utils/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libftp/utils/Makefile b/lib/libftp/utils/Makefile index 783451bf05bf..d750ca7b5a45 100644 --- a/lib/libftp/utils/Makefile +++ b/lib/libftp/utils/Makefile @@ -17,13 +17,13 @@ DPADD+= ${.CURDIR}/../libftp.a all: ftptry mirror uftp ftptry: ftptry.o - $(CC) $(CFLAGS) -o ftptry ftptry.o -lftp + $(CC) $(CFLAGS) -o ftptry ftptry.o ${LDADD} -lftp uftp: uftp.o uftpcmd.o libetc.a - $(CC) $(CFLAGS) -o uftp uftp.o uftpcmd.o -lftp -letc + $(CC) $(CFLAGS) -o uftp uftp.o uftpcmd.o ${LDADD} -lftp -letc mirror: mirror.o - $(CC) $(CFLAGS) -o mirror mirror.o -lftp + $(CC) $(CFLAGS) -o mirror mirror.o ${LDADD} -lftp clean: rm -f ftptry mirror uftp *~ *.o *.a |