Remove any variables in the optional build variable list that are marked as mandatory...
[pub/USBasp.git] / Maintenance / makefile
index 0f126eb..d9d1951 100644 (file)
@@ -32,7 +32,7 @@ make-as4-projects:
        @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
@@ -83,9 +83,9 @@ check-documentation-placeholders:
 \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