mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-26 05:30:53 +00:00
Better build procedure
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2940 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
de4323c514
commit
ada8279bee
2 changed files with 17 additions and 17 deletions
|
@ -39,7 +39,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# Additional flags to pass to the preprocessor
|
# Additional flags to pass to the preprocessor
|
||||||
ADDITIONAL_CPPFLAGS = -DGNUSTEP_INSTALL_LIBDIR=\"$(GNUSTEP_LIBRARIES_ROOT)\"
|
GNUSTEP_INSTALL_LIBDIR=$(GNUSTEP_LIBRARIES_ROOT)
|
||||||
|
ADDITIONAL_CPPFLAGS = -DGNUSTEP_INSTALL_LIBDIR=\"$(GNUSTEP_INSTALL_LIBDIR)\"
|
||||||
|
|
||||||
# Additional flags to pass to the Objective-C compiler
|
# Additional flags to pass to the Objective-C compiler
|
||||||
ADDITIONAL_OBJCFLAGS = -g -Wall
|
ADDITIONAL_OBJCFLAGS = -g -Wall
|
||||||
|
|
31
Version
31
Version
|
@ -1,25 +1,24 @@
|
||||||
# This file is included in various Makefile's to get version information.
|
# This file is included in various Makefile's to get version information.
|
||||||
|
|
||||||
# The gcc version required to compile the library.
|
# The gcc version required to compile the library.
|
||||||
GNUSTEP_GUI_GCC = 2.8.0
|
GNUSTEP_GUI_GCC=2.8.0
|
||||||
|
|
||||||
# Versions for libraries that gnustep-gui is dependent upon
|
# Versions for libraries that gnustep-gui is dependent upon
|
||||||
GNUSTEP_GUI_BASE = 0.5.0
|
GNUSTEP_GUI_BASE=0.5.0
|
||||||
LIB_FOUNDATION = 0.7.1
|
LIB_FOUNDATION=0.7.1
|
||||||
GNUSTEP_GUI_LIBTIFF = 3.4
|
GNUSTEP_GUI_LIBTIFF=3.4
|
||||||
GNUSTEP_GUI_DGS = 0.5.0
|
GNUSTEP_GUI_DGS=0.5.0
|
||||||
GNUSTEP_GUI_DPSCLIENT = 6.1
|
GNUSTEP_GUI_DPSCLIENT=6.1
|
||||||
|
|
||||||
# The version number of this release.
|
# The version number of this release.
|
||||||
GNUSTEP_GUI_MAJOR_VERSION = 0
|
GNUSTEP_GUI_MAJOR_VERSION=0
|
||||||
GNUSTEP_GUI_MINOR_VERSION = 5
|
GNUSTEP_GUI_MINOR_VERSION=5
|
||||||
GNUSTEP_GUI_SUBMINOR_VERSION = 0
|
GNUSTEP_GUI_SUBMINOR_VERSION=0
|
||||||
GNUSTEP_GUI_VERSION = \
|
GNUSTEP_GUI_VERSION=${GNUSTEP_GUI_MAJOR_VERSION}.${GNUSTEP_GUI_MINOR_VERSION}.${GNUSTEP_GUI_SUBMINOR_VERSION}
|
||||||
$(GNUSTEP_GUI_MAJOR_VERSION).$(GNUSTEP_GUI_MINOR_VERSION).$(GNUSTEP_GUI_SUBMINOR_VERSION)
|
VERSION=${GNUSTEP_GUI_VERSION}
|
||||||
VERSION = $(GNUSTEP_GUI_VERSION)
|
|
||||||
|
|
||||||
GNUSTEP_GUI_FTP_MACHINE = ftp.gnustep.org
|
GNUSTEP_GUI_FTP_MACHINE=ftp.gnustep.org
|
||||||
GNUSTEP_GUI_FTP_DIRECTORY = pub/gnustep/core
|
GNUSTEP_GUI_FTP_DIRECTORY=pub/gnustep/core
|
||||||
GNUSTEP_GUI_SNAP_FTP_MACHINE = alpha.gnu.org
|
GNUSTEP_GUI_SNAP_FTP_MACHINE=alpha.gnu.org
|
||||||
GNUSTEP_GUI_SNAP_FTP_DIRECTORY = gnu/gnustep
|
GNUSTEP_GUI_SNAP_FTP_DIRECTORY=gnu/gnustep
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue