head     38.0;
branch   ;
access   ;
symbols  ;
locks    davidj:38.0; strict;
comment  @*   @;


38.0
date     92.01.16.11.59.10;  author eric;  state Exp;
branches ;
next     ;


desc
@makefile file for the new-and-improved HP_DeskJet printer driver.
@


38.0
log
@added to rcs
@
text
@LC = lc:lc
ASM = hx68
CFLAGS = -iINCLUDE: -b0 -v -O
ASMFLAGS = incdir include:
LINK = lc:blink
LIB = lib:amiga.lib+lib:lc.lib+lib:debug.lib
#OBJ = printertag.o+init.o+data.o+dospecial.o+render.o+transfer.o+ctransfer.o+density.o
OBJ = printertag.o+init.o+data.o+dospecial.o+render.o+transfer.o+density.o
TARGET = HP_DeskJet

.c.o:
   @@$(LC) $(CFLAGS) $*

$(TARGET): printertag.o init.o data.o dospecial.o render.o transfer.o density.o
   @@$(LINK) <WITH <
   FROM $(OBJ)
   TO $(TARGET)
   LIBRARY $(LIB)
   NODEBUG SC SD VERBOSE MAP $(TARGET).map H
   <

init.o: init.asm
   @@$(ASM) from init.asm to init.o incdir include:

printertag.o: printertag.asm
   @@$(ASM) from printertag.asm to printertag.o $(ASMFLAGS)

transfer.o: transfer.asm
   @@$(ASM) transfer.asm to transfer.o $(ASMFLAGS)

ctransfer.o: ctransfer.asm
   @@$(ASM) ctransfer.asm to ctransfer.o $(ASMFLAGS)


dospecial.o: dospecial.c

data.o: data.c

density.o: density.c

render.o: render.c
@
