forked from Imagelibrary/rtems
* minimum/Makefile.am: Fix comments to make automake-1.5 happy. * sample.am: Use TMPINSTALL_FILES = to make automake-1.5 happy. * cdtest/Makefile.am: Remove LD_LIBS.
41 lines
741 B
Makefile
41 lines
741 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
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
|