# *********************************************************************
# 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=firstwindow
INC_PATH=..\include
RES_PATH=res
FILE_FORMAT=EXE
$(NAME).$(FILE_FORMAT): $(NAME).asm  

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

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