jtreg.gmk contains rules of the form
if [ ! -d $(@D) ] ; then $(MKDIR) -p $(@D) ; fi
which could be simplified. You don't need the `if` test with the -p option
if [ ! -d $(@D) ] ; then $(MKDIR) -p $(@D) ; fi
which could be simplified. You don't need the `if` test with the -p option