Implemented ILL protocol. Minor updates ASN.1 compiler.
[yaz-moved-to-github.git] / lib / Makefile.in
1 # Copyright (C) 1994-1999, Index Data 
2 # All rights reserved.
3 # Sebastian Hammer, Adam Dickmeiss
4 # $Id: Makefile.in,v 1.4 1999-12-16 23:36:19 adam Exp $
5
6 SHELL=/bin/sh
7
8 RANLIB=@RANLIB@
9
10 MAKE=make
11 YAZLIBS=libodr.a libasn.a libcomstack.a libserver.a \
12         libzutil.a libutil.a libccl.a libret.a @ILLLIB@
13 LIB=libyaz.a
14
15 all: $(LIB)
16
17 $(LIB): $(YAZLIBS)
18         rm -f $(LIB)
19         for i in $(YAZLIBS); do echo $$i; ar x $$i; rm -f __*; done
20         ar qc $(LIB) *.o
21         rm -f *.o
22         $(RANLIB) $(LIB)
23
24 clean:
25         -rm -f *.[oa]
26
27 depend: