home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-30 | 523 b | 28 lines |
- # Makefile for Photogenics GIO files.
- # (C) Almathera 1994-1995. All Rights Reserved
-
-
- all: BMP.gio
-
- .c.o:
- sc nostackcheck DATA=FAR $*.c
-
- .asm.obj:
- genam $*.asm to $*asm.obj
-
-
-
- BMPasm.obj: BMP.asm
-
- BMP.o: BMP.c
-
- #This first slink creates a library with debug information
-
- BMP.debug: BMP.o BMPasm.obj
- slink from BMP.o,BMPasm.obj lib lib:sc.lib,lib:amiga.lib to BMP.gio noicons
-
- #Now we copy it using slink, at the same time stripping debug info out.
-
- BMP.gio: BMP.debug
- slink from BMP.debug to BMP.gio nodebug noicons
-