X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=rfc1006%2FMakefile;fp=rfc1006%2FMakefile;h=0000000000000000000000000000000000000000;hb=1fbf9907e66c5697b9537a1a4849295c05b12b6b;hp=5f6052be1e081fca2f1040e02f2cb6a7c4deac17;hpb=b5bc2a31ad5125dc6d3ed1b6e626f0b9d22618bb;p=yaz-moved-to-github.git diff --git a/rfc1006/Makefile b/rfc1006/Makefile deleted file mode 100644 index 5f6052b..0000000 --- a/rfc1006/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright (C) 1994, Index Data I/S -# All rights reserved. -# Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.10 1998-02-11 11:53:35 adam Exp $ - -SHELL=/bin/sh -INCLUDE=-I../include -I. -I../../xtimosi/src -LIBDIR=../lib -LIBINCLUDE=-L$(LIBDIR) -DEFS=$(INCLUDE) # -DTRACE_TRANSPORT -LIB=$(LIBDIR)/librfc.a -LIBS=-lodr -PO = rfct.o makensap.o -CPP=$(CC) -E -RANLIB=ranlib - -all: $(LIBDIR) $(INCDIR) $(LIB) - -test: test.o $(LIB) - $(CC) $(CFLAGS) $(LIBINCLUDE) -o test test.o $(LIBS) - -alll: - -$(LIB): $(PO) - rm -f $(LIB) - ar qc $(LIB) $(PO) - $(RANLIB) $(LIB) - -$(LIBDIR): - mkdir $(LIBDIR) - -.c.o: - $(CC) -c $(DEFS) $(CFLAGS) $< - -clean: - rm -f *.[oa] test core mon.out gmon.out errlist - -depend: depend2 - -depend1: - sed '/^#Depend/q' Makefile.tmp - $(CPP) $(DEFS) -M *.c >>Makefile.tmp - mv -f Makefile.tmp Makefile - -depend2: - $(CPP) $(INCLUDE) -M *.c >.depend - -#ifeq (.depend,$(wildcard .depend)) -#include .depend -#endif - -#Depend --- DOT NOT DELETE THIS LINE