X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=rfc1006%2FMakefile.in;fp=rfc1006%2FMakefile.in;h=f43d60b9d76c62f6acb04d50b3a08a8f8aad922b;hp=0000000000000000000000000000000000000000;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb diff --git a/rfc1006/Makefile.in b/rfc1006/Makefile.in new file mode 100644 index 0000000..f43d60b --- /dev/null +++ b/rfc1006/Makefile.in @@ -0,0 +1,39 @@ +# Copyright (C) 1994-1998, Index Data +# All rights reserved. +# Sebastian Hammer, Adam Dickmeiss +# $Id: Makefile.in,v 1.1 1998-08-21 14:13:33 adam Exp $ + +SHELL=/bin/sh + +CC=@CC@ +CPP=@CPP@ +RANLIB=@RANLIB@ +CDEFS=@ODEFS@ @ODEFS@ + +INCLUDE=-I../include -I. -I../../xtimosi/src +LIBDIR=../lib +DEFS=$(INCLUDE) $(CDEFS) +LIB=$(LIBDIR)/librfc.a +PO = rfct.o makensap.o + +all: $(LIB) + +alll: + +$(LIB): $(PO) + rm -f $(LIB) + ar qc $(LIB) $(PO) + $(RANLIB) $(LIB) + +.c.o: + $(CC) -c $(DEFS) $(CFLAGS) $< + +clean: + rm -f *.[oa] test core mon.out gmon.out errlist + +depend: + sed '/^#Depend/q' Makefile.tmp + $(CPP) $(DEFS) -M *.c >>Makefile.tmp + mv -f Makefile.tmp Makefile + +#Depend --- DOT NOT DELETE THIS LINE