home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 300.lha / xprzmodem.library_v2.0 / makefile < prev    next >
Encoding:
Makefile  |  1980-12-01  |  788 b   |  27 lines

  1. # WEIRDNESS ALERT: You'll probably want to redo this makefile to suit
  2. # yourself.  I like Aztec's make util better than lmk, and I prefer to
  3. # invoke the compiler using the cc frontend from C++, and these are
  4. # probably not habits shared by many other people.
  5.  
  6. CFLAGS  = -b1 -cfiqst -d1 -iinclude: -O -r1r -s -v
  7. MODULES = latticelib.o send.o receive.o utils.o zm.o getsystime.o timeout.o
  8.  
  9. .c.o:
  10.   cc $(CFLAGS) $*.c
  11.  
  12. .a.o:
  13.   asm -iINCLUDE: $*
  14.  
  15. xprzmodem.library: $(MODULES) makefile
  16.   blink FROM $(MODULES) TO $@ LIB lib:lcr.lib lib:amiga.lib MAXHUNK 8192 SC SD MAP $@.map FHL ND
  17.   copy $@ libs:
  18.   avail flush
  19.  
  20. send.o:     xproto.h zmodem.h xprzmodem.h
  21.  
  22. receive.o:  xproto.h zmodem.h xprzmodem.h
  23.  
  24. utils.o:    xproto.h zmodem.h xprzmodem.h
  25.  
  26. zm.o:       xproto.h zmodem.h xprzmodem.h zcrc.h
  27.