X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=asn%2FMakefile;h=9fbab3bdcf73c5f1db72220fd9a3c87f8d01703c;hp=c6626647c8dace314836ec7c1c02da85c0099373;hb=d32b1dbdc1f0392883547cc9e56c26f384a4c57f;hpb=b44b4c3587d6a479d12f91c1ce38eaf533fb4980 diff --git a/asn/Makefile b/asn/Makefile index c662664..9fbab3b 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.4 1995-03-14 10:27:12 quinn Exp $ +# $Id: Makefile,v 1.10 1995-04-11 11:52:01 quinn Exp $ SHELL=/bin/sh -INCLUDE=-I../include -I. -I../odr -LIBDIR=../../lib +INCLUDE=-I../include -I. +LIBDIR=../lib LIBINCLUDE=-L$(LIBDIR) #CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) LIB=$(LIBDIR)/libasn.a LIBS=-lodr -lasn -PO = proto.o -CPP=cc -E +PO = proto.o diagbib1.o oid.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) $<