X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=server%2FMakefile;h=22e2a2417c34520ecf035b18ebed55894c9aad95;hp=f243ebd850c490c7c60953118df17b5c89670a5c;hb=559aecba0e61eca34706023436692ba23faa29a7;hpb=4972d81f72edfe9d44573e863cc2d4c6305e2a64 diff --git a/server/Makefile b/server/Makefile index f243ebd..22e2a24 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,36 +1,27 @@ -# Copyright (C) 1994, Index Data I/S +# Copyright (C) 1995-1998, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.14 1995-03-27 15:02:00 quinn Exp $ +# $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../asn -I../odr -I../yazlib -I../../egate/include\ - -I../../xtimosi/src -I../../alex/include -I../util -LIBDIR=../../lib +INCLUDE=-I../include -I. -I../../xtimosi/src LIBINCLUDE=-L$(LIBDIR) -#CFLAGS=-Wall -pedantic -g -DEFS=$(INCLUDE) +DEFS=$(INCLUDE) $(CDEFS) LIB=$(LIBDIR)/libserver.a -LIBS=$(LIBDIR)/libserver.a $(LIBDIR)/libasn.a $(LIBDIR)/libodr.a \ -$(LIBDIR)/libcomstack.a ../../egate/lib/util.a\ -../../xtimosi/src/libmosi.a ../yazlib/rfct.o ../yazlib/makensap.o \ -$(LIBDIR)/libutil.a -PO = eventl.o seshigh.o statserv.o -CPP=cc -E -PROG=ztest -PROGO=ztest.o - -all: $(LIBDIR) $(LIB) $(PROG) +PO = eventl.o seshigh.o statserv.o requestq.o +CPP=$(CC) -E +RANLIB=ranlib -$(PROG): $(LIB) $(PROGO) - $(CC) $(CFLAGS) $(LIBINCLUDE) -o $(PROG) $(PROGO) $(LIBS) - -alll: +all: $(LIBDIR) $(LIB) $(LIB): $(PO) rm -f $(LIB) ar qc $(LIB) $(PO) - ranlib $(LIB) + $(RANLIB) $(LIB) $(LIBDIR): mkdir $(LIBDIR) @@ -42,15 +33,14 @@ clean: rm -f *.[oa] test core mon.out gmon.out errlist tst cli $(PROG) depend: depend2 -: + depend1: - mv Makefile Makefile.tmp - sed '/^#Depend/q' Makefile - $(CPP) $(INCLUDE) -M *.c >>Makefile - -rm Makefile.tmp + sed '/^#Depend/q' Makefile.tmp + $(CPP) $(DEFS) -M *.c >>Makefile.tmp + mv -f Makefile.tmp Makefile depend2: - $(CPP) $(INCLUDE) -M *.c >.depend + $(CPP) $(DEFS) -M *.c >.depend ifeq (.depend,$(wildcard .depend)) include .depend