head     1.4;
branch   ;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.4
date     93.03.08.15.13.29;  author jerryh;  state Exp;
branches ;
next     1.3;

1.3
date     93.02.25.11.51.23;  author jerryh;  state Exp;
branches ;
next     1.2;

1.2
date     93.01.11.16.42.33;  author jerryh;  state Exp;
branches ;
next     1.1;

1.1
date     92.11.20.16.23.00;  author jerryh;  state Exp;
branches ;
next     ;


desc
@makefile for cdtv.device that uses cd.device
@


1.4
log
@changed to use sas 6.2.
@
text
@
# makefile for lmk

INCLDS =  cdtv_cr_hw.i cddev.i cdtv_rev.i cdtv.i
OBJ = obj/
LST = lst/

cdtv.ld: $(OBJ)dev.o $(OBJ)cmd.o $(OBJ)print.o
       blink with cdtv.lnk ND
       copy cdtv.ld cdtv.device
       copy cdtv.ld df0:modules
       copy cdtv.device df0:devs


bumprev:
         bumprev 40 cdtv_rev

release:
         smake bumprev
         smake

.asm.o:
        hx68 -a $*.asm -o $(OBJ)$*.o -s


$(OBJ)dev.o: dev.asm     $(INCLDS)

$(OBJ)cmd.o: cmd.asm     $(INCLDS)

$(OBJ)print.o: print.asm $(INCLDS)


@


1.3
log
@added version information.
@
text
@d19 2
a20 2
         lmk bumprev
         lmk
@


1.2
log
@hx68 instead of cape
@
text
@d4 1
a4 1
INCLDS =  cdtv_cr_hw.i cddev.i version.i cdtv.i
d8 1
a8 1
dev:   $(OBJ)dev.o $(OBJ)cmd.o $(OBJ)print.o
a13 2
$(OBJ)dev.o: dev.asm                                           $(INCLDS)
        hx68 -a dev.asm -o $(OBJ)dev.o -s
d15 2
a16 2
$(OBJ)cmd.o: cmd.asm                                           $(INCLDS)
        hx68 -a cmd.asm -o $(OBJ)cmd.o -s
d18 13
a30 2
$(OBJ)print.o: print.asm                                       $(INCLDS)
        hx68 -a print.asm -o $(OBJ)print.o -s
@


1.1
log
@Initial revision
@
text
@d11 2
d15 1
a15 1
        casm -a dev.asm -o $(OBJ)dev.o -s
d18 1
a18 1
        casm -a cmd.asm -o $(OBJ)cmd.o -s
d21 1
a21 1
        casm -a print.asm -o $(OBJ)print.o -s
@
