home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d145 / dnet / unix / client / makefile < prev    next >
Encoding:
Makefile  |  1988-05-26  |  432 b   |  26 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. .c.o:    ; cc -c -o $*.o $*.c
  11.  
  12. all:    $(NETLIB) $(BIN)/draw $(BIN)/dsoc $(BIN)/putfiles
  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)/putfiles:        putfiles.o 
  21.     cc putfiles.o $(NETLIB) -o $(BIN)/putfiles
  22.  
  23. clean:
  24.     rm -f *.o make.out
  25.  
  26.