mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-20 06:51:08 +00:00
Check for proper defs in tzfile.h. Add sub-configure options so they are listed in help. Add generic include/lib flags option. * config.mak.in: Add load flags variable * base.make.in: Idem. * SSL/configure.ac: Add generic include/lib flags option. * Version: Add numeric value for runtime versioning. * Souce/GNUmakeifle: Add resource set install * Source/Makefile.postamble (Info-gnustep.plist): New target. * Testing/nsbundle.m: Additional tests. * Source/NSTimeZone.m: Check for proper tzfile defs (Fixes #10724). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20261 72102866-910b-0410-8b05-ffd578937521
30 lines
520 B
Makefile
30 lines
520 B
Makefile
#
|
|
# Extra make variables for base library
|
|
#
|
|
|
|
WHOAMI=@WHOAMI@
|
|
|
|
DYNAMIC_LINKER=@DYNAMIC_LINKER@
|
|
|
|
HAVE_LIBXML=@HAVE_LIBXML@
|
|
|
|
WITH_FFI=@WITH_FFI@
|
|
|
|
NX_CONST_STRING_CLASS=@NX_CONST_STRING_CLASS@
|
|
|
|
HAVE_PTHREAD_H=@HAVE_PTHREAD_H@
|
|
|
|
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@
|
|
|
|
# Default to building only -baseadd
|
|
# on non *-gnu-* library combos
|
|
ifneq ($(FOUNDATION_LIB),gnu)
|
|
add=yes
|
|
base=no
|
|
endif
|