home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-04-18 | 627 b | 26 lines |
- #
- # For use with Acorn ANSI C Release 3.00 and AMU
- #
- CFLAGS=-zM -c
- #
- module: o.cmodulehdr o.main o.receive o.transmit o.mbuf o.arp
- link -o module -rmf o.* $.Clib.o.Stubs
-
- o.cmodulehdr: cmodulehdr
- cmhg cmodulehdr o.cmodulehdr
-
- o.arp: c.arp h.global
- cc $(CFLAGS) arp -I$.RISC_OSLib
-
- o.main: c.main h.global
- cc $(CFLAGS) main -I$.RISC_OSLib
-
- o.mbuf: c.mbuf h.global
- cc $(CFLAGS) mbuf -I$.RISC_OSLib
-
- o.receive: c.receive h.global
- cc $(CFLAGS) receive -I$.RISC_OSLib
-
- o.transmit: c.transmit h.global
- cc $(CFLAGS) transmit -I$.RISC_OSLib
-