mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
a70a23a808
commit
bce813fe47
2 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
|
10
objc.make
10
objc.make
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue