home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff294.lzh / DNet / unix / dnet / DMakefile < prev    next >
Makefile  |  1989-12-11  |  762b  |  27 lines

  1.  
  2. #    THE DNET DRIVER, UNIX END
  3. #     DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved
  4. #
  5. #    the BIN should be placed in your path for ease of use.  DNET uses 
  6. #    UNIX level sockets allowing multiple users on a system to run it
  7. #    independantly.  You should make a special directory (Example: .DNET)
  8. #    and then setenv DNETDIR ~/.DNET/  ... all clients and servers will
  9. #    use the enviroment variable to find/create the UNIX level sockets.
  10.  
  11. BIN    = ../bin
  12. SRCS    = dnet.c control.c files.c globals.c net.c subs.c internal.c \
  13.     packet.c dataconv.c
  14. OBJS    = dnet.o control.o files.o globals.o net.o subs.o internal.o \
  15.     packet.o dataconv.o
  16.  
  17. $(BIN)/dnet:    $(OBJS)
  18.         wait
  19.     cc $(OBJS) -o $(BIN)/dnet
  20.  
  21. clean:    
  22.     rm -f *.o make.out
  23.  
  24. $(OBJS) : $(SRCS)
  25.     cc -c %(right) &
  26.