mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * Makefile.am: Remove AUTOMAKE_OPTIONS. * include/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx01/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx02/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx03/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx04/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx05/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx06/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx07/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx08/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx09/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx10/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx11/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx12/Makefile.am: Remove AUTOMAKE_OPTIONS. * psx13/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxcancel/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxchroot01/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxfile01/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxhdrs/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxmount/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxmsgq01/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxreaddir/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxsem01/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxstat/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxtime/Makefile.am: Remove AUTOMAKE_OPTIONS. * psxtimer/Makefile.am: Remove AUTOMAKE_OPTIONS.
40 lines
673 B
Makefile
40 lines
673 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
TEST = psxtime
|
|
|
|
MANAGERS = all
|
|
|
|
C_FILES = main.c test.c
|
|
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
|
|
|
|
DOCTYPES = scn
|
|
DOCS = $(DOCTYPES:%=$(TEST).%)
|
|
|
|
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
|
OBJS = $(C_O_FILES)
|
|
|
|
PRINT_SRCS = $(DOCS)
|
|
|
|
PGM = ${ARCH}/$(TEST).exe
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../../../../automake/compile.am
|
|
include $(top_srcdir)/../../../../automake/leaf.am
|
|
include $(top_srcdir)/psxtests.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
all-local: $(ARCH) $(TMPINSTALL_FILES)
|
|
|
|
EXTRA_DIST = $(C_FILES) $(DOCS)
|
|
|
|
include $(top_srcdir)/../../../../automake/local.am
|