# Index: OSLib/!OsLib/Source/Test/Test/AMUmakefile		20040106
#
#------------------------------------------------------------------------
# paths & directories
DIR		= ${MAKEFILEDIR}

#------------------------------------------------------------------------
#tools
MAKE   	    	= amu -desktop
RM    	    	= rm -nq

CP    	    	= copy
COPYFLAGS   	= A~C~DFLN~P~Q~R~S~T~V

#------------------------------------------------------------------------
#targets
.PHONY:	all test readvarval TestFW

all:  readvarval test

test:
      ${MAKE} -f ${DIR}.Test.AMUmakefile all APCS=${APCS}

readvarval:
      ${MAKE} -f ${DIR}.readvarval.AMUmakefile all APCS=${APCS}

TestFW:
      ${MAKE} -f ${DIR}.TestFW.AMUmakefile all APCS=${APCS}

clean:
   	${MAKE} -f ${DIR}.readvarval.AMUmakefile clean
   	${MAKE} -f ${DIR}.Test.AMUmakefile clean
   	${MAKE} -f ${DIR}.TestFW.AMUmakefile clean

distclean:
   	${MAKE} -f ${DIR}.readvarval.AMUmakefile distclean
   	${MAKE} -f ${DIR}.Test.AMUmakefile distclean
   	${MAKE} -f ${DIR}.TestFW.AMUmakefile distclean
