# Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss # $Id: Makefile,v 1.17 1995-09-04 12:34:05 adam Exp $ SHELL=/bin/sh RANLIB=ranlib YAZ=../../yaz YAZLIB=$(YAZ)/lib/libyaz.a INCLUDE=-I../include -I$(YAZ)/include TPROG=opt-test #CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) CPP=cc -E LIB=../lib/alexutil.a PO = xmalloc.o res.o alexpath.o common.o all: $(LIB) alll: res-test all res-test: res-test.o $(LIB) $(YAZLIB) $(CC) -o res-test res-test.o $(LIB) $(YAZLIB) $(LIB): $(PO) rm -f $(LIB) ar qc $(LIB) $(PO) $(RANLIB) $(LIB) .c.o: $(CC) -c $(DEFS) $(CFLAGS) $< clean: rm -f *.[oa] res-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) $(DEFS) -M *.c >.depend ifeq (.depend,$(wildcard .depend)) include .depend endif #Depend --- DOT NOT DELETE THIS LINE