* EOAccess/GNUmakefile: Test FOUNDATION_LIB to determine

whether
        to link -base or -baseadd.
        * EOControl/GNUmakefile: Ditto.
        * EOModeler/GNUmakefile: Ditto.
        * Tools/GNUmakefile: Ditto.  Update title.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@18499 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2004-01-29 09:26:40 +00:00
parent fadbd8d4b8
commit e9faeacbfe
5 changed files with 31 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2003-01-29 David Ayers <d.ayers@inode.at>
* EOAccess/GNUmakefile: Test FOUNDATION_LIB to determine whether
to link -base or -baseadd.
* EOControl/GNUmakefile: Ditto.
* EOModeler/GNUmakefile: Ditto.
* Tools/GNUmakefile: Ditto. Update title.
2003-11-28 Manuel Guesdon <mguesdon@orange-concept.com>
* EOAccess/EOAttribute.m:

View file

@ -32,7 +32,13 @@ include ../Version
# The library to be compiled
LIBRARY_NAME=libgnustep-db2
LIBRARIES_DEPEND_UPON=-lgnustep-base -lgnustep-db2control
ifeq ($(FOUNDATION_LIB),gnu)
LIBRARIES_DEPEND_UPON=-lgnustep-base
else
LIBRARIES_DEPEND_UPON=-lgnustep-baseadd
endif
LIBRARIES_DEPEND_UPON+=-lgnustep-db2control
# The C source files to be compiled
libgnustep-db2_C_FILES =

View file

@ -32,7 +32,11 @@ include ../Version
# The library to be compiled
LIBRARY_NAME=libgnustep-db2control
ifeq ((FOUNDATION_LIB),gnu)
libgnustep-db2control_LIBRARIES_DEPEND_UPON = -lgnustep-base
else
libgnustep-db2control_LIBRARIES_DEPEND_UPON = -lgnustep-baseadd
endif
# The C source files to be compiled
libgnustep-db2control_C_FILES =

View file

@ -32,7 +32,11 @@ include ../Version
# The library to be compiled
LIBRARY_NAME=libgnustep-db2modeler
ifeq ((FOUNDATION_LIB),gnu)
libgnustep-db2modeler_LIBRARIES_DEPEND_UPON = -lgnustep-base
else
libgnustep-db2modeler_LIBRARIES_DEPEND_UPON = -lgnustep-baseadd
endif
# The C source files to be compiled
libgnustep-db2modeler_C_FILES =

View file

@ -1,5 +1,5 @@
#
# EOAccess makefile for GNUstep Database Library.
# Tools makefile for GNUstep Database Library.
#
# Copyright (C) 1997 Free Software Foundation, Inc.
#
@ -32,7 +32,13 @@ include ../Version
# The library to be compiled
TOOL_NAME=gdlgsdoc eoutil
LIBRARIES_DEPEND_UPON=-lgnustep-base -lgnustep-db2control -lgnustep-db2
ifeq ((FOUNDATION_LIB),gnu)
LIBRARIES_DEPEND_UPON=-lgnustep-base
else
LIBRARIES_DEPEND_UPON=-lgnustep-baseadd
endif
LIBRARIES_DEPEND_UPON+=-lgnustep-db2control -lgnustep-db2
# The C source files to be compiled
gdlgsdoc_C_FILES =