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

  1. LC = lc:lc
  2. ASM = lc:asm
  3. CFLAGS = -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+density.o
  8. TARGET = EpsonX
  9.  
  10. .c.o:
  11.    @$(LC) $(CFLAGS) $*
  12.  
  13. $(TARGET): printertag.o init.o data.o dospecial.o render.o density.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 epsonx_rev.i
  25.    @$(ASM) $(ASMFLAGS) printertag.asm
  26.  
  27. transfer.o: transfer.asm
  28.    @$(ASM) $(ASMFLAGS) transfer.asm
  29.  
  30. dospecial.o: dospecial.c
  31.  
  32. data.o: data.c
  33.  
  34. density.o: density.c
  35.  
  36. render.o: render.c
  37.  
  38. install:
  39.    @copy $(TARGET) to devs:printers
  40.