X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=server%2FMakefile;fp=server%2FMakefile;h=0000000000000000000000000000000000000000;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hp=22e2a2417c34520ecf035b18ebed55894c9aad95;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb;p=yaz-moved-to-github.git diff --git a/server/Makefile b/server/Makefile deleted file mode 100644 index 22e2a24..0000000 --- a/server/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright (C) 1995-1998, Index Data I/S -# All rights reserved. -# Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.35 1998-01-07 13:34:06 adam Exp $ - -LIBDIR=../lib - -#LIBMOSI=../../xtimosi/src/libmosi.a $(LIBDIR)/librfc.a - -SHELL=/bin/sh -INCLUDE=-I../include -I. -I../../xtimosi/src -LIBINCLUDE=-L$(LIBDIR) -DEFS=$(INCLUDE) $(CDEFS) -LIB=$(LIBDIR)/libserver.a -PO = eventl.o seshigh.o statserv.o requestq.o -CPP=$(CC) -E -RANLIB=ranlib - -all: $(LIBDIR) $(LIB) - -$(LIB): $(PO) - rm -f $(LIB) - ar qc $(LIB) $(PO) - $(RANLIB) $(LIB) - -$(LIBDIR): - mkdir $(LIBDIR) - -.c.o: - $(CC) -c $(DEFS) $(CFLAGS) $< - -clean: - rm -f *.[oa] test core mon.out gmon.out errlist tst cli $(PROG) - -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