forked from Imagelibrary/rtems
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@
|