##############################################################################
# SBLIT.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: sblit.exe

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

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

