##############################################################################
# GPBLIT.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: gpblit.exe

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

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

