home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-21 | 823 b | 36 lines |
- SC = sc:c/sc
- ASM = sc:c/asm
- CFLAGS = idir=include:
- ASMFLAGS = -iinclude:
- LINK = SC:c/slink
- LIB = sc:lib/amiga.lib+sc:lib/scnb.lib
- OBJ = printertag.o+init.o+data.o+dospecial.o+render.o+task.o+transfer.o+density.o+include:modules/packer.o
- TARGET = IFF_Printer
-
- $(TARGET): printertag.o init.o data.o dospecial.o render.o task.o density.o transfer.o include:modules/packer.o
- $(LINK) <WITH <
- FROM $(OBJ)
- TO $(TARGET)
- LIBRARY $(LIB)
- ND SC SD VERBOSE MAP $(TARGET).map H
- <
-
- init.o: init.asm
- $(ASM) $(ASMFLAGS) init.asm
-
- printertag.o: printertag.asm iff_rev.i
- $(ASM) $(ASMFLAGS) printertag.asm
-
- transfer.o: transfer.asm
- $(ASM) $(ASMFLAGS) transfer.asm
-
- dospecial.o: dospecial.c
-
- data.o: data.c
-
- density.o: density.c
-
- render.o: render.c task.h
-
- task.o: task.c task.h
-