home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / internet / netlite / DCI / Makefile < prev    next >
Makefile  |  1993-04-18  |  627b  |  26 lines

  1. #
  2. # For use with Acorn ANSI C Release 3.00 and AMU
  3. #
  4. CFLAGS=-zM -c
  5. #
  6. module: o.cmodulehdr o.main o.receive o.transmit o.mbuf o.arp
  7.         link -o module -rmf o.* $.Clib.o.Stubs
  8.  
  9. o.cmodulehdr: cmodulehdr
  10.             cmhg cmodulehdr o.cmodulehdr
  11.  
  12. o.arp:      c.arp h.global
  13.             cc $(CFLAGS) arp -I$.RISC_OSLib
  14.  
  15. o.main:     c.main h.global
  16.             cc $(CFLAGS) main -I$.RISC_OSLib
  17.  
  18. o.mbuf:     c.mbuf h.global
  19.             cc $(CFLAGS) mbuf -I$.RISC_OSLib
  20.  
  21. o.receive:  c.receive h.global
  22.             cc $(CFLAGS) receive -I$.RISC_OSLib
  23.  
  24. o.transmit: c.transmit h.global
  25.             cc $(CFLAGS) transmit -I$.RISC_OSLib
  26.