Zebra uses GNU Configure.
[idzebra-moved-to-github.git] / recctrl / Makefile.in
diff --git a/recctrl/Makefile.in b/recctrl/Makefile.in
new file mode 100644 (file)
index 0000000..b59af30
--- /dev/null
@@ -0,0 +1,40 @@
+# Copyright (C) 1995-1998, Index Data
+# All rights reserved.
+# Sebastian Hammer, Adam Dickmeiss
+# $Id: Makefile.in,v 1.1 1998-09-02 14:15:35 adam Exp $
+
+SHELL=/bin/sh
+
+CC=@CC@
+CPP=@CPP@
+RANLIB=@RANLIB@
+CDEFS=@DEFS@ @ODEFS@
+LIBS=@LIBS@
+
+YAZLIB=../../yaz/lib/libyaz.a
+YAZINC=-I../../yaz/include
+
+INCLUDE=-I../include $(YAZINC)
+DEFS=$(CDEFS) $(INCLUDE)
+LIB=../lib/recctrl.a
+PO=recctrl.o recgrs.o sgmlread.o regxread.o marcread.o rectext.o
+
+all: $(LIB)
+
+$(LIB): $(PO)
+       rm -f $(LIB)
+       ar qc $(LIB) $(PO)
+       $(RANLIB) $(LIB)
+
+.c.o:
+       $(CC) -c $(DEFS) $(CFLAGS) $<
+
+clean:
+       rm -f *.[oa] 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