forked from Imagelibrary/rtems
21 lines
497 B
Plaintext
21 lines
497 B
Plaintext
## $Id$
|
|
|
|
project_bspdir=$(PROJECT_ROOT)/@RTEMS_BSP@
|
|
|
|
$(project_bspdir)/samples:
|
|
@$(mkdir_p) $@
|
|
$(project_bspdir)/tests:
|
|
@$(mkdir_p) $@
|
|
|
|
$(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
|