home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 377b.lha / devices / printer / xerox / makefile < prev    next >
Encoding:
Makefile  |  1980-02-03  |  694 b   |  37 lines

  1. LC = lc:lc
  2. ASM = lc:asm
  3. FLAGS = -iINCLUDE: -b0 -d0 -v
  4. ASMFLAGS = -iINCLUDE:
  5. LINK = lc:blink
  6. LIB = lib:amiga.lib+lib:lc.lib
  7. OBJ = printertag.o+init.o+data.o+dospecial.o+render.o+transfer.o
  8. TARGET = Xerox_4020
  9.  
  10. .c.o:
  11.    @$(LC) $(FLAGS) $*
  12.  
  13. $(TARGET): printertag.o init.o data.o dospecial.o render.o transfer.o
  14.    @$(LINK) <WITH <
  15.    FROM $(OBJ)
  16.    TO $(TARGET)
  17.    LIBRARY $(LIB)
  18.    NODEBUG SC SD VERBOSE MAP $(TARGET).map H
  19.    <
  20.  
  21. init.o: init.asm
  22.    @$(ASM) $(ASMFLAGS) init.asm
  23.  
  24. printertag.o: printertag.asm xerox_4020_rev.i
  25.    @$(ASM) $(ASMFLAGS) printertag.asm
  26.  
  27. transfer.o: transfer.c
  28.  
  29. dospecial.o: dospecial.c
  30.  
  31. data.o: data.c
  32.  
  33. render.o: render.c
  34.  
  35. install:
  36.    @copy $(TARGET) to devs:printers
  37.