Switch back to include compile.am instead of amcompile.am

This commit is contained in:
Ralf Corsepius
2005-11-07 09:09:26 +00:00
parent c32fb8f136
commit d66557fac4
148 changed files with 149 additions and 148 deletions

View File

@@ -19,7 +19,7 @@ OBJS = $(lib_a_OBJECTS)
PRINT_SRCS = $(DOCS)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../automake/amcompile.am
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/leaf.am
include $(top_srcdir)/sample.am

View File

@@ -14,6 +14,7 @@
*/
#include <rtems.h>
#include <inttypes.h>
/* functions */
@@ -60,7 +61,7 @@ extern rtems_name Task_name[ 4 ]; /* array of task names */
#define print_time(_s1, _tb, _s2) \
do { \
printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
printf( "%s%02" PRId32 ":%02" PRId32 ":%02" PRId32 " %02" PRId32 "/%02" PRId32 "/%04" PRId32 "%s", \
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
fflush(stdout); \