Revision 1a724986a75624637e639d57ca976b1a066d6fd6 authored by Jane Tournois on 06 January 2017, 16:53:41 UTC, committed by Jane Tournois on 09 January 2017, 07:20:35 UTC
1 parent 57d86c6
Raw File
makefile2
# A GNU makefile which calls run_testsuite_with_cmake over all directories.

dirs:=$(wildcard */)
targets:=$(addsuffix pink_elephant,$(dirs))
cleans:=$(addsuffix green_elephant,$(dirs))

all: ${targets}

clean: ${cleans}

%/pink_elephant:
	@+./run_testsuite_with_cmake $*

%/green_elephant:
	@cd $* && $(MAKE) clean
back to top