X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2FMakefile;fp=util%2FMakefile;h=0000000000000000000000000000000000000000;hp=441d771c4e46d42395a8bfaf8ba2308dd4d0da12;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb diff --git a/util/Makefile b/util/Makefile deleted file mode 100644 index 441d771..0000000 --- a/util/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright (C) 1994-1997, Index Data I/S -# All rights reserved. -# Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.27 1998-05-18 10:10:01 adam Exp $ - -SHELL=/bin/sh -INCLUDE=-I../include -I. -LIBDIR=../lib -LIBINCLUDE=-L$(LIBDIR) -DEFS=$(INCLUDE) $(CDEFS) -LIB=$(LIBDIR)/libutil.a -LIBS= -PO = options.o log.o marcdisp.o yaz-ccl.o pquery.o oid.o wrbuf.o nmemsdup.o \ - xmalloc.o readconf.o tpath.o nmem.o yaz-util.o atoin.o # dmalloc.o -CPP=$(CC) -E -RANLIB=ranlib - -all: $(LIBDIR) $(LIB) marcdump - -#test: test.o $(LIB) ../odr/odr.a -# $(CC) $(CFLAGS) $(INCLUDE) -o test test.o $(LIB) ../odr/odr.a - -marcdump: marcdump.o $(LIB) - $(CC) $(CFLAGS) $(INCLUDE) -o marcdump marcdump.o $(LIB) - -alll: - -$(LIB): $(PO) - rm -f $(LIB) - ar qc $(LIB) $(PO) - $(RANLIB) $(LIB) - -.c.o: - $(CC) -c $(DEFS) $(CFLAGS) $< - -clean: - rm -f *.[oa] test marcdump core mon.out gmon.out errlist - -depend: depend2 - -depend1: - sed '/^#Depend/q' 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