Client uses prefix query notation.
[yaz-moved-to-github.git] / asn / Makefile
index 841aaa2..1bc5c9f 100644 (file)
@@ -1,20 +1,20 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.7 1995-03-30 09:39:31 quinn Exp $
+# $Id: Makefile,v 1.11 1995-05-22 11:30:15 quinn Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
-LIBDIR=../../lib
+LIBDIR=../lib
 LIBINCLUDE=-L$(LIBDIR)
 #CFLAGS=-g -Wall -pedantic -ansi
 DEFS=$(INCLUDE)
 LIB=$(LIBDIR)/libasn.a
 LIBS=-lodr -lasn
-PO = proto.o diagbib1.o oid.o
-CPP=cc -E
+PO = proto.o diagbib1.o oid.o zget.o
+CPP=$(CC) -E
 
-all: $(LIBDIR) $(LIB)
+all: $(LIB)
 
 test: test.o $(LIB) ../odr/odr.a
        $(CC) $(CFLAGS) $(INCLUDE) -o test test.o $(LIB) ../odr/odr.a
@@ -26,9 +26,6 @@ $(LIB): $(PO)
        ar qc $(LIB) $(PO)
        ranlib $(LIB)
 
-$(LIBDIR):
-       mkdir $(LIBDIR)
-
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<