############################################################
# Makefile for clients
############################################################
# $Header$
############################################################

############################################################
# Defintions
############################################################

SRCS	=	client.c \
		empire.c \
		io.c

OBJS	=	client.o \
		empire.o \
		io.o

LIB	=	../libclients.a

############################################################
# Rules
############################################################

default: lib

clean:
	rm -f $(OBJS) $(LIB)

all lib: $(LIB)

$(LIB): $(OBJS)
	$(AR) rv $@ $(OBJS)
	$(RANLIB) $@

depend:
	$(DEPEND) $(CFLAGS) $(SRCS)
