You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
396 B
20 lines
396 B
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = include
|
|
|
|
SUBDIRS = src tests docs include
|
|
|
|
.PHONY: docs coverage-html
|
|
|
|
if HAVE_DOXYGEN
|
|
docs:
|
|
-$(MAKE) -C docs $(AM_MAKEFLAGS) -k $@
|
|
endif
|
|
|
|
if HAVE_GCOV
|
|
coverage-html:
|
|
-$(MAKE) -C tests $(AM_MAKEFLAGS) -k $@
|
|
endif
|
|
|
|
tags:
|
|
ctags -R -V --langdef=cclass --langmap=cclass:.h --regex-cclass='/^[ \t]*\(TR_CLASS\|TR_INTERFACE\)\(([a-zA-Z0-9_]+)/\2/d,definition/'
|