##############################################################################
# Build rules for Rage Theatre sample code                                   #
#                                                                            #
# Copyright (c) 1999 ATI Technologies Inc.  All rights reserved.             #
##############################################################################

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

!ifdef DEBUG
%R128SDKDEBUG = 1
!endif

all: util cc decoder vip

clean: .SYMBOLIC
    set R128SDKCLEAN = clean
    wmake

util: .SYMBOLIC
    cd util
    wmake $(%R128SDKCLEAN)
    cd ..

cc: util
    cd cc
    wmake $(%R128SDKCLEAN)
    cd ..

decoder: util
    cd decoder
    wmake $(%R128SDKCLEAN)
    cd ..

vip: util
    cd vip
    wmake $(%R128SDKCLEAN)
    cd ..

