Removed Makefile.in's and libtool/automake files that are
[yaz-moved-to-github.git] / rfc1006 / Makefile.in
diff --git a/rfc1006/Makefile.in b/rfc1006/Makefile.in
deleted file mode 100644 (file)
index c8b4a04..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 1994-1998, Index Data 
-# All rights reserved.
-# Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile.in,v 1.2 1998-10-28 15:10:10 adam Exp $
-
-SHELL=/bin/sh
-
-CC=@CC@
-CPP=@CPP@
-RANLIB=@RANLIB@
-CDEFS=@DEFS@
-
-INCLUDE=-I../include -I. -I../../xtimosi/src
-LIBDIR=../lib
-DEFS=$(INCLUDE) $(CDEFS)
-LIB=$(LIBDIR)/librfc.a
-PO = rfct.o makensap.o
-
-all: $(LIB)
-
-alll:
-
-$(LIB): $(PO)
-       rm -f $(LIB)
-       ar qc $(LIB) $(PO)
-       $(RANLIB) $(LIB)
-
-.c.o:
-       $(CC) -c $(DEFS) $(CFLAGS) $<
-
-clean:
-       rm -f *.[oa] test core mon.out gmon.out errlist
-
-depend:
-       sed '/^#Depend/q' <Makefile >Makefile.tmp
-       $(CPP) $(DEFS) -M *.c >>Makefile.tmp
-       mv -f Makefile.tmp Makefile
-
-#Depend --- DOT NOT DELETE THIS LINE