home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 340.lha / ftek / Makefile < prev    next >
Encoding:
Makefile  |  1989-12-26  |  848 b   |  41 lines

  1.  
  2. #    DNET CLIENTS
  3. #
  4. #  DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
  5. #
  6.  
  7. CFLAGS    = +L +Icomp:include/symbols.m
  8. NETLIB    = /lib/dnetlib.o
  9. BIN    = /bin
  10.  
  11. .c.o:
  12.     cc $(CFLAGS) -o $*.o $*.c
  13.  
  14.  
  15. all:    $(NETLIB) $(BIN)/putfiles $(BIN)/loadav \
  16.             $(BIN)/fterm $(BIN)/quitdnet
  17.  
  18. /lib/dnetlib.o: /lib/dnetlib.c
  19.     cc $(CFLAGS) -o /lib/dnetlib.o /lib/dnetlib.c
  20.  
  21. $(BIN)/loadav:  loadav.o
  22.     ln +Q loadav.o $(NETLIB) -lc32 -o $(BIN)/loadav
  23.  
  24. $(BIN)/putfiles:    putfiles.o
  25.     ln +Q putfiles.o $(NETLIB) -lc32 -o $(BIN)/putfiles
  26.  
  27. $(BIN)/fterm:    fterm.o
  28.     ln +Q fterm.o $(NETLIB) -lc32 -o $(BIN)/fterm
  29.  
  30. $(BIN)/quitdnet:    quitdnet.o
  31.     ln +Q quitdnet.o $(NETLIB) -lc32 -o $(BIN)/quitdnet
  32.  
  33. $(BIN)/ftek:    ftek.o tek.h tek.o
  34.     ln +Q ftek.o tek.o $(NETLIB) -lma -lc32 -o $(BIN)/ftek
  35.  
  36. tek.o: tek.c tek.h
  37.     cc $(CFLAGS) +fi -o tek.o tek.c
  38.  
  39. clean:
  40.     -delete #?.o make.out
  41.