[comp.sys.amiga.tech] printer drivers & Manx

dwl10@uts.amdahl.com (Dave Lowrey) (01/23/90)

A week ago I posted a question about compiling printer drivers
with the Manx C compiler. I was having problems with the ole' Guru.

It turns out that I wasn't assembling the .asm files with the correct
flags. I was compiling the C code correctly!

I received several requests for the info on how to correctly produce
a printer driver, using Manx. The following is a Makefile for the
EpsonX driver. Most of the other drivers use the same module names, so
it should work for most cases.

Enjoy!!!
==========================================================
CFLAGS = +L +B +D
AFLAGS = -C -D
OBJS = printertag.o init.o data.o dospecial.o render.o density.o transfer.o

EpsonX:  $(OBJS)
      ln +A -O EpsonX $(OBJS) -lcl32

==========================================================
-- 
"What is another word  |  Dave Lowrey    | [The opinions expressed MAY be
 for 'Thesaurus'?"     |  Amdahl Corp.   | those of the author and are not
                       |  Houston, Texas | necessarily those of his
   Steven Wright       |  amdahl!dwl10   | employer]   (`nuff said!)