X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=rset%2FMakefile.in;fp=rset%2FMakefile.in;h=8bc59c532de74d052ee9afbef91d184aeccd9b58;hp=0000000000000000000000000000000000000000;hb=9fce226051f8b951b3c6f424fbdbd996ceb42007;hpb=0df6c383d656dba662eb9d9acafed01a0973fcff diff --git a/rset/Makefile.in b/rset/Makefile.in new file mode 100644 index 0000000..8bc59c5 --- /dev/null +++ b/rset/Makefile.in @@ -0,0 +1,41 @@ +# Copyright (C) 1994-1998, Index Data +# All rights reserved. +# Sebastian Hammer, Adam Dickmeiss +# $Id: Makefile.in,v 1.1 1998-09-02 14:15:36 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/rset.a +PROG= +PO=rset.o rstemp.o rsisam.o rsnull.o rsbool.o rsisamc.o rsm_or.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.tmp + $(CPP) $(DEFS) -M *.c >>Makefile.tmp + mv -f Makefile.tmp Makefile + +#Depend --- DOT NOT DELETE THIS LINE