mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
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:
parent
8c8b1cfebb
commit
a6922553a1
2 changed files with 13 additions and 15 deletions
|
@ -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>
|
2002-04-02 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Source/gsc/GSContext.m (-GSDefineGState): Use new def - also
|
* Source/gsc/GSContext.m (-GSDefineGState): Use new def - also
|
||||||
|
|
|
@ -43,21 +43,14 @@ ADDITIONAL_INCLUDE_DIRS += -I../Headers \
|
||||||
#ADDITIONAL_LDFLAGS +=
|
#ADDITIONAL_LDFLAGS +=
|
||||||
|
|
||||||
# Additional library directories the linker should search
|
# 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)
|
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
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue