mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29670 72102866-910b-0410-8b05-ffd578937521
42 lines
939 B
Makefile
42 lines
939 B
Makefile
#
|
|
# Extra make variables for base library
|
|
#
|
|
# Copyright (C) 2005 Free Software Foundation
|
|
# Copying and distribution of this file, with or without modification,
|
|
# are permitted in any medium without royalty provided the copyright
|
|
# notice and this notice are preserved.
|
|
|
|
|
|
WHOAMI=@WHOAMI@
|
|
|
|
DYNAMIC_LINKER=@DYNAMIC_LINKER@
|
|
|
|
HAVE_LIBXML=@HAVE_LIBXML@
|
|
HAVE_GNUTLS=@HAVE_GNUTLS@
|
|
|
|
WITH_FFI=@WITH_FFI@
|
|
|
|
NX_CONST_STRING_CLASS=@NX_CONST_STRING_CLASS@
|
|
OBJCFLAGS=@OBJCFLAGS@
|
|
OBJC2RUNTIME=@OBJC2RUNTIME@
|
|
|
|
HAVE_INET_PTON=@HAVE_INET_PTON@
|
|
HAVE_INET_NTOP=@HAVE_INET_NTOP@
|
|
HAVE_OBJC_SYNC_ENTER=@HAVE_OBJC_SYNC_ENTER@
|
|
|
|
CONFIG_SYSTEM_INCL += @INCLUDE_FLAGS@
|
|
ifeq ($(shared),yes)
|
|
CONFIG_SYSTEM_LIBS += @LIBS@
|
|
CONFIG_SYSTEM_LIB_DIR += @LDIR_FLAGS@
|
|
endif
|
|
|
|
GNUSTEP_BASE_HAVE_LIBXML=@HAVE_LIBXML@
|
|
GNUSTEP_BASE_HAVE_GNUTLS=@HAVE_GNUTLS@
|
|
|
|
# Default to building only -baseadd
|
|
# on non *-gnu-* library combos
|
|
ifneq ($(FOUNDATION_LIB),gnu)
|
|
add=yes
|
|
base=no
|
|
endif
|
|
|