#
# Makefile
#
# This is the Makefile for libutil.
#
# $Id: Makefile,v 1.7 1996/06/25 20:27:06 marc Exp $
#

UTILOBJS=config.o no_modem.o make_path.o

.c.o:
	$(CC) $(CFLAGS) -c $*.c

all: libutil.a

config.o: config.c
	$(CC) $(CFLAGS) -DCONF_DIR=\"$(CONFDIR)\" -c $*.c

libutil.a: $(UTILOBJS)
	$(RM) -f libutil.a
	$(AR) $(ARFLAGS) libutil.a $(UTILOBJS)
	-$(RANLIB) libutil.a

install:

clean:
	@$(RM) -f libutil.a $(UTILOBJS)

fullclean: clean

include depend
