
#	DNET CLIENTS
#
#   DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
#

NETLIB = ../lib/dnetlib.o
BIN = ../bin

.c.o:	; cc -c -o $*.o $*.c

all:	$(NETLIB) $(BIN)/draw $(BIN)/dsoc $(BIN)/putfiles

$(BIN)/draw:		draw.o
	cc draw.o $(NETLIB) -o $(BIN)/draw

$(BIN)/dsoc:		dsoc.o
	cc dsoc.o $(NETLIB) -o $(BIN)/dsoc

$(BIN)/putfiles:    	putfiles.o 
	cc putfiles.o $(NETLIB) -o $(BIN)/putfiles

clean:
	rm -f *.o make.out

