# Copyright (C) 1994-1998, Index Data # All rights reserved. # Sebastian Hammer, Adam Dickmeiss # $Id: Makefile.in,v 1.4 1999-11-30 13:48:04 adam Exp $ SHELL=/bin/sh CC=@CC@ CPP=@CPP@ RANLIB=@RANLIB@ CDEFS=@DEFS@ @ODEFS@ LIBS=@LIBS@ YAZLIB=@YAZLIB@ YAZINC=@YAZINC@ 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.tmp $(CPP) $(DEFS) -M *.c >>Makefile.tmp mv -f Makefile.tmp Makefile #Depend --- DOT NOT DELETE THIS LINE