##############################################################################
# CURSOR.C                                                                   #
#                                                                            #
# BUILD RULES FOR MACH64 SAMPLE CODE                                         #
#                                                                            #
# Copyright (c) 1994-1995 ATI Technologies Inc. All rights reserved          #
##############################################################################

MODEL = L
C_DEBUG = /Zi /Od /Fo$*.obj
ASM_DEBUG = /Zi
L_DEBUG = /CO

UTIL = ..\util

all: cursor.exe

cursor.exe: obj\cursor.obj $(UTIL)\sdkutil.lib
    link $(L_DEBUG) /NOI /MA /ST:4096 @<<
obj\cursor
cursor.exe
cursor.map
..\util\sdkutil.lib;
<<

obj\cursor.obj: cursor.c $(UTIL)\atim64.h $(UTIL)\sample.h
    cl /c /W3 /A$(MODEL) $(C_DEBUG) cursor.c

