home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d145 / dnet.lha / Dnet / unix / client / Makefile < prev    next >
Makefile  |  1988-05-26  |  432b  |  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.