mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 04:40:44 +00:00
* 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:
parent
fadbd8d4b8
commit
e9faeacbfe
5 changed files with 31 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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 =
|
||||
|
|
|
@ -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 =
|
||||
|
|
|
@ -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 =
|
||||
|
|
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue