I use linux and filter doxygen output as follows:
doxygen 2> >(grep "Arguments.h") 1> /dev/null which is just to concentrate on failures within Arguments.h. Now i want to put all that in a minimal makefile for GNU Make 4.3
doc: doxygen 2> >(grep "Arguments.h") 1> /dev/null of course later to replace Arguments.h by some other file. But this does not work: reply is
doxygen 2> >(grep "Arguments.h") 1> /dev/null /bin/sh: -c: line 0: syntax error near unexpected token `>' /bin/sh: -c: line 0: `doxygen 2> >(grep "Arguments.h") 1> /dev/null' make: *** [makefile:2: doc] Error 1 as far as i know make... one has to escape sth, but no idea what... Any specialists which can help?