# makefile for CPU Speed sample
# mcd 1996.03.22

# main targets

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

<<NOKEEP

all: cpuspeed.bin

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

# rules

.asm.exe:
        ml /Fl $<

.exe.bin:
        exe2bin $<

# dependancies

cpuspeed.bin:     cpuspeed.exe

cpuspeed.exe:     cpuspeed.asm io.inc ns486reg.inc

