head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2004.09.22.17.37.21;	author heavenzen;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial Simple Makefile
@
text
@# Makefile for the Advanced CUnit Test(ACT)
all:
	-@@mkdir lib
	-@@cd ./src/act/make								;$(MAKE)
	-@@cd ./tests/actTests/make				;$(MAKE)
	-@@cd ./examples/exConSample/make	;$(MAKE)

test:
	-@@./bin/actTests

examples:
	-@@./bin/exconsample

clean:
	-@@cd ./src/act/make		;$(MAKE) clean
	-@@cd ./tests/actTests/make		;$(MAKE) clean
	-@@cd ./examples/exConSample/make		;$(MAKE) clean

.PHONY: clean examples test all
@
