mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
include $(RTEMS_ROOT)/make/leaf.cfg
|
|
|
|
CXXLINK_APP = $(CXXLINK) $(LDLIBS) $(LINK_OBJS) $(LINK_LIBS)
|
|
ifndef make-cxx-exe
|
|
define make-cxx-exe
|
|
$(CXXLINK_APP)
|
|
endef
|
|
@ENDIF@
|
|
|
|
LINK_APP = $(LINK) $(LDLIBS) $(LINK_OBJS) $(LINK_LIBS)
|
|
ifndef make-exe
|
|
define make-exe
|
|
$(LINK_APP)
|
|
endef
|
|
@ENDIF@
|