forked from Imagelibrary/rtems
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * clock/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * console/Makefile.am: Remove AUTOMAKE_OPTIONS. * include/Makefile.am: Remove AUTOMAKE_OPTIONS. * start/Makefile.am: Remove AUTOMAKE_OPTIONS. * startup/Makefile.am: Remove AUTOMAKE_OPTIONS. * timer/Makefile.am: Remove AUTOMAKE_OPTIONS. * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
33 lines
630 B
Makefile
33 lines
630 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
PGM = $(ARCH)/start.o
|
|
|
|
S_FILES = start.S
|
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
|
|
|
OBJS = $(S_O_FILES)
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o: $(PGM)
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o
|
|
|
|
all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
|
|
|
.PRECIOUS: $(PGM)
|
|
|
|
EXTRA_DIST = start.S
|
|
|
|
include $(top_srcdir)/../../../../../../automake/local.am
|