X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=retrieval%2FMakefile;fp=retrieval%2FMakefile;h=0000000000000000000000000000000000000000;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hp=c2d7949fd159a67ae92c9afecfabcd658f59d501;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb;p=yaz-moved-to-github.git diff --git a/retrieval/Makefile b/retrieval/Makefile deleted file mode 100644 index c2d7949..0000000 --- a/retrieval/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: Makefile,v 1.10 1997-10-27 14:04:07 adam Exp $ - -SHELL=/bin/sh -RANLIB=ranlib -INCLUDE=-I../include -I. -DEFS=$(INCLUDE) $(CDEFS) -LIB=../lib/libret.a -PO = d1_handle.o d1_read.o d1_attset.o d1_tagset.o d1_absyn.o d1_grs.o \ - d1_sutrs.o d1_varset.o d1_espec.o \ - d1_doespec.o d1_map.o d1_marc.o d1_write.o d1_expout.o d1_sumout.o \ - d1_soif.o d1_prtree.o -CPP=$(CC) -E - -all: $(LIB) - -tst: tst.c $(LIB) - $(CC) -g -o tst $(INCLUDE) tst.c \ - ../lib/data1.a $(YAZ)/lib/libyaz.a - -$(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: depend2 - -depend1: - mv Makefile Makefile.tmp - sed '/^#Depend/q' Makefile - $(CPP) $(DEFS) -M *.c >>Makefile - -rm Makefile.tmp - -depend2: - $(CPP) $(DEFS) -M *.c >.depend - -ifeq (.depend,$(wildcard .depend)) -include .depend -endif - -#Depend --- DOT NOT DELETE THIS LINE