mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-30 01:26:14 +08:00
24 lines
618 B
Makefile
24 lines
618 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
|
|
|
SUBDIRS = @cfg_subdirs@ wrapup tests
|
|
|
|
rtems_bspdir = $(prefix)/@RTEMS_BSP@
|
|
|
|
# NOTE: The wildcard on the install should pick up everything except
|
|
# the tests directory. This significantly minimizes the install size.
|
|
install-data-local:
|
|
$(mkinstalldirs) $(rtems_bspdir)
|
|
cd $(PROJECT_ROOT); \
|
|
tar cf - @RTEMS_BSP@/[bilsuM]* | (cd $(DESTDIR)$(prefix); tar xpBf - );
|
|
|
|
uninstall-local:
|
|
rm -rf $(rtems_bspdir)/[bsl]*;
|
|
|
|
include $(top_srcdir)/../../automake/subdirs.am
|
|
include $(top_srcdir)/../../automake/host.am
|