diff options
Diffstat (limited to 'crypto/kerberosIV/appl/telnet/libtelnet/Makefile.in')
-rw-r--r-- | crypto/kerberosIV/appl/telnet/libtelnet/Makefile.in | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/crypto/kerberosIV/appl/telnet/libtelnet/Makefile.in b/crypto/kerberosIV/appl/telnet/libtelnet/Makefile.in deleted file mode 100644 index b8ca629d48fd5..0000000000000 --- a/crypto/kerberosIV/appl/telnet/libtelnet/Makefile.in +++ /dev/null @@ -1,54 +0,0 @@ -# $Id: Makefile.in,v 1.28 1999/03/11 13:50:00 joda Exp $ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ - -SHELL = /bin/sh - -CC = @CC@ -LINK = @LINK@ -AR = ar -RANLIB = @RANLIB@ -DEFS = @DEFS@ -CFLAGS = @CFLAGS@ $(WFLAGS) -WFLAGS = @WFLAGS@ -LIBNAME = $(LIBPREFIX)telnet -LIBEXT = a -LIBPREFIX = @LIBPREFIX@ -LIB = $(LIBNAME).$(LIBEXT) - -prefix = @prefix@ - -SOURCES=auth.c encrypt.c genget.c enc_des.c misc.c kerberos.c kerberos5.c - -OBJECTS=auth.o encrypt.o genget.o enc_des.o misc.o kerberos.o kerberos5.o - -all: $(LIB) - -libtop = @libtop@ - -.c.o: - $(CC) -c $(DEFS) -I../../../include -I$(srcdir)/.. $(CFLAGS) $(CPPFLAGS) $< - -$(LIB): $(OBJECTS) - rm -f $@ - $(AR) cr $@ $(OBJECTS) - -$(RANLIB) $@ - -install: - @true - -uninstall: - @true - -TAGS: $(SOURCES) - etags $(SOURCES) - -clean cleandir: - rm -f *.o *.a \#* *~ core - -distclean: clean - rm -f Makefile *~ - -.PHONY: all install uninstall clean cleandir distclean |