home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-09-03 | 1.1 KB | 47 lines |
- ### makefile
- #
- # DESCRIPTION:
- # ===========
- #
- # This is the makefile for the xprascii.library.
- # This version is written for Aztec C. It is based on the example
- # library by Jim Mackraz who got some stuff from Neil Katin.
- # All changes and additions by me.
- #
- # AUTHOR/DATE: W.G.J. Langeveld, February 1989.
- # ============
- #
- ###
-
- All: xprascii.library xpr.lib
-
- # The order in the following is important!
- xprascii.library: xprascii.o timeout.o funky.o protolib.o rtag.o libface.o
- ln -g -o xprascii.library xprascii.o timeout.o funky.o protolib.o \
- rtag.o libface.o -lc
-
- xpr.lib: liblink.o
- lb xpr.lib -v liblink.o
-
- liblink.o: liblink.asm
- as liblink.asm
-
- xprascii.o: xprascii.c xproto.h
- cc xprascii.c
-
- timeout.o: timeout.c
- cc timeout.c
-
- protolib.o: protolib.c protolib.h
- cc protolib.c
-
- rtag.o: rtag.asm
- as rtag.asm
-
- funky.o: funky.asm
- as funky.asm
-
- libface.o: libface.asm
- as libface.asm
-
-