X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=asn%2FMakefile;h=a37c56e919803b250088b60876b273f5bd17d373;hb=0abf92a5ba3132c9727bec630ed1f04bc51b4f04;hp=9e1237a2cbfe16b7641a6b1e3507982336741bac;hpb=e5e0b0c0af410a18ee3f57bdcfdc5e68265f0343;p=yaz-moved-to-github.git diff --git a/asn/Makefile b/asn/Makefile index 9e1237a..a37c56e 100644 --- a/asn/Makefile +++ b/asn/Makefile @@ -1,20 +1,20 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.8 1995-03-30 14:02:50 quinn Exp $ +# $Id: Makefile,v 1.12 1995-05-29 08:10:38 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 +PO = proto.o diagbib1.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) $<