# *********************************************************************
# FASM Complier MAKEFILE
# Author:Kevin Zheng
# Date: January 16th, 2004
# Notice:
# $@ ==The destination file
# $* ==The destination file but except extended name
# $? ==All of source files
# $< ==Source file that it only used for the hidden rules.
# *********************************************************************
NAME=icon
FILE_FORMAT=EXE

$(NAME).$(FILE_FORMAT): $(NAME).asm  res\string.fnt


.asm.$(FILE_FORMAT):
        fasm.exe $< $@

clean:
        del $(NAME).$(FILE_FORMAT)
