Print a deprecation warning if objc.make is used

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32836 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2011-04-11 20:51:47 +00:00
parent a70a23a808
commit bce813fe47
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2011-04-11 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.make: Print a deprecation warning if this file is used.
2011-04-11 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Set OBJ_MERGE_CMD_FLAG to -r or -Wl,-r depending

View file

@ -19,6 +19,16 @@
# If not, write to the Free Software Foundation,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# objc.make is deprecated because we want gnustep-make to be
# independent of the Objective-C runtime, so that you can replace the
# Objective-C runtime without reconfiguring gnustep-make. Once that's
# the case, the flags to link against the runtime won't be determined
# by gnustep-make, but will be determined and set by gnustep-base (or
# equivalent). objc.make is meant to build and link without
# gnustep-base (or equivalent), but that won't be possible any more.
$(warning objc.make is deprecated. Please use tool.make instead)
ifeq ($(GNUSTEP_INSTANCE),)
include $(GNUSTEP_MAKEFILES)/Master/objc.make
else