Extra parameter decode added to search routines to implement
[idzebra-moved-to-github.git] / bfile / Makefile
index 3fa5f2f..5d7ce61 100644 (file)
@@ -1,21 +1,31 @@
+# Copyright (C) 1994, Index Data I/S 
+# All rights reserved.
+# Sebastian Hammer, Adam Dickmeiss
+# $Id: Makefile,v 1.17 1996-05-22 08:26:40 adam Exp $
+
 SHELL=/bin/sh
-INCLUDE=-I../include
+RANLIB=ranlib
+
+YAZLIB=-lyaz
+YAZINC=-I../../yaz/include
+
+INCLUDE=-I../include $(YAZINC)
+DEFS=$(INCLUDE)
 TPROG=btest
-CFLAGS=-g -Wall -pedantic
 DEFS=$(INCLUDE)
 LIB=../lib/bfile.a
-PO = bfile.o mfile.o
-CPP=cc -E
+PO = bfile.o mfile.o cfile.o commit.o
+CPP=$(CC) -E
 
 all: $(LIB)
 
-$(TPROG): $(TPROG).o $(LIB) 
-       $(CC) -o $(TPROG) $(TPROG).o $(LIB)
+$(TPROG): $(TPROG).o $(LIB) $(YAZLIB)
+       $(CC) -o $(TPROG) $(TPROG).o $(LIB) $(YAZLIB)
 
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
@@ -23,9 +33,19 @@ $(LIB): $(PO)
 clean:
        rm -f *.[oa] $(TPROG) core mon.out gmon.out errlist
 
-dep depend:
-       mv Makefile Makefile.tmp
-       sed '/^#Depend/q' <Makefile.tmp >Makefile
-       $(CPP) $(INCLUDE) -M *.c >>Makefile
+
+depend: depend2
+
+depend1:
+       sed '/^#Depend/q' <Makefile >Makefile.tmp
+       $(CPP) $(DEFS) -M *.c >>Makefile.tmp
+       mv -f Makefile.tmp Makefile
+
+depend2:
+       $(CPP) $(DEFS) -M *.c >.depend  
+
+ifeq (.depend,$(wildcard .depend))
+include .depend
+endif
 
 #Depend --- DOT NOT DELETE THIS LINE