# makefile for "Boiler Plate" code for NS486SXF evaluation board
#
# mcd 1996.10.30

# main targets

help:
        @type <<
         
         NS486SXF eval board Boiler Plate Makefile
         -----------------------------------------
         targets:
            all       - build all images
            clean     - clean output files
            help      - this help file
         -----------------------------------------

<<NOKEEP

all: boiler.obj int.obj
        link boiler.obj int.obj;
        exe2bin boiler.exe boiler.bin

clean:
        if exist *.bin del *.bin
        if exist *.exe del *.exe
        if exist *.obj del *.obj
        if exist *.lst del *.lst

# rules

.asm.obj:
        ml /c /Fl $<

# dependancies

boiler.obj:     boiler.asm io.inc ns486reg.inc x86.inc boiler.inc
int.obj:        int.asm io.inc boiler.inc uart.inc

