Zebra uses GNU Configure.
[idzebra-moved-to-github.git] / isam / Makefile.in
diff --git a/isam/Makefile.in b/isam/Makefile.in
new file mode 100644 (file)
index 0000000..3a277c8
--- /dev/null
@@ -0,0 +1,57 @@
+# Copyright (C) 1994-1998, Index Data 
+# All rights reserved.
+# Sebastian Hammer, Adam Dickmeiss
+# $Id: Makefile.in,v 1.1 1998-09-02 14:15:33 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/isam.a
+PO = isam.o isutil.o rootblk.o memory.o physical.o
+
+all: $(LIB)
+
+alll: $(LIB) # isam-test issh
+
+test: test.c $(LIB)
+       $(CC) -g -o test -I../include test.c \
+       ../lib/isam.a ../lib/bfile.a ../lib/zebrautl.a $(YAZLIB)
+
+isam-test: isam-test.c $(LIB)
+       $(CC) -g -o isam-test -I../include isam-test.c \
+       ../lib/isam.a ../lib/bfile.a ../lib/zebrautl.a $(YAZLIB)
+
+issh: issh.c $(LIB)
+       $(CC) -g -o issh $(INCLUDE) issh.c \
+       ../lib/isam.a ../lib/bfile.a ../lib/zebrautl.a $(YAZLIB)
+
+#$(TPROG): $(TPROG).o $(LIB) 
+#      $(CC) -o $(TPROG) $(TPROG).o $(LIB)
+
+$(LIB): $(PO)
+       rm -f $(LIB)
+       ar qc $(LIB) $(PO)
+       $(RANLIB) $(LIB)
+
+.c.o:
+       $(CC) -c $(DEFS) $(CFLAGS) $<
+
+clean:
+       rm -f *.[oa] $(TPROG) core mon.out gmon.out errlist test isam-test issh
+
+depend:
+       sed '/^#Depend/q' <Makefile >Makefile.tmp
+       $(CPP) $(DEFS) -M *.c >>Makefile.tmp
+       mv -f Makefile.tmp Makefile
+
+#Depend --- DOT NOT DELETE THIS LINE