X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2FMakefile;h=f1a697f89c3d6e39565086c0662bc32936625655;hb=74582047b4f19d220c6722a85f4651dc742f083f;hp=deb99e42a28e370c18fe54e34617e74234ac2442;hpb=eb2d32be86dd9b1db4303f37dcd4bc3b8927e5ad;p=yaz-moved-to-github.git diff --git a/odr/Makefile b/odr/Makefile index deb99e4..f1a697f 100644 --- a/odr/Makefile +++ b/odr/Makefile @@ -1,30 +1,36 @@ -# 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.6 1995-03-10 11:44:40 quinn Exp $ +# $Id: Makefile,v 1.28 1998-03-20 14:45:01 adam Exp $ SHELL=/bin/sh INCLUDE=-I../include -I. -CFLAGS= -g -Wall -pedantic -ansi -DODR_DEBUG -DEFS=$(INCLUDE) -LIB=odr.a +LIBDIR=../lib +LIBINCLUDE=-L$(LIBDIR) +DEFS=$(INCLUDE) $(CDEFS) # -DODR_DEBUG +LIB=$(LIBDIR)/libodr.a +LIBS=-lodr PO = odr_bool.o ber_bool.o ber_len.o ber_tag.o odr_util.o odr_null.o \ ber_null.o odr_int.o ber_int.o odr_tag.o odr_cons.o odr_seq.o\ odr_oct.o ber_oct.o odr_bit.o ber_bit.o odr_oid.o ber_oid.o odr_use.o \ - odr_choice.o odr_any.o ber_any.o odr.o -CPP=cc -E + odr_choice.o odr_any.o ber_any.o odr.o odr_mem.o dumpber.o odr_enum.o +CPP=$(CC) -E +RANLIB=ranlib -all: $(LIB) +all: $(LIBDIR) $(INCDIR) $(LIB) test: test.o $(LIB) - $(CC) $(CFLAGS) $(INCLUDE) -o test test.o $(LIB) + $(CC) $(CFLAGS) $(LIBINCLUDE) -o test test.o $(LIBS) alll: $(LIB): $(PO) rm -f $(LIB) ar qc $(LIB) $(PO) - ranlib $(LIB) + $(RANLIB) $(LIB) + +$(LIBDIR): + mkdir $(LIBDIR) .c.o: $(CC) -c $(DEFS) $(CFLAGS) $< @@ -35,13 +41,12 @@ clean: 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