mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Adde support for 'warn'
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@5138 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1af06a69bf
commit
01f001b3de
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Nov 07 14:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* common.make: define GSWARN unless 'warn=no' is on command line.
|
||||
|
||||
Fri Nov 05 11:23:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* application.make: Added comment about including info.plist stuff.
|
||||
|
|
|
@ -286,7 +286,11 @@ OBJ_DIR_PREFIX += debug_
|
|||
LIBRARY_NAME_SUFFIX := d$(LIBRARY_NAME_SUFFIX)
|
||||
endif
|
||||
|
||||
OBJ_DIR_PREFIX += obj
|
||||
ifeq ($(warn), no)
|
||||
ADDITIONAL_FLAGS += -UGSWARN
|
||||
else
|
||||
ADDITIONAL_FLAGS += -DGSWARN
|
||||
endif
|
||||
|
||||
ifneq ($(LIBRARY_NAME_SUFFIX),)
|
||||
LIBRARY_NAME_SUFFIX := _$(LIBRARY_NAME_SUFFIX)
|
||||
|
|
Loading…
Reference in a new issue