forked from Imagelibrary/rtems
* base_mp/node1/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES. * base_mp/node2/Makefile.am: Ditto. * base_sp/Makefile.am: Ditto. * cdtest/Makefile.am: Ditto. * fileio/Makefile.am: Ditto. * hello/Makefile.am: Ditto. * loopback/Makefile.am: Ditto. * minimum/Makefile.am: Ditto. * paranoia/Makefile.am: Ditto. * pppd/Makefile.am: Ditto. * ticker/Makefile.am: Ditto. * unlimited/Makefile.am: Ditto.
41 lines
716 B
Makefile
41 lines
716 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
SAMPLE = minimum
|
|
PGM = ${ARCH}/$(SAMPLE).exe
|
|
|
|
MANAGERS = all
|
|
|
|
C_FILES = init.c
|
|
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
|
|
|
|
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: $(TMPINSTALL_FILES)
|
|
# This test should not be executed
|
|
|
|
${PGM}: $(OBJS) $(LINK_FILES)
|
|
$(make-exe)
|
|
|
|
EXTRA_DIST = $(C_FILES) $(DOCS)
|
|
|
|
CLEANFILES = $(TMPINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|