X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=server%2FMakefile.in;fp=server%2FMakefile.in;h=579c7b8ba13a84ea0bf92866faf16a0eaa09848e;hp=0000000000000000000000000000000000000000;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb diff --git a/server/Makefile.in b/server/Makefile.in new file mode 100644 index 0000000..579c7b8 --- /dev/null +++ b/server/Makefile.in @@ -0,0 +1,42 @@ +# Copyright (C) 1995-1998, Index Data I/S +# All rights reserved. +# Sebastian Hammer, Adam Dickmeiss +# $Id: Makefile.in,v 1.1 1998-08-21 14:13:34 adam Exp $ + +SHELL=/bin/sh + +CC=@CC@ +CPP=@CPP@ +RANLIB=@RANLIB@ + +LIBDIR=../lib + +#LIBMOSI=../../xtimosi/src/libmosi.a $(LIBDIR)/librfc.a + +INCLUDE=-I../include -I. -I../../xtimosi/src +LIBINCLUDE=-L$(LIBDIR) +CDEFS=@DEFS@ @ODEFS@ +DEFS=$(INCLUDE) $(CDEFS) +LIB=$(LIBDIR)/libserver.a +PO = eventl.o seshigh.o statserv.o requestq.o +ELIBS=@LIBS@ + +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