Fix for compiling as a library

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@13336 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-04-03 18:12:53 +00:00
parent 8c8b1cfebb
commit a6922553a1
2 changed files with 13 additions and 15 deletions

View file

@ -1,3 +1,8 @@
2002-04-03 Adam Fedor <fedor@gnu.org>
* Source/GNUmakefile.preamble: Fix LIB_DIRS and
LIBRARIES_DEPEND_UPON for compiling as a library.
2002-04-02 Adam Fedor <fedor@gnu.org>
* Source/gsc/GSContext.m (-GSDefineGState): Use new def - also

View file

@ -43,21 +43,14 @@ ADDITIONAL_INCLUDE_DIRS += -I../Headers \
#ADDITIONAL_LDFLAGS +=
# Additional library directories the linker should search
#ADDITIONAL_LIB_DIRS +=
#
# Flags dealing with installing and uninstalling
#
# What are the libraries this library depends upon. This is needed for some
# systems where building a shared library requires to pass to the linker
# all the libraries the target library depends upon.
#LIBRARIES_DEPEND_UPON =
# Flags for compiling as a bundle
ifneq ($(BACKEND_BUNDLE),)
libgnustep-$(BACKEND_NAME)_BUNDLE_LIBS = $(GRAPHIC_LIBS)
ADDITIONAL_LIB_DIRS += $(GRAPHIC_LFLAGS)
#
# Flags for compiling as a bundle or library (if the system depends
# on having libraries specified).
#
libgnustep-$(BACKEND_NAME)_BUNDLE_LIBS = $(GRAPHIC_LIBS)
ifeq ($(BACKEND_BUNDLE),)
libgnustep-$(BACKEND_NAME)_LIBRARIES_DEPEND_UPON = $(GRAPHIC_LIBS)
endif