0492f50834
cogl-handle.h was being listed in the sources but it has been removed so the dist would not work. Also the micro-perf directory under tests was not listed in DIST_SUBDIRS so it would be skipped. This patch was written by Rico Tzschichholz. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit fb96716aaffd72a00461ce4dd8496904de0bb1ff)
14 lines
249 B
Makefile
14 lines
249 B
Makefile
SUBDIRS = conform micro-perf data
|
|
|
|
DIST_SUBDIRS = conform micro-perf data
|
|
|
|
EXTRA_DIST = README
|
|
|
|
test conform:
|
|
( cd ./conform && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
|
|
|
.PHONY: test conform
|
|
|
|
# run make test as part of make check
|
|
check-local: test
|