home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff220.lzh / DNet / dnet / Makefile < prev    next >
Makefile  |  1989-06-04  |  602b  |  22 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. OBJS    = dnet.o control.o files.o globals.o net.o subs.o internal.o
  13.  
  14.  
  15. $(BIN)/dnet:    $(OBJS)
  16.     cc $(OBJS) -o $(BIN)/dnet
  17.  
  18. clean:    
  19.     rm -f *.o make.out
  20.  
  21.