mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-07 08:03:12 +00:00
* 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.
21 lines
509 B
Plaintext
21 lines
509 B
Plaintext
## $Id$
|
|
|
|
project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@
|
|
|
|
$(project_bspdir)/samples:
|
|
@$(mkinstalldirs) $@
|
|
$(project_bspdir)/tests:
|
|
@$(mkinstalldirs) $@
|
|
|
|
$(project_bspdir)/samples/$(SAMPLE)$(LIB_VARIANT).exe: $(PGM)
|
|
$(INSTALL_PROGRAM) $< $@
|
|
|
|
$(project_bspdir)/tests/$(SAMPLE)$(LIB_VARIANT).exe: $(PGM)
|
|
$(INSTALL_PROGRAM) $< $@
|
|
|
|
TMPINSTALL_FILES = \
|
|
$(project_bspdir)/tests \
|
|
$(project_bspdir)/tests/$(SAMPLE)$(LIB_VARIANT).exe \
|
|
$(project_bspdir)/samples \
|
|
$(project_bspdir)/samples/$(SAMPLE)$(LIB_VARIANT).exe
|