
#	THE DNET DRIVER, UNIX END
# 
# 	DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved
#
#	the BIN should be placed in your path for ease of use.  DNET uses 
#	UNIX level sockets allowing multiple users on a system to run it
#	independantly.  You should make a special directory (Example: .DNET)
#	and then setenv DNETDIR ~/.DNET/  ... all clients and servers will
#	use the enviroment variable to find/create the UNIX level sockets.

BIN	= ../bin
SRCS	= dnet.c control.c files.c globals.c net.c subs.c internal.c \
	packet.c dataconv.c
OBJS	= dnet.o control.o files.o globals.o net.o subs.o internal.o \
	packet.o dataconv.o

$(BIN)/dnet:	$(OBJS)
        wait
	cc $(OBJS) -o $(BIN)/dnet

clean:	
	rm -f *.o make.out

$(OBJS) : $(SRCS)
	cc -c %(right) &
