forked from Imagelibrary/rtems
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * base_mp/node1/Makefile.am: Remove AUTOMAKE_OPTIONS. * base_mp/Makefile.am: Remove AUTOMAKE_OPTIONS. * base_mp/node2/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * base_sp/Makefile.am: Remove AUTOMAKE_OPTIONS. * cdtest/Makefile.am: Remove AUTOMAKE_OPTIONS. * hello/Makefile.am: Remove AUTOMAKE_OPTIONS. * minimum/Makefile.am: Remove AUTOMAKE_OPTIONS. * paranoia/Makefile.am: Remove AUTOMAKE_OPTIONS. * ticker/Makefile.am: Remove AUTOMAKE_OPTIONS. * unlimited/Makefile.am: Remove AUTOMAKE_OPTIONS.
40 lines
710 B
Makefile
40 lines
710 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
SAMPLE = minimum
|
|
PGM = ${ARCH}/$(SAMPLE).exe
|
|
|
|
MANAGERS = all
|
|
|
|
C_FILES = init.c
|
|
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
|
|
|
|
DOCTYPES = doc scn
|
|
DOCS = $(DOCTYPES:%=$(SAMPLE).%)
|
|
|
|
SRCS = $(DOCS) $(C_FILES) $(H_FILES)
|
|
OBJS = $(C_O_FILES)
|
|
|
|
PRINT_SRCS = $(DOCS)
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../../../../automake/compile.am
|
|
include $(top_srcdir)/../../../../automake/leaf.am
|
|
include $(top_srcdir)/sample.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
all-local: ${ARCH} $(TMPINSTALL_FILES)
|
|
# This test should not be executed
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
EXTRA_DIST = $(C_FILES) $(DOCS)
|
|
|
|
include $(top_srcdir)/../../../../automake/local.am
|