You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# git Makefile configuration, included in main Makefile
|
|
|
|
# @configure_input@
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
AR = @AR@
|
|
|
|
TAR = @TAR@
|
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
bindir = @bindir@
|
|
|
|
datarootdir = @datarootdir@
|
|
|
|
PREFIX = @prefix@
|
Build system improvements: (cross compilation, libnode, etc)
- utilizing autoconf configure.guess to output canonical $target_{cpu,vendor,os}
- normalizing $target_cpu --> $arch according to v8 naming scheme
- normalizing $target_os --> $platform according to v8 naming scheme
- renamed c-ares platform-arch directories to represent v8 canonical names
- new targets in Makefile: libnode-{static,dynamic}[-debug]
- scons is symbolized as SCONS in Makefile for portability/flexibility.
- LINKFLAGS inherith from LDFLAGS ("magic" variable exported by autoconf and configure).
- When building on OS X, CFLAGS and LDFLAGS will contain appropriate -arch flag, set up by configure (instead of the Makefile).
- libv8.a make targets cleaned up with unison libv8_flags set of flags.
- the clean make target now cleans up libraries (libv8, libnode, etc).
- added config.guess, config.sub and install-sh (utilized by autoconf/configure)
14 years ago
|
|
|
target_cpu = @target_cpu@
|
|
|
|
target_vendor = @target_vendor@
|
|
|
|
target_os = @target_os@
|
|
|
|
arch = @arch@
|
|
|
|
platform = @platform@
|
|
|
|
|
|
|
|
mandir=@mandir@
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
export exec_prefix mandir
|
|
|
|
export srcdir VPATH PREFIX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HAVE_OPENSSL=@HAVE_OPENSSL@
|
|
|
|
WANT_SOCKET=@WANT_SOCKET@
|