@for project_makefile in `find $(LUFA_ROOT)/Demos $(LUFA_ROOT)/Projects $(LUFA_ROOT)/Bootloaders -name makefile*`; do \\r
target_name=`grep "TARGET *=" $$project_makefile | cut -d'=' -f2 | sed 's/ //g'`; \\r
target_folder=`dirname $$project_makefile`; \\r
- as4_date=`date "+%e-%b-%Y %H:%M:%S"`; \\r
+ as4_date=`date "+%-e-%b-%Y %-H:%-M:%-S"`; \\r
\\r
if ( test -n "$$target_name" ); then \\r
echo Creating AS4 project for project $$target_name; \\r
\r
# Validate the working branch - compile all documentation, demos/projects/examples and run build tests\r
validate-branch:\r
- make -s -C $(LUFA_ROOT) doxygen\r
- make -s -C $(LUFA_ROOT) all\r
- make -s -C $(LUFA_ROOT)/BuildTests all\r
+ make -C $(LUFA_ROOT) doxygen\r
+ make -C $(LUFA_ROOT) all\r
+ make -C $(LUFA_ROOT)/BuildTests all\r
\r
# Validate the working branch for general release, check for placeholder documentation then build and test everything\r
validate-release: check-documentation-placeholders validate-branch\r