citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 8bfe2afb2f95caaa25e3816f6a2cf5e35192152b
parent 0d7fe5fcafa33313b1708fd540e7098bc1a1286e
Author: kyle <kyle@getaddrinfo.net>
Date:   Thu, 29 Oct 2015 01:26:52 -0600

make: add root Makefile

Diffstat:
AMakefile | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,16 @@ +SUBDIRS = instrument runtime viewer + +all: make_subdirs + +test: make_subdirs + sh run_tests.sh + +clean: + make -C instrument clean + make -C runtime clean + make -C viewer clean + +make_subdirs: + make -C instrument + make -C runtime + make -C viewer