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 / client / Makefile < prev    next >
Makefile  |  1989-06-04  |  582b  |  32 lines

  1.  
  2. #    DNET CLIENTS
  3. #
  4. #   DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
  5. #
  6.  
  7. NETLIB = ../lib/dnetlib.o
  8. BIN = ../bin
  9.  
  10.  
  11. all:    $(NETLIB) $(BIN)/draw $(BIN)/dsoc $(BIN)/putfiles $(BIN)/dprint \
  12.     $(BIN)/getfiles
  13.  
  14. $(BIN)/draw:        draw.o
  15.     cc draw.o $(NETLIB) -o $(BIN)/draw
  16.  
  17. $(BIN)/dsoc:        dsoc.o
  18.     cc dsoc.o $(NETLIB) -o $(BIN)/dsoc
  19.  
  20. $(BIN)/getfiles:        getfiles.o 
  21.     cc getfiles.o $(NETLIB) -o $(BIN)/getfiles
  22.  
  23. $(BIN)/putfiles:        putfiles.o 
  24.     cc putfiles.o $(NETLIB) -o $(BIN)/putfiles
  25.  
  26. $(BIN)/dprint:        dprint.o
  27.     cc dprint.o $(NETLIB) -o $(BIN)/dprint
  28.  
  29. clean:
  30.     rm -f *.o make.out
  31.  
  32.