e2eeea75eb
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable checks in InitObjdir. Explicit .OBJDIR target always allows read-only directory. o More code cleanup and refactoring. o More unit tests MFC after: 1 week
23 lines
520 B
Makefile
23 lines
520 B
Makefile
# things set by configure
|
|
|
|
_MAKE_VERSION?=@_MAKE_VERSION@
|
|
|
|
prefix?= @prefix@
|
|
srcdir= @srcdir@
|
|
CC?= @CC@
|
|
@force_machine@MACHINE?= @machine@
|
|
@force_machine_arch@MACHINE_ARCH?= @machine_arch@
|
|
DEFAULT_SYS_PATH?= @default_sys_path@
|
|
|
|
CPPFLAGS+= @CPPFLAGS@
|
|
CFLAGS+= ${CPPFLAGS} @DEFS@
|
|
LDFLAGS+= @LDFLAGS@
|
|
LIBOBJS+= @LIBOBJS@
|
|
LDADD+= @LIBS@
|
|
USE_META?= @use_meta@
|
|
USE_FILEMON?= @use_filemon@
|
|
FILEMON_H?= @filemon_h@
|
|
BMAKE_PATH_MAX?= @bmake_path_max@
|
|
# used if MAXPATHLEN not defined
|
|
CPPFLAGS+= -DBMAKE_PATH_MAX=${BMAKE_PATH_MAX}
|