##############################################################################
# Build rules for RADEON Chapter 5 sample code                               #
#                                                                            #
# Copyright (c) 2000 ATI Technologies Inc.  All rights reserved.             #
##############################################################################

##################
# Makefile rules #
##################

#!ifdef DEBUG
%RADEONSDKDEBUG = 1
#!endif

all: lib type0 type1 type3 type3bm

clean: .SYMBOLIC
    set RADEONSDKCLEAN = clean
    wmake $(__MAKEOPTS__)

lib: .SYMBOLIC
    cd ..\lib
    wmake $(__MAKEOPTS__) $(%RADEONSDKCLEAN)
    cd ..\chap5

type0: lib
    cd type0
    wmake $(__MAKEOPTS__) $(%RADEONSDKCLEAN)
    cd ..

type1: lib
    cd type1
    wmake $(__MAKEOPTS__) $(%RADEONSDKCLEAN)
    cd ..

type3: lib
    cd type3
    wmake $(__MAKEOPTS__) $(%RADEONSDKCLEAN)
    cd ..

type3bm: lib
    cd type3bm
    wmake $(__MAKEOPTS__) $(%RADEONSDKCLEAN)
    cd ..
