diff --git a/make/ChangeLog b/make/ChangeLog index e7b95aa47d..f25057fc30 100644 --- a/make/ChangeLog +++ b/make/ChangeLog @@ -1,4 +1,8 @@ +2001-09-21 Ralf Corsepius + + * custom/bare.cfg: Define dummy make-cxx-exe. + 2001-09-21 Ralf Corsepius * custom/gensh2.cfg: Remove -lstdc++ from make-exe. diff --git a/make/custom/bare.cfg b/make/custom/bare.cfg index 126a37d7e6..9345f06bb5 100644 --- a/make/custom/bare.cfg +++ b/make/custom/bare.cfg @@ -37,4 +37,10 @@ define make-exe @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe endef +define make-cxx-exe + @echo "*** Cannot do a link with the bare bsp. ***" + @echo "#!/bin/sh" > $(basename $@).exe + @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe +endef + # Miscellaneous additions go here