NetBeans: Missing seperator



  • Hallo,
    ich möchte ein kleines OS programmieren.
    Leider macht NetBeans Probleme:
    Fehler:

    makefile.txt:2: *** missing separator.  Stop.
    
    BUILD FAILED (exit value 2, total time: 80ms)
    

    Meine makefile.txt:

    loader.o: loader.cpp
        gcc -c loader.cpp
    
    kernel.o: kernel.cpp
        gcc -c kernel.cpp
    
    api.o: api.cpp api.h
        gcc -c api.cpp
    
    boot.o: boot.s
        as boot.s -o boot.o
    

    Was mach ich falsch?

    LG



  • Der Fehler kommt in Deinem Makefile, wenn Du in den Zeilen 2, 5, 8 und 11 am Anfang Leerzeichen statt Tabs nutzt.

    EDIT: Vielleicht hast Du eine Option "Replace Tabs with Spaces" oder ähnlich aktiviert.



  • Gregor schrieb:

    Der Fehler kommt in Deinem Makefile, wenn Du in den Zeilen 2, 5, 8 und 11 am Anfang Leerzeichen statt Tabs nutzt.

    Dass "make" nicht inzwischen dahingehend verbessert wurde dass das egal ist, ist mir ein Rätsel.



  • Z schrieb:

    Gregor schrieb:

    Der Fehler kommt in Deinem Makefile, wenn Du in den Zeilen 2, 5, 8 und 11 am Anfang Leerzeichen statt Tabs nutzt.

    Dass "make" nicht inzwischen dahingehend verbessert wurde dass das egal ist, ist mir ein Rätsel.

    Mir auch. Ich bin auch letzt in diese Falle reingelaufen und habe dadurch bestimmt ne halbe Stunde verloren. Vielleicht sollte ich häufiger Makefiles schreiben.


  • Mod

    Als Anregung zum Studium das aktuelle "makefile" von PrettyOS:

    # Define OS-dependant Tools
    NASM= nasm
    ifeq ($(OS),WINDOWS)
    	RM= - del /s
    	MV= cmd /c move /Y
    	CC= i586-elf-gcc
    	LD= i586-elf-ld
    	FLOPPYIMAGE= tools/CreateFloppyImage2
    else
    	RM= rm -f
    	MV= mv
    	ifeq ($(OS),MACOSX)
    		CC= i586-elf-gcc
    		LD= i586-elf-ld
    		FLOPPYIMAGE= tools/osx_CreateFloppyImage2
    	else
    		CC= gcc
    		LD= ld
    		FLOPPYIMAGE= tools/linux_CreateFloppyImage2
    	endif
    endif
    
    ifeq ($(COMPILER),CLANG)
    	CC= clang
    endif
    
    # Folders
    OBJDIR= object_files
    STAGE1DIR= stage1_bootloader
    STAGE2DIR= stage2_bootloader
    KERNELDIR= kernel
    USERDIR= user
    
    ifeq ($(OS),WINDOWS)
    	SHELLDIR= $(USERDIR)\shell
    	USERPROGDIR= $(USERDIR)\other_userprogs
    	USERTOOLS= $(USERDIR)\user_tools
    	STDLIBC= $(USERDIR)\stdlibc
    else
    	SHELLDIR= $(USERDIR)/shell
    	USERPROGDIR= $(USERDIR)/other_userprogs
    	USERTOOLS= $(USERDIR)/user_tools
    	STDLIBC= $(USERDIR)/stdlibc
    endif
    
    # dependancies
    KERNEL_OBJECTS := $(patsubst %.c, %.o, $(wildcard $(KERNELDIR)/*.c $(KERNELDIR)/*/*.c)) $(patsubst %.asm, %.o, $(wildcard $(KERNELDIR)/*.asm))
    
    # Compiler-/Linker-Flags
    NASMFLAGS= -Ox -f elf
    CCFLAGS= -c -std=c99 -march=i486 -Wshadow -m32 -Werror -Wall -O2 -Wno-uninitialized -ffreestanding -nostdinc -fno-strict-aliasing -fno-builtin -fno-stack-protector -fno-omit-frame-pointer -fno-common -Iinclude
    ifeq ($(COMPILER),CLANG)
    	CCFLAGS+= -Wno-invalid-source-encoding -Xclang -triple=i386-pc-unknown
    	ifeq ($(MESSAGEFORMAT), VS)
    		CCFLAGS+= -fdiagnostics-format=msvc
    	endif
    else
    	CCFLAGS+= -fno-pic
    endif
    ifeq ($(CONFIG),RELEASE)
    	CCFLAGS+= -ffunction-sections -fdata-sections
    endif
    LDFLAGS= -nostdlib --warn-common -nmagic -gc-sections -s
    
    # targets to build one asm or c-file to an object file
    vpath %.o $(OBJDIR)
    %.o: %.c
    	$(CC) $< $(CCFLAGS) -I $(KERNELDIR) -o $(OBJDIR)/$@
    %.o: %.asm
    	$(NASM) $< $(NASMFLAGS) -I$(KERNELDIR)/ -o $(OBJDIR)/$@
    
    # targets to build PrettyOS
    .PHONY: clean all shell other_userprogs userlibs
    .SILENT: shell other_userprogs userlibs clean
    .NOTPARALLEL: userlibs
    
    all: FloppyImage.img
    
    $(STAGE1DIR)/boot.bin: $(STAGE1DIR)/boot.asm $(STAGE1DIR)/*.inc
    	$(NASM) -f bin -Ox $(STAGE1DIR)/boot.asm -I$(STAGE1DIR)/ -o $(STAGE1DIR)/boot.bin
    $(STAGE2DIR)/BOOT2.BIN: $(STAGE2DIR)/boot2.asm $(STAGE2DIR)/*.inc
    	$(NASM) -f bin -Ox $(STAGE2DIR)/boot2.asm -I$(STAGE2DIR)/ -o $(STAGE2DIR)/BOOT2.BIN
    
    $(USERDIR)/vm86/VIDSWTCH.COM: $(USERDIR)/vm86/vidswtch.asm
    	$(NASM) $(USERDIR)/vm86/vidswtch.asm -Ox -o $(USERDIR)/vm86/VIDSWTCH.COM
    $(USERDIR)/vm86/APM.COM: $(USERDIR)/vm86/apm.asm
    	$(NASM) $(USERDIR)/vm86/apm.asm -Ox -o $(USERDIR)/vm86/APM.COM
    
    $(OBJDIR)/$(KERNELDIR)/data.o: $(KERNELDIR)/data.asm shell $(USERDIR)/vm86/VIDSWTCH.COM $(USERDIR)/vm86/APM.COM
    	$(NASM) $(KERNELDIR)/data.asm $(NASMFLAGS) -I$(KERNELDIR)/ -o $(OBJDIR)/$(KERNELDIR)/data.o
    
    $(KERNELDIR)/KERNEL.BIN: $(OBJDIR)/$(KERNELDIR)/data.o $(KERNEL_OBJECTS)
    	$(LD) $(LDFLAGS) $(addprefix $(OBJDIR)/,$(KERNEL_OBJECTS)) -T $(KERNELDIR)/kernel.ld -Map documentation/kernel.map -o $(KERNELDIR)/KERNEL.BIN
    
    shell: userlibs
    	$(MAKE) --no-print-directory -C $(SHELLDIR)
    
    other_userprogs: userlibs
    	$(MAKE) --no-print-directory -C $(USERPROGDIR)
    
    userlibs:
    	$(MAKE) --no-print-directory -C $(STDLIBC)
    	$(MAKE) --no-print-directory -C $(USERTOOLS)
    
    FloppyImage.img: other_userprogs $(STAGE1DIR)/boot.bin $(STAGE2DIR)/BOOT2.BIN $(KERNELDIR)/KERNEL.BIN
    	$(FLOPPYIMAGE) PRETTYOS FloppyImage.img $(STAGE1DIR)/boot.bin $(STAGE2DIR)/BOOT2.BIN $(KERNELDIR)/KERNEL.BIN $(wildcard $(USERPROGDIR)/*.ELF)
    
    clean:
    # OS-dependant code because of different interpretation of "/" in Windows and UNIX-Based OS (Linux and Mac OS X)
    ifeq ($(OS),WINDOWS)
    	$(RM) $(STAGE1DIR)\boot.bin
    	$(RM) $(STAGE2DIR)\BOOT2.BIN
    	$(RM) $(KERNELDIR)\KERNEL.BIN
    	$(RM) $(KERNELDIR)\initrd.dat
    	$(RM) $(OBJDIR)\$(KERNELDIR)\*.o
    	$(RM) $(USERDIR)\vm86\*.COM
    	$(RM) documentation\*.map
    else
    	$(RM) $(STAGE1DIR)/boot.bin
    	$(RM) $(STAGE2DIR)/BOOT2.BIN
    	$(RM) $(KERNELDIR)/KERNEL.BIN
    	$(RM) $(KERNELDIR)/initrd.dat
    	find $(OBJDIR)/$(KERNELDIR) -name '*.o' -delete
    	$(RM) $(USERDIR)/vm86/*.COM
    	$(RM) documentation/*.map
    endif
    	$(MAKE) --no-print-directory -C $(SHELLDIR) clean
    	$(MAKE) --no-print-directory -C $(USERPROGDIR) clean
    	$(MAKE) --no-print-directory -C $(STDLIBC) clean
    	$(MAKE) --no-print-directory -C $(USERTOOLS) clean
    


  • Als Anregung zum Studium eine optimierte Version eines Makefiles aus einem Projekt aus dem Internet:

    srcdir = /tmp/php-5.5.7
    builddir = /tmp/php-5.5.7
    top_srcdir = /tmp/php-5.5.7
    top_builddir = /tmp/php-5.5.7
    EGREP = /usr/bin/grep -E
    SED = /usr/bin/sed
    CONFIGURE_COMMAND = './configure' '--enable-embed' '--disable-all' '--disable-cgi'
    CONFIGURE_OPTIONS = '--enable-embed' '--disable-all' '--disable-cgi'
    PHP_MAJOR_VERSION = 5
    PHP_MINOR_VERSION = 5
    PHP_RELEASE_VERSION = 7
    PHP_EXTRA_VERSION =
    AWK = gawk
    YACC = exit 0;
    RE2C = exit 0;
    RE2C_FLAGS =
    SHLIB_SUFFIX_NAME = so
    SHLIB_DL_SUFFIX_NAME = so
    PHP_CLI_OBJS = sapi/cli/php_cli.lo sapi/cli/php_http_parser.lo sapi/cli/php_cli_server.lo sapi/cli/ps_title.lo sapi/cli/php_cli_process_title.lo
    PHP_EXECUTABLE = (top_builddir)/(top\_builddir)/(SAPI_CLI_PATH)
    SAPI_CLI_PATH = sapi/cli/php
    BUILD_CLI = $(LIBTOOL) --mode=link $(CC) -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_CLI_OBJS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $(SAPI_CLI_PATH)
    PHP_PHPDBG_CFLAGS = -D_GNU_SOURCE
    PHP_PHPDBG_FILES = phpdbg.c phpdbg_prompt.c phpdbg_help.c phpdbg_break.c phpdbg_print.c phpdbg_bp.c phpdbg_opcode.c phpdbg_list.c phpdbg_utils.c phpdbg_info.c phpdbg_cmd.c phpdbg_set.c phpdbg_frame.c
    PHP_PHPDBG_OBJS = sapi/phpdbg/phpdbg.lo sapi/phpdbg/phpdbg_prompt.lo sapi/phpdbg/phpdbg_help.lo sapi/phpdbg/phpdbg_break.lo sapi/phpdbg/phpdbg_print.lo sapi/phpdbg/phpdbg_bp.lo sapi/phpdbg/phpdbg_opcode.lo sapi/phpdbg/phpdbg_list.lo sapi/phpdbg/phpdbg_utils.lo sapi/phpdbg/phpdbg_info.lo sapi/phpdbg/phpdbg_cmd.lo sapi/phpdbg/phpdbg_set.lo sapi/phpdbg/phpdbg_frame.lo
    BUILD_BINARY = sapi/phpdbg/phpdbg
    BUILD_SHARED = sapi/phpdbg/libphpdbg.la
    BUILD_PHPDBG = $(LIBTOOL) --mode=link $(CC) -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS) $(EXTRA_LIBS) $(PHPDBG_EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $(BUILD_BINARY)
    BUILD_PHPDBG_SHARED = $(LIBTOOL) --mode=link $(CC) -shared -Wl,-soname,libphpdbg.so -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS) $(EXTRA_LIBS) $(PHPDBG_EXTRA_LIBS) $(ZEND_EXTRA_LIBS) \-DPHPDBG_SHARED -o $(BUILD_SHARED)
    PROG_SENDMAIL =
    PHP_INSTALLED_SAPIS = cli embed phpdbg
    PHP_EXECUTABLE = (top_builddir)/(top\_builddir)/(SAPI_CLI_PATH)
    PHP_SAPI_OBJS = sapi/embed/php_embed.lo main/internal_functions.lo
    PHP_BINARY_OBJS = main/internal_functions_cli.lo
    PHP_GLOBAL_OBJS = ext/date/php_date.lo ext/date/lib/astro.lo ext/date/lib/dow.lo ext/date/lib/parse_date.lo ext/date/lib/parse_tz.lo ext/date/lib/timelib.lo ext/date/lib/tm2unixtime.lo ext/date/lib/unixtime2tm.lo ext/date/lib/parse_iso_intervals.lo ext/date/lib/interval.lo ext/ereg/ereg.lo ext/ereg/regex/regcomp.lo ext/ereg/regex/regexec.lo ext/ereg/regex/regerror.lo ext/ereg/regex/regfree.lo ext/pcre/pcrelib/pcre_chartables.lo ext/pcre/pcrelib/pcre_ucd.lo ext/pcre/pcrelib/pcre_compile.lo ext/pcre/pcrelib/pcre_config.lo ext/pcre/pcrelib/pcre_exec.lo ext/pcre/pcrelib/pcre_fullinfo.lo ext/pcre/pcrelib/pcre_get.lo ext/pcre/pcrelib/pcre_globals.lo ext/pcre/pcrelib/pcre_maketables.lo ext/pcre/pcrelib/pcre_newline.lo ext/pcre/pcrelib/pcre_ord2utf8.lo ext/pcre/pcrelib/pcre_refcount.lo ext/pcre/pcrelib/pcre_study.lo ext/pcre/pcrelib/pcre_tables.lo ext/pcre/pcrelib/pcre_valid_utf8.lo ext/pcre/pcrelib/pcre_version.lo ext/pcre/pcrelib/pcre_xclass.lo ext/pcre/php_pcre.lo ext/reflection/php_reflection.lo ext/spl/php_spl.lo ext/spl/spl_functions.lo ext/spl/spl_engine.lo ext/spl/spl_iterators.lo ext/spl/spl_array.lo ext/spl/spl_directory.lo ext/spl/spl_exceptions.lo ext/spl/spl_observer.lo ext/spl/spl_dllist.lo ext/spl/spl_heap.lo ext/spl/spl_fixedarray.lo ext/standard/crypt_freesec.lo ext/standard/crypt_blowfish.lo ext/standard/crypt_sha512.lo ext/standard/crypt_sha256.lo ext/standard/php_crypt_r.lo ext/standard/array.lo ext/standard/base64.lo ext/standard/basic_functions.lo ext/standard/browscap.lo ext/standard/crc32.lo ext/standard/crypt.lo ext/standard/cyr_convert.lo ext/standard/datetime.lo ext/standard/dir.lo ext/standard/dl.lo ext/standard/dns.lo ext/standard/exec.lo ext/standard/file.lo ext/standard/filestat.lo ext/standard/flock_compat.lo ext/standard/formatted_print.lo ext/standard/fsock.lo ext/standard/head.lo ext/standard/html.lo ext/standard/image.lo ext/standard/info.lo ext/standard/iptc.lo ext/standard/lcg.lo ext/standard/link.lo ext/standard/mail.lo ext/standard/math.lo ext/standard/md5.lo ext/standard/metaphone.lo ext/standard/microtime.lo ext/standard/pack.lo ext/standard/pageinfo.lo ext/standard/quot_print.lo ext/standard/rand.lo ext/standard/soundex.lo ext/standard/string.lo ext/standard/scanf.lo ext/standard/syslog.lo ext/standard/type.lo ext/standard/uniqid.lo ext/standard/url.lo ext/standard/var.lo ext/standard/versioning.lo ext/standard/assert.lo ext/standard/strnatcmp.lo ext/standard/levenshtein.lo ext/standard/incomplete_class.lo ext/standard/url_scanner_ex.lo ext/standard/ftp_fopen_wrapper.lo ext/standard/http_fopen_wrapper.lo ext/standard/php_fopen_wrapper.lo ext/standard/credits.lo ext/standard/css.lo ext/standard/var_unserializer.lo ext/standard/ftok.lo ext/standard/sha1.lo ext/standard/user_filters.lo ext/standard/uuencode.lo ext/standard/filters.lo ext/standard/proc_open.lo ext/standard/streamsfuncs.lo ext/standard/http.lo ext/standard/password.lo TSRM/TSRM.lo TSRM/tsrm_strtok_r.lo TSRM/tsrm_virtual_cwd.lo main/main.lo main/snprintf.lo main/spprintf.lo main/php_sprintf.lo main/fopen_wrappers.lo main/alloca.lo main/php_scandir.lo main/php_ini.lo main/SAPI.lo main/rfc1867.lo main/php_content_types.lo main/strlcpy.lo main/strlcat.lo main/mergesort.lo main/reentrancy.lo main/php_variables.lo main/php_ticks.lo main/network.lo main/php_open_temporary_file.lo main/output.lo main/getopt.lo main/streams/streams.lo main/streams/cast.lo main/streams/memory.lo main/streams/filter.lo main/streams/plain_wrapper.lo main/streams/userspace.lo main/streams/transports.lo main/streams/xp_socket.lo main/streams/mmap.lo main/streams/glob_wrapper.lo Zend/zend_language_parser.lo Zend/zend_language_scanner.lo Zend/zend_ini_parser.lo Zend/zend_ini_scanner.lo Zend/zend_alloc.lo Zend/zend_compile.lo Zend/zend_constants.lo Zend/zend_dynamic_array.lo Zend/zend_dtrace.lo Zend/zend_execute_API.lo Zend/zend_highlight.lo Zend/zend_llist.lo Zend/zend_opcode.lo Zend/zend_operators.lo Zend/zend_ptr_stack.lo Zend/zend_stack.lo Zend/zend_variables.lo Zend/zend.lo Zend/zend_API.lo Zend/zend_extensions.lo Zend/zend_hash.lo Zend/zend_list.lo Zend/zend_indent.lo Zend/zend_builtin_functions.lo Zend/zend_sprintf.lo Zend/zend_ini.lo Zend/zend_qsort.lo Zend/zend_multibyte.lo Zend/zend_ts_hash.lo Zend/zend_stream.lo Zend/zend_iterators.lo Zend/zend_interfaces.lo Zend/zend_exceptions.lo Zend/zend_strtod.lo Zend/zend_gc.lo Zend/zend_closures.lo Zend/zend_float.lo Zend/zend_string.lo Zend/zend_signal.lo Zend/zend_generators.lo Zend/zend_objects.lo Zend/zend_object_handlers.lo Zend/zend_objects_API.lo Zend/zend_default_classes.lo Zend/zend_execute.lo
    PHP_BINARIES = cli phpdbg
    PHP_MODULES =
    PHP_ZEND_EX =
    EXT_LIBS =
    abs_builddir = /tmp/php-5.5.7
    abs_srcdir = /tmp/php-5.5.7
    php_abs_top_builddir = /tmp/php-5.5.7
    php_abs_top_srcdir = /tmp/php-5.5.7
    bindir = ${exec_prefix}/bin
    sbindir = ${exec_prefix}/sbin
    exec_prefix = ${prefix}
    program_prefix =
    program_suffix =
    includedir = ${prefix}/include
    libdir = ${exec_prefix}/lib/php
    mandir = ${datarootdir}/man
    phplibdir = /tmp/php-5.5.7/modules
    phptempdir = /tmp/php-5.5.7/libs
    prefix = /usr/local
    localstatedir = ${prefix}/var
    datadir = ${datarootdir}
    datarootdir = /usr/local/php
    sysconfdir = ${prefix}/etc
    EXEEXT =
    CC = cc
    CFLAGS = (CFLAGSCLEAN)CFLAGSCLEAN=gO2fvisibility=hiddenCPP=ccECPPFLAGS=CXX=CXXFLAGS=CXXFLAGSCLEAN=DEBUGCFLAGS=EXTENSIONDIR=/usr/local/lib/php/extensions/nodebugnonzts20121212EXTRALDFLAGS=avoidversionmoduleEXTRA_LDFLAGS_PROGRAM=EXTRALIBS=lcryptlresolvlcryptlrtlmldllnsllcryptlcryptZEND_EXTRA_LIBS=INCLUDES=I/tmp/php5.5.7/ext/date/libI/tmp/php5.5.7/ext/ereg/regexI(CFLAGS_CLEAN) CFLAGS_CLEAN = -g -O2 -fvisibility=hidden CPP = cc -E CPPFLAGS = CXX = CXXFLAGS = CXXFLAGS_CLEAN = DEBUG_CFLAGS = EXTENSION_DIR = /usr/local/lib/php/extensions/no-debug-non-zts-20121212 EXTRA_LDFLAGS = -avoid-version -module EXTRA\_LDFLAGS\_PROGRAM = EXTRA_LIBS = -lcrypt -lresolv -lcrypt -lrt -lm -ldl -lnsl -lcrypt -lcrypt ZEND\_EXTRA\_LIBS = INCLUDES = -I/tmp/php-5.5.7/ext/date/lib -I/tmp/php-5.5.7/ext/ereg/regex -I(top_builddir)/TSRM -I$(top_builddir)/Zend
    EXTRA_INCLUDES =
    INCLUDE_PATH = .:
    INSTALL_IT = $(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(prefix)/lib; $(INSTALL) -m 0755 libs/libphp5.so (INSTALLROOT)(INSTALL_ROOT)(prefix)/lib
    LFLAGS =
    LIBTOOL = $(SHELL) $(top_builddir)/libtool --silent --preserve-dup-deps
    LN_S = ln -s
    NATIVE_RPATHS =
    PEAR_INSTALLDIR =
    PHP_BUILD_DATE = 2014-02-20
    PHP_LDFLAGS =
    PHP_LIBS =
    OVERALL_TARGET = libphp5.la
    PHP_RPATHS =
    PHP_SAPI = embed
    PHP_VERSION = 5.5.7
    PHP_VERSION_ID = 50507
    SHELL = /bin/sh
    SHARED_LIBTOOL = $(LIBTOOL)
    WARNING_LEVEL =
    PHP_FRAMEWORKS =
    PHP_FRAMEWORKPATH =
    INSTALL_HEADERS = sapi/cli/cli.h sapi/embed/php_embed.h ext/date/php_date.h ext/date/lib/timelib.h ext/date/lib/timelib_structs.h ext/date/lib/timelib_config.h ext/ereg/php_ereg.h ext/ereg/php_regex.h ext/ereg/regex/ ext/pcre/php_pcre.h ext/pcre/pcrelib/ ext/spl/php_spl.h ext/spl/spl_array.h ext/spl/spl_directory.h ext/spl/spl_engine.h ext/spl/spl_exceptions.h ext/spl/spl_functions.h ext/spl/spl_iterators.h ext/spl/spl_observer.h ext/spl/spl_dllist.h ext/spl/spl_heap.h ext/spl/spl_fixedarray.h ext/standard/ Zend/ TSRM/ include/ main/ main/streams/
    ZEND_EXT_TYPE = zend_extension
    all_targets = $(OVERALL_TARGET) $(PHP_MODULES) $(PHP_ZEND_EX) $(PHP_BINARIES)
    install_targets = install-sapi install-binaries install-build install-headers install-programs
    install_binary_targets = install-cli install-phpdbg
    mkinstalldirs = $(top_srcdir)/build/shtool mkdir -p
    INSTALL = $(top_srcdir)/build/shtool install -c
    INSTALL_DATA = $(INSTALL) -m 644

    DEFS = -DPHP_ATOM_INC -I(top_builddir)/includeI(top\_builddir)/include -I(top_builddir)/main -I$(top_srcdir)
    COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) $(PHP_FRAMEWORKPATH)

    all: $(all_targets)
    @echo
    @echo "Build complete."
    @echo "Don't forget to run 'make test'."
    @echo

    build-modules: $(PHP_MODULES) $(PHP_ZEND_EX)

    build-binaries: $(PHP_BINARIES)

    libphp$(PHP_MAJOR_VERSION).la: $(PHP_GLOBAL_OBJS) (PHP_SAPI_OBJS)(PHP\_SAPI\_OBJS) (LIBTOOL) --mode=link $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o @@@ -@(LIBTOOL) --silent --mode=install cp $@ (phptempdir)/(phptempdir)/@ >/dev/null 2>&1

    libs/libphp$(PHP_MAJOR_VERSION).bundle: $(PHP_GLOBAL_OBJS) (PHP_SAPI_OBJS)(PHP\_SAPI\_OBJS) (CC) $(MH_BUNDLE_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(PHP_GLOBAL_OBJS:.lo=.o) $(PHP_SAPI_OBJS:.lo=.o) $(PHP_FRAMEWORKS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $@ && cp @libs/libphp@ libs/libphp(PHP_MAJOR_VERSION).so

    install: $(all_targets) $(install_targets)

    install-sapi: $(OVERALL_TARGET)
    @echo "Installing PHP SAPI module: (PHPSAPI)"@(PHP_SAPI)" -@(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    -@if test ! -r (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).$(SHLIB_DL_SUFFIX_NAME); then \
    for i in 0.0.0 0.0 0; do \
    if test -r (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIXNAME).(SHLIB\_DL\_SUFFIX_NAME).i;then i; then \ (LN_S) (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIX_NAME).(SHLIB\_DL\_SUFFIX\_NAME).$i (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIXNAME); break; fi; done; fi@(SHLIB\_DL\_SUFFIX_NAME); \ break; \ fi; \ done; \ fi @(INSTALL_IT)

    install-binaries: build-binaries $(install_binary_targets)

    install-modules: build-modules
    @test -d modules && \
    $(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)
    @echo "Installing shared extensions: (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)/"
    @rm -f modules/.la >/dev/null 2>&1
    @$(INSTALL) modules/
    (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)

    install-headers:
    -@if test "$(INSTALL_HEADERS)"; then \
    for i in `echo (INSTALL_HEADERS)\`; do \ i=`(top_srcdir)/build/shtool path -d $$i; \ paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \ done; \ $(mkinstalldirs) $$paths && \ echo "Installing header files: $(INSTALL_ROOT)$(phpincludedir)/" && \ for i in \echo (INSTALL_HEADERS)\`; do \ if test "(PHP_PECL_EXTENSION)"; then \
    src=`echo $$i | (SED) -e "s#ext/(PHP_PECL_EXTENSION)/##g"`; \
    else \
    src=$$i; \
    fi; \
    if test -f "(topsrcdir)/(top_srcdir)/src";then src"; then \ (INSTALL_DATA) (top_srcdir)/(top\_srcdir)/$src (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    elif test -f "(topbuilddir)/(top_builddir)/src";then src"; then \ (INSTALL_DATA) (top_builddir)/(top\_builddir)/$src (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    else \
    (cd (top_srcdir)/(top\_srcdir)/$src && $(INSTALL_DATA) *.h (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    cd (top_builddir)/(top\_builddir)/$src && $(INSTALL_DATA) *.h (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i) 2>/dev/null || true; \
    fi \
    done; \
    fi

    PHP_TEST_SETTINGS = -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1'
    PHP_TEST_SHARED_EXTENSIONS = \ if test "x$(PHP_MODULES)" != "x"; then \ for i in $(PHP_MODULES)""; do \ . $$i; $(top_srcdir)/build/shtool echo -n -- " -d extension=$$dlname"; \ done; \ fi; \ if test "x$(PHP\_ZEND\_EX)" != "x"; then \ for i in $(PHP\_ZEND\_EX)""; do \ . $$i; $(top\_srcdir)/build/shtool echo -n -- " -d $(ZEND\_EXT\_TYPE)=$(top\_builddir)/modules/$$dlname"; \ done; \ fi
    PHP_DEPRECATED_DIRECTIVES_REGEX = '^(magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*='

    test: all
    @if test ! -z "(PHP\_EXECUTABLE)" && test -x "(PHP_EXECUTABLE)"; then \
    INI_FILE=$(PHP\_EXECUTABLE) -d 'display\_errors=stderr' -r 'echo php\_ini\_loaded\_file();' 2> /dev/null; \
    if test "$$INI_FILE"; then \
    $(EGREP) -h -v (PHP_DEPRECATED_DIRECTIVES_REGEX)"(PHP\_DEPRECATED\_DIRECTIVES\_REGEX) "$INI_FILE" > $(top_builddir)/tmp-php.ini; \
    else \
    echo > (topbuilddir)/tmpphp.ini; fi; INI_SCANNED_PATH=(top_builddir)/tmp-php.ini; \ fi; \ INI\_SCANNED\_PATH=`(PHP_EXECUTABLE) -d 'display_errors=stderr' -r '$$a = explode(",\n", trim(php_ini_scanned_files())); echo $$a[0];' 2> /dev/null; \ if test "$$INI\_SCANNED\_PATH"; then \ INI\_SCANNED\_PATH=$(top_srcdir)/build/shtool path -d $$INI_SCANNED_PATH`; \
    $(EGREP) -h -v (PHP_DEPRECATED_DIRECTIVES_REGEX)"(PHP\_DEPRECATED\_DIRECTIVES\_REGEX) "$INI_SCANNED_PATH"/*.ini >> (top_builddir)/tmpphp.ini; fi; TEST_PHP_EXECUTABLE=(top\_builddir)/tmp-php.ini; \ fi; \ TEST\_PHP\_EXECUTABLE=(PHP_EXECUTABLE) \
    TEST_PHP_SRCDIR=(topsrcdir) CC="(top_srcdir) \ CC="(CC)" \
    $(PHP_EXECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -c (top_builddir)/tmpphp.inidextension_dir=(top\_builddir)/tmp-php.ini -d extension\_dir=(top_builddir)/modules/ $(PHP_TEST_SHARED_EXTENSIONS) (TESTS); TEST_RESULT_EXITCODE=(TESTS); \ TEST\_RESULT\_EXIT_CODE=$?; \
    rm $(top_builddir)/tmp-php.ini; \
    exit $$TEST_RESULT_EXIT_CODE; \
    else \
    echo "ERROR: Cannot run tests without CLI sapi."; \
    fi

    clean:
    find . -name \.gcno -o -name \.gcda | xargs rm -f
    find . -name \.lo -o -name \.o | xargs rm -f
    find . -name \.la -o -name \.a | xargs rm -f
    find . -name \.so | xargs rm -f
    find . -name .libs -a -type d|xargs rm -rf
    rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/
    libs/*

    distclean: clean
    rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h sapi/apache/libphp(PHP_MAJOR_VERSION).modulesapi/apache_hooks/libphp(PHP\_MAJOR\_VERSION).module sapi/apache\_hooks/libphp(PHP_MAJOR_VERSION).module buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h
    rm -f php5.spec main/build-defs.h scripts/phpize
    rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/mysqlnd/php_mysqlnd_config.h
    rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 ext/phar/phar.1 ext/phar/phar.phar.1
    rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
    rm -f ext/iconv/php_have_bsd_iconv.h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/iconv/php_have_libiconv.h ext/iconv/php_iconv_aliased_libiconv.h ext/iconv/php_iconv_supports_errno.h ext/iconv/php_php_iconv_h_path.h ext/iconv/php_php_iconv_impl.h
    rm -f ext/phar/phar.phar ext/phar/phar.php
    if test "(srcdir)"!="(srcdir)" != "(builddir)"; then \
    rm -f ext/phar/phar/phar.inc; \
    fi
    $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f

    .PHONY: all clean install distclean test
    .NOEXPORT:
    cli: $(SAPI_CLI_PATH)

    $(SAPI_CLI_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_CLI_OBJS)(PHP\_CLI\_OBJS) (BUILD_CLI)

    install-cli: $(SAPI_CLI_PATH)
    @echo "Installing PHP CLI binary: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @$(INSTALL) -m 0755 $(SAPI_CLI_PATH) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)php(program\_prefix)php(program_suffix)$(EXEEXT)
    @echo "Installing PHP CLI man page: (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1
    @$(INSTALL_DATA) sapi/cli/php.1 (INSTALL_ROOT)(INSTALL\_ROOT)(mandir)/man1/(program_prefix)php(program\_prefix)php(program_suffix).1

    phpdbg: $(BUILD_BINARY)

    phpdbg-shared: $(BUILD_SHARED)

    $(BUILD_SHARED): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_PHPDBGOBJS)(PHP\_PHPDBG_OBJS) (BUILD_PHPDBG_SHARED)

    $(BUILD_BINARY): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_PHPDBGOBJS)(PHP\_PHPDBG_OBJS) (BUILD_PHPDBG)

    install-phpdbg: $(BUILD_BINARY)
    @echo "Installing phpdbg binary: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(localstatedir)/log
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(localstatedir)/run
    @$(INSTALL) -m 0755 $(BUILD_BINARY) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)phpdbg(program\_prefix)phpdbg(program_suffix)$(EXEEXT)

    clean-phpdbg:
    @echo "Cleaning phpdbg object files ..."
    find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f

    test-phpdbg:
    @echo "Running phpdbg tests ..."
    @$(top_builddir)/sapi/cli/php sapi/phpdbg/tests/run-tests.php --phpdbg sapi/phpdbg/phpdbg

    .PHONY: clean-phpdbg test-phpdbg

    /tmp/php-5.5.7/ext/standard/var_unserializer.c: /tmp/php-5.5.7/ext/standard/var_unserializer.re
    @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re)

    /tmp/php-5.5.7/ext/standard/url_scanner_ex.c: /tmp/php-5.5.7/ext/standard/url_scanner_ex.re
    @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re)

    ext/standard/info.lo: ext/standard/../../main/build-defs.h

    ext/standard/basic_functions.lo: $(top_srcdir)/Zend/zend_language_parser.h

    # Build environment install

    phpincludedir = $(includedir)/php
    phpbuilddir = $(libdir)/build

    BUILD_FILES = \
    scripts/phpize.m4 \
    build/mkdep.awk \
    build/scan_makefile_in.awk \
    build/libtool.m4 \
    Makefile.global \
    acinclude.m4 \
    ltmain.sh \
    run-tests.php

    BUILD_FILES_EXEC = \
    build/shtool \
    config.guess \
    config.sub

    bin_SCRIPTS = phpize php-config
    man_PAGES = phpize php-config

    install-build:
    @echo "Installing build environment: (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir)/"
    @$(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(phpbuilddir) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir) && \
    (cd (top_srcdir) && \ (INSTALL) $(BUILD_FILES_EXEC) (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir) && \
    $(INSTALL_DATA) $(BUILD_FILES) (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir))

    install-programs: scripts/phpize scripts/php-config
    @echo "Installing helper programs: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @for prog in $(bin_SCRIPTS); do \
    echo " program: (program_prefix)(program\_prefix)prog{prog}(program_suffix)"; \
    (INSTALL)m755scripts/(INSTALL) -m 755 scripts/${prog} (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)(program\_prefix)prog{prog}(program_suffix); \
    done
    @echo "Installing man pages: (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1
    @for page in $(man_PAGES); do \
    echo " page: (program_prefix)(program\_prefix)page{page}(program_suffix).1"; \
    (INSTALL_DATA)scripts/man1/(INSTALL\_DATA) scripts/man1/${page}.1 (INSTALL_ROOT)(INSTALL\_ROOT)(mandir)/man1/(program_prefix)(program\_prefix)page{page}(program_suffix).1; \
    done

    scripts/phpize: /tmp/php-5.5.7/scripts/phpize.in (topbuilddir)/config.status(CONFIG_FILES=(top_builddir)/config.status (CONFIG\_FILES=@ CONFIG_HEADERS= $(top_builddir)/config.status)

    scripts/php-config: /tmp/php-5.5.7/scripts/php-config.in (topbuilddir)/config.status(CONFIG_FILES=(top_builddir)/config.status (CONFIG\_FILES=@ CONFIG_HEADERS= $(top_builddir)/config.status)

    # Zend

    Zend/zend_language_scanner.lo: /tmp/php-5.5.7/Zend/zend_language_parser.h
    Zend/zend_ini_scanner.lo: /tmp/php-5.5.7/Zend/zend_ini_parser.h

    /tmp/php-5.5.7/Zend/zend_language_scanner.c: /tmp/php-5.5.7/Zend/zend_language_scanner.l
    @(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date --case-inverted -cbdFt Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c Zend/zend_language_scanner.l)

    /tmp/php-5.5.7/Zend/zend_language_parser.h: /tmp/php-5.5.7/Zend/zend_language_parser.c
    /tmp/php-5.5.7/Zend/zend_language_parser.c: /tmp/php-5.5.7/Zend/zend_language_parser.y
    @$(YACC) -p zend -v -d /tmp/php-5.5.7/Zend/zend_language_parser.y -o $@

    /tmp/php-5.5.7/Zend/zend_ini_parser.h: /tmp/php-5.5.7/Zend/zend_ini_parser.c
    /tmp/php-5.5.7/Zend/zend_ini_parser.c: /tmp/php-5.5.7/Zend/zend_ini_parser.y
    @$(YACC) -p ini_ -v -d /tmp/php-5.5.7/Zend/zend_ini_parser.y -o $@

    /tmp/php-5.5.7/Zend/zend_ini_scanner.c: /tmp/php-5.5.7/Zend/zend_ini_scanner.l
    @(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date --case-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c Zend/zend_ini_scanner.l)

    Zend/zend_indent.lo Zend/zend_highlight.lo Zend/zend_compile.lo: /tmp/php-5.5.7/Zend/zend_language_parser.h
    Zend/zend_execute.lo: /tmp/php-5.5.7/Zend/zend_vm_execute.h /tmp/php-5.5.7/Zend/zend_vm_opcodes.h
    sapi/cli/php_cli.lo: /tmp/php-5.5.7/sapi/cli/php_cli.c
    $(LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli.cosapi/cli/phpcli.losapi/cli/php_http_parser.lo:/tmp/php5.5.7/sapi/cli/php_http_parser.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli.c -o sapi/cli/php_cli.lo sapi/cli/php\_http\_parser.lo: /tmp/php-5.5.7/sapi/cli/php\_http\_parser.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_http_parser.cosapi/cli/php_httpparser.losapi/cli/php_cli_server.lo:/tmp/php5.5.7/sapi/cli/php_cli_server.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_http\_parser.c -o sapi/cli/php\_http_parser.lo sapi/cli/php\_cli\_server.lo: /tmp/php-5.5.7/sapi/cli/php\_cli\_server.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli_server.cosapi/cli/php_cliserver.losapi/cli/ps_title.lo:/tmp/php5.5.7/sapi/cli/ps_title.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli\_server.c -o sapi/cli/php\_cli_server.lo sapi/cli/ps\_title.lo: /tmp/php-5.5.7/sapi/cli/ps\_title.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/ps_title.cosapi/cli/pstitle.losapi/cli/php_cli_process_title.lo:/tmp/php5.5.7/sapi/cli/php_cli_process_title.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/ps\_title.c -o sapi/cli/ps_title.lo sapi/cli/php\_cli\_process\_title.lo: /tmp/php-5.5.7/sapi/cli/php\_cli\_process\_title.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli_process_title.cosapi/cli/php_cli_processtitle.losapi/embed/php_embed.lo:/tmp/php5.5.7/sapi/embed/php_embed.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli\_process\_title.c -o sapi/cli/php\_cli\_process_title.lo sapi/embed/php\_embed.lo: /tmp/php-5.5.7/sapi/embed/php\_embed.c (LIBTOOL) --mode=compile $(CC) -Isapi/embed/ -I/tmp/php-5.5.7/sapi/embed/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/embed/php_embed.cosapi/embed/phpembed.losapi/phpdbg/phpdbg.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/embed/php\_embed.c -o sapi/embed/php_embed.lo sapi/phpdbg/phpdbg.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg.cosapi/phpdbg/phpdbg.losapi/phpdbg/phpdbg_prompt.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_prompt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg.c -o sapi/phpdbg/phpdbg.lo sapi/phpdbg/phpdbg\_prompt.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_prompt.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_prompt.cosapi/phpdbg/phpdbgprompt.losapi/phpdbg/phpdbg_help.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_help.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_prompt.c -o sapi/phpdbg/phpdbg_prompt.lo sapi/phpdbg/phpdbg\_help.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_help.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_help.cosapi/phpdbg/phpdbghelp.losapi/phpdbg/phpdbg_break.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_break.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_help.c -o sapi/phpdbg/phpdbg_help.lo sapi/phpdbg/phpdbg\_break.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_break.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_break.cosapi/phpdbg/phpdbgbreak.losapi/phpdbg/phpdbg_print.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_print.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_break.c -o sapi/phpdbg/phpdbg_break.lo sapi/phpdbg/phpdbg\_print.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_print.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_print.cosapi/phpdbg/phpdbgprint.losapi/phpdbg/phpdbg_bp.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_bp.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_print.c -o sapi/phpdbg/phpdbg_print.lo sapi/phpdbg/phpdbg\_bp.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_bp.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_bp.cosapi/phpdbg/phpdbgbp.losapi/phpdbg/phpdbg_opcode.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_opcode.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_bp.c -o sapi/phpdbg/phpdbg_bp.lo sapi/phpdbg/phpdbg\_opcode.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_opcode.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_opcode.cosapi/phpdbg/phpdbgopcode.losapi/phpdbg/phpdbg_list.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_list.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_opcode.c -o sapi/phpdbg/phpdbg_opcode.lo sapi/phpdbg/phpdbg\_list.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_list.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_list.cosapi/phpdbg/phpdbglist.losapi/phpdbg/phpdbg_utils.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_utils.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_list.c -o sapi/phpdbg/phpdbg_list.lo sapi/phpdbg/phpdbg\_utils.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_utils.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_utils.cosapi/phpdbg/phpdbgutils.losapi/phpdbg/phpdbg_info.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_info.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_utils.c -o sapi/phpdbg/phpdbg_utils.lo sapi/phpdbg/phpdbg\_info.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_info.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_info.cosapi/phpdbg/phpdbginfo.losapi/phpdbg/phpdbg_cmd.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_cmd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_info.c -o sapi/phpdbg/phpdbg_info.lo sapi/phpdbg/phpdbg\_cmd.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_cmd.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_cmd.cosapi/phpdbg/phpdbgcmd.losapi/phpdbg/phpdbg_set.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_set.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_cmd.c -o sapi/phpdbg/phpdbg_cmd.lo sapi/phpdbg/phpdbg\_set.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_set.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_set.cosapi/phpdbg/phpdbgset.losapi/phpdbg/phpdbg_frame.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_frame.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_set.c -o sapi/phpdbg/phpdbg_set.lo sapi/phpdbg/phpdbg\_frame.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_frame.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_frame.cosapi/phpdbg/phpdbgframe.loext/date/php_date.lo:/tmp/php5.5.7/ext/date/php_date.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_frame.c -o sapi/phpdbg/phpdbg_frame.lo ext/date/php\_date.lo: /tmp/php-5.5.7/ext/date/php\_date.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/php_date.coext/date/phpdate.loext/date/lib/astro.lo:/tmp/php5.5.7/ext/date/lib/astro.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/php\_date.c -o ext/date/php_date.lo ext/date/lib/astro.lo: /tmp/php-5.5.7/ext/date/lib/astro.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/astro.coext/date/lib/astro.loext/date/lib/dow.lo:/tmp/php5.5.7/ext/date/lib/dow.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/astro.c -o ext/date/lib/astro.lo ext/date/lib/dow.lo: /tmp/php-5.5.7/ext/date/lib/dow.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/dow.coext/date/lib/dow.loext/date/lib/parse_date.lo:/tmp/php5.5.7/ext/date/lib/parse_date.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/dow.c -o ext/date/lib/dow.lo ext/date/lib/parse\_date.lo: /tmp/php-5.5.7/ext/date/lib/parse\_date.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_date.coext/date/lib/parsedate.loext/date/lib/parse_tz.lo:/tmp/php5.5.7/ext/date/lib/parse_tz.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_date.c -o ext/date/lib/parse_date.lo ext/date/lib/parse\_tz.lo: /tmp/php-5.5.7/ext/date/lib/parse\_tz.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_tz.coext/date/lib/parsetz.loext/date/lib/timelib.lo:/tmp/php5.5.7/ext/date/lib/timelib.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_tz.c -o ext/date/lib/parse_tz.lo ext/date/lib/timelib.lo: /tmp/php-5.5.7/ext/date/lib/timelib.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/timelib.coext/date/lib/timelib.loext/date/lib/tm2unixtime.lo:/tmp/php5.5.7/ext/date/lib/tm2unixtime.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/timelib.c -o ext/date/lib/timelib.lo ext/date/lib/tm2unixtime.lo: /tmp/php-5.5.7/ext/date/lib/tm2unixtime.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/tm2unixtime.coext/date/lib/tm2unixtime.loext/date/lib/unixtime2tm.lo:/tmp/php5.5.7/ext/date/lib/unixtime2tm.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/tm2unixtime.c -o ext/date/lib/tm2unixtime.lo ext/date/lib/unixtime2tm.lo: /tmp/php-5.5.7/ext/date/lib/unixtime2tm.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/unixtime2tm.coext/date/lib/unixtime2tm.loext/date/lib/parse_iso_intervals.lo:/tmp/php5.5.7/ext/date/lib/parse_iso_intervals.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/unixtime2tm.c -o ext/date/lib/unixtime2tm.lo ext/date/lib/parse\_iso\_intervals.lo: /tmp/php-5.5.7/ext/date/lib/parse\_iso\_intervals.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_iso_intervals.coext/date/lib/parse_isointervals.loext/date/lib/interval.lo:/tmp/php5.5.7/ext/date/lib/interval.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_iso\_intervals.c -o ext/date/lib/parse\_iso_intervals.lo ext/date/lib/interval.lo: /tmp/php-5.5.7/ext/date/lib/interval.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/interval.coext/date/lib/interval.loext/ereg/ereg.lo:/tmp/php5.5.7/ext/ereg/ereg.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/interval.c -o ext/date/lib/interval.lo ext/ereg/ereg.lo: /tmp/php-5.5.7/ext/ereg/ereg.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/ereg.coext/ereg/ereg.loext/ereg/regex/regcomp.lo:/tmp/php5.5.7/ext/ereg/regex/regcomp.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/ereg.c -o ext/ereg/ereg.lo ext/ereg/regex/regcomp.lo: /tmp/php-5.5.7/ext/ereg/regex/regcomp.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regcomp.coext/ereg/regex/regcomp.loext/ereg/regex/regexec.lo:/tmp/php5.5.7/ext/ereg/regex/regexec.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regcomp.c -o ext/ereg/regex/regcomp.lo ext/ereg/regex/regexec.lo: /tmp/php-5.5.7/ext/ereg/regex/regexec.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regexec.coext/ereg/regex/regexec.loext/ereg/regex/regerror.lo:/tmp/php5.5.7/ext/ereg/regex/regerror.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regexec.c -o ext/ereg/regex/regexec.lo ext/ereg/regex/regerror.lo: /tmp/php-5.5.7/ext/ereg/regex/regerror.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regerror.coext/ereg/regex/regerror.loext/ereg/regex/regfree.lo:/tmp/php5.5.7/ext/ereg/regex/regfree.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regerror.c -o ext/ereg/regex/regerror.lo ext/ereg/regex/regfree.lo: /tmp/php-5.5.7/ext/ereg/regex/regfree.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regfree.coext/ereg/regex/regfree.loext/pcre/pcrelib/pcre_chartables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_chartables.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regfree.c -o ext/ereg/regex/regfree.lo ext/pcre/pcrelib/pcre\_chartables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_chartables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_chartables.coext/pcre/pcrelib/pcrechartables.loext/pcre/pcrelib/pcre_ucd.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ucd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_chartables.c -o ext/pcre/pcrelib/pcre_chartables.lo ext/pcre/pcrelib/pcre\_ucd.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ucd.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ucd.coext/pcre/pcrelib/pcreucd.loext/pcre/pcrelib/pcre_compile.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_compile.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ucd.c -o ext/pcre/pcrelib/pcre_ucd.lo ext/pcre/pcrelib/pcre\_compile.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_compile.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_compile.coext/pcre/pcrelib/pcrecompile.loext/pcre/pcrelib/pcre_config.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_config.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_compile.c -o ext/pcre/pcrelib/pcre_compile.lo ext/pcre/pcrelib/pcre\_config.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_config.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_config.coext/pcre/pcrelib/pcreconfig.loext/pcre/pcrelib/pcre_exec.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_exec.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_config.c -o ext/pcre/pcrelib/pcre_config.lo ext/pcre/pcrelib/pcre\_exec.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_exec.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_exec.coext/pcre/pcrelib/pcreexec.loext/pcre/pcrelib/pcre_fullinfo.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_fullinfo.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_exec.c -o ext/pcre/pcrelib/pcre_exec.lo ext/pcre/pcrelib/pcre\_fullinfo.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_fullinfo.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_fullinfo.coext/pcre/pcrelib/pcrefullinfo.loext/pcre/pcrelib/pcre_get.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_get.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_fullinfo.c -o ext/pcre/pcrelib/pcre_fullinfo.lo ext/pcre/pcrelib/pcre\_get.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_get.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_get.coext/pcre/pcrelib/pcreget.loext/pcre/pcrelib/pcre_globals.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_globals.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_get.c -o ext/pcre/pcrelib/pcre_get.lo ext/pcre/pcrelib/pcre\_globals.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_globals.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_globals.coext/pcre/pcrelib/pcreglobals.loext/pcre/pcrelib/pcre_maketables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_maketables.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_globals.c -o ext/pcre/pcrelib/pcre_globals.lo ext/pcre/pcrelib/pcre\_maketables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_maketables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_maketables.coext/pcre/pcrelib/pcremaketables.loext/pcre/pcrelib/pcre_newline.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_newline.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_maketables.c -o ext/pcre/pcrelib/pcre_maketables.lo ext/pcre/pcrelib/pcre\_newline.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_newline.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_newline.coext/pcre/pcrelib/pcrenewline.loext/pcre/pcrelib/pcre_ord2utf8.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ord2utf8.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_newline.c -o ext/pcre/pcrelib/pcre_newline.lo ext/pcre/pcrelib/pcre\_ord2utf8.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ord2utf8.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ord2utf8.coext/pcre/pcrelib/pcreord2utf8.loext/pcre/pcrelib/pcre_refcount.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_refcount.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ord2utf8.c -o ext/pcre/pcrelib/pcre_ord2utf8.lo ext/pcre/pcrelib/pcre\_refcount.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_refcount.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_refcount.coext/pcre/pcrelib/pcrerefcount.loext/pcre/pcrelib/pcre_study.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_study.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_refcount.c -o ext/pcre/pcrelib/pcre_refcount.lo ext/pcre/pcrelib/pcre\_study.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_study.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_study.coext/pcre/pcrelib/pcrestudy.loext/pcre/pcrelib/pcre_tables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_tables.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_study.c -o ext/pcre/pcrelib/pcre_study.lo ext/pcre/pcrelib/pcre\_tables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_tables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_tables.coext/pcre/pcrelib/pcretables.loext/pcre/pcrelib/pcre_valid_utf8.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_valid_utf8.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_tables.c -o ext/pcre/pcrelib/pcre_tables.lo ext/pcre/pcrelib/pcre\_valid\_utf8.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_valid\_utf8.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_valid_utf8.coext/pcre/pcrelib/pcre_validutf8.loext/pcre/pcrelib/pcre_version.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_version.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_valid\_utf8.c -o ext/pcre/pcrelib/pcre\_valid_utf8.lo ext/pcre/pcrelib/pcre\_version.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_version.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_version.coext/pcre/pcrelib/pcreversion.loext/pcre/pcrelib/pcre_xclass.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_xclass.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_version.c -o ext/pcre/pcrelib/pcre_version.lo ext/pcre/pcrelib/pcre\_xclass.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_xclass.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_xclass.coext/pcre/pcrelib/pcrexclass.loext/pcre/php_pcre.lo:/tmp/php5.5.7/ext/pcre/php_pcre.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_xclass.c -o ext/pcre/pcrelib/pcre_xclass.lo ext/pcre/php\_pcre.lo: /tmp/php-5.5.7/ext/pcre/php\_pcre.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/php_pcre.coext/pcre/phppcre.loext/reflection/php_reflection.lo:/tmp/php5.5.7/ext/reflection/php_reflection.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/php\_pcre.c -o ext/pcre/php_pcre.lo ext/reflection/php\_reflection.lo: /tmp/php-5.5.7/ext/reflection/php\_reflection.c (LIBTOOL) --mode=compile $(CC) -Iext/reflection/ -I/tmp/php-5.5.7/ext/reflection/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/reflection/php_reflection.coext/reflection/phpreflection.loext/spl/php_spl.lo:/tmp/php5.5.7/ext/spl/php_spl.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/reflection/php\_reflection.c -o ext/reflection/php_reflection.lo ext/spl/php\_spl.lo: /tmp/php-5.5.7/ext/spl/php\_spl.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/php_spl.coext/spl/phpspl.loext/spl/spl_functions.lo:/tmp/php5.5.7/ext/spl/spl_functions.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/php\_spl.c -o ext/spl/php_spl.lo ext/spl/spl\_functions.lo: /tmp/php-5.5.7/ext/spl/spl\_functions.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_functions.coext/spl/splfunctions.loext/spl/spl_engine.lo:/tmp/php5.5.7/ext/spl/spl_engine.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_functions.c -o ext/spl/spl_functions.lo ext/spl/spl\_engine.lo: /tmp/php-5.5.7/ext/spl/spl\_engine.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_engine.coext/spl/splengine.loext/spl/spl_iterators.lo:/tmp/php5.5.7/ext/spl/spl_iterators.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_engine.c -o ext/spl/spl_engine.lo ext/spl/spl\_iterators.lo: /tmp/php-5.5.7/ext/spl/spl\_iterators.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_iterators.coext/spl/spliterators.loext/spl/spl_array.lo:/tmp/php5.5.7/ext/spl/spl_array.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_iterators.c -o ext/spl/spl_iterators.lo ext/spl/spl\_array.lo: /tmp/php-5.5.7/ext/spl/spl\_array.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_array.coext/spl/splarray.loext/spl/spl_directory.lo:/tmp/php5.5.7/ext/spl/spl_directory.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_array.c -o ext/spl/spl_array.lo ext/spl/spl\_directory.lo: /tmp/php-5.5.7/ext/spl/spl\_directory.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_directory.coext/spl/spldirectory.loext/spl/spl_exceptions.lo:/tmp/php5.5.7/ext/spl/spl_exceptions.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_directory.c -o ext/spl/spl_directory.lo ext/spl/spl\_exceptions.lo: /tmp/php-5.5.7/ext/spl/spl\_exceptions.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_exceptions.coext/spl/splexceptions.loext/spl/spl_observer.lo:/tmp/php5.5.7/ext/spl/spl_observer.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_exceptions.c -o ext/spl/spl_exceptions.lo ext/spl/spl\_observer.lo: /tmp/php-5.5.7/ext/spl/spl\_observer.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_observer.coext/spl/splobserver.loext/spl/spl_dllist.lo:/tmp/php5.5.7/ext/spl/spl_dllist.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_observer.c -o ext/spl/spl_observer.lo ext/spl/spl\_dllist.lo: /tmp/php-5.5.7/ext/spl/spl\_dllist.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_dllist.coext/spl/spldllist.loext/spl/spl_heap.lo:/tmp/php5.5.7/ext/spl/spl_heap.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_dllist.c -o ext/spl/spl_dllist.lo ext/spl/spl\_heap.lo: /tmp/php-5.5.7/ext/spl/spl\_heap.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_heap.coext/spl/splheap.loext/spl/spl_fixedarray.lo:/tmp/php5.5.7/ext/spl/spl_fixedarray.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_heap.c -o ext/spl/spl_heap.lo ext/spl/spl\_fixedarray.lo: /tmp/php-5.5.7/ext/spl/spl\_fixedarray.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_fixedarray.coext/spl/splfixedarray.loext/standard/crypt_freesec.lo:/tmp/php5.5.7/ext/standard/crypt_freesec.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_fixedarray.c -o ext/spl/spl_fixedarray.lo ext/standard/crypt\_freesec.lo: /tmp/php-5.5.7/ext/standard/crypt\_freesec.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_freesec.coext/standard/cryptfreesec.loext/standard/crypt_blowfish.lo:/tmp/php5.5.7/ext/standard/crypt_blowfish.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_freesec.c -o ext/standard/crypt_freesec.lo ext/standard/crypt\_blowfish.lo: /tmp/php-5.5.7/ext/standard/crypt\_blowfish.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_blowfish.coext/standard/cryptblowfish.loext/standard/crypt_sha512.lo:/tmp/php5.5.7/ext/standard/crypt_sha512.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_blowfish.c -o ext/standard/crypt_blowfish.lo ext/standard/crypt\_sha512.lo: /tmp/php-5.5.7/ext/standard/crypt\_sha512.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_sha512.coext/standard/cryptsha512.loext/standard/crypt_sha256.lo:/tmp/php5.5.7/ext/standard/crypt_sha256.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_sha512.c -o ext/standard/crypt_sha512.lo ext/standard/crypt\_sha256.lo: /tmp/php-5.5.7/ext/standard/crypt\_sha256.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_sha256.coext/standard/cryptsha256.loext/standard/php_crypt_r.lo:/tmp/php5.5.7/ext/standard/php_crypt_r.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_sha256.c -o ext/standard/crypt_sha256.lo ext/standard/php\_crypt\_r.lo: /tmp/php-5.5.7/ext/standard/php\_crypt\_r.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/php_crypt_r.coext/standard/php_cryptr.loext/standard/array.lo:/tmp/php5.5.7/ext/standard/array.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/php\_crypt\_r.c -o ext/standard/php\_crypt_r.lo ext/standard/array.lo: /tmp/php-5.5.7/ext/standard/array.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/array.coext/standard/array.loext/standard/base64.lo:/tmp/php5.5.7/ext/standard/base64.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/array.c -o ext/standard/array.lo ext/standard/base64.lo: /tmp/php-5.5.7/ext/standard/base64.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/base64.coext/standard/base64.loext/standard/basic_functions.lo:/tmp/php5.5.7/ext/standard/basic_functions.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/base64.c -o ext/standard/base64.lo ext/standard/basic\_functions.lo: /tmp/php-5.5.7/ext/standard/basic\_functions.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/basic_functions.coext/standard/basicfunctions.loext/standard/browscap.lo:/tmp/php5.5.7/ext/standard/browscap.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/basic\_functions.c -o ext/standard/basic_functions.lo ext/standard/browscap.lo: /tmp/php-5.5.7/ext/standard/browscap.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/browscap.coext/standard/browscap.loext/standard/crc32.lo:/tmp/php5.5.7/ext/standard/crc32.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/browscap.c -o ext/standard/browscap.lo ext/standard/crc32.lo: /tmp/php-5.5.7/ext/standard/crc32.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/crc32.coext/standard/crc32.loext/standard/crypt.lo:/tmp/php5.5.7/ext/standard/crypt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crc32.c -o ext/standard/crc32.lo ext/standard/crypt.lo: /tmp/php-5.5.7/ext/standard/crypt.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/crypt.coext/standard/crypt.loext/standard/cyr_convert.lo:/tmp/php5.5.7/ext/standard/cyr_convert.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt.c -o ext/standard/crypt.lo ext/standard/cyr\_convert.lo: /tmp/php-5.5.7/ext/standard/cyr\_convert.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/cyr_convert.coext/standard/cyrconvert.loext/standard/datetime.lo:/tmp/php5.5.7/ext/standard/datetime.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/cyr\_convert.c -o ext/standard/cyr_convert.lo ext/standard/datetime.lo: /tmp/php-5.5.7/ext/standard/datetime.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/datetime.coext/standard/datetime.loext/standard/dir.lo:/tmp/php5.5.7/ext/standard/dir.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/datetime.c -o ext/standard/datetime.lo ext/standard/dir.lo: /tmp/php-5.5.7/ext/standard/dir.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dir.coext/standard/dir.loext/standard/dl.lo:/tmp/php5.5.7/ext/standard/dl.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dir.c -o ext/standard/dir.lo ext/standard/dl.lo: /tmp/php-5.5.7/ext/standard/dl.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dl.coext/standard/dl.loext/standard/dns.lo:/tmp/php5.5.7/ext/standard/dns.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dl.c -o ext/standard/dl.lo ext/standard/dns.lo: /tmp/php-5.5.7/ext/standard/dns.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dns.coext/standard/dns.loext/standard/exec.lo:/tmp/php5.5.7/ext/standard/exec.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dns.c -o ext/standard/dns.lo ext/standard/exec.lo: /tmp/php-5.5.7/ext/standard/exec.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/exec.coext/standard/exec.loext/standard/file.lo:/tmp/php5.5.7/ext/standard/file.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/exec.c -o ext/standard/exec.lo ext/standard/file.lo: /tmp/php-5.5.7/ext/standard/file.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/file.coext/standard/file.loext/standard/filestat.lo:/tmp/php5.5.7/ext/standard/filestat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/file.c -o ext/standard/file.lo ext/standard/filestat.lo: /tmp/php-5.5.7/ext/standard/filestat.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/filestat.coext/standard/filestat.loext/standard/flock_compat.lo:/tmp/php5.5.7/ext/standard/flock_compat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/filestat.c -o ext/standard/filestat.lo ext/standard/flock\_compat.lo: /tmp/php-5.5.7/ext/standard/flock\_compat.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/flock_compat.coext/standard/flockcompat.loext/standard/formatted_print.lo:/tmp/php5.5.7/ext/standard/formatted_print.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/flock\_compat.c -o ext/standard/flock_compat.lo ext/standard/formatted\_print.lo: /tmp/php-5.5.7/ext/standard/formatted\_print.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/formatted_print.coext/standard/formattedprint.loext/standard/fsock.lo:/tmp/php5.5.7/ext/standard/fsock.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/formatted\_print.c -o ext/standard/formatted_print.lo ext/standard/fsock.lo: /tmp/php-5.5.7/ext/standard/fsock.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/fsock.coext/standard/fsock.loext/standard/head.lo:/tmp/php5.5.7/ext/standard/head.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/fsock.c -o ext/standard/fsock.lo ext/standard/head.lo: /tmp/php-5.5.7/ext/standard/head.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/head.coext/standard/head.loext/standard/html.lo:/tmp/php5.5.7/ext/standard/html.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/head.c -o ext/standard/head.lo ext/standard/html.lo: /tmp/php-5.5.7/ext/standard/html.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/html.coext/standard/html.loext/standard/image.lo:/tmp/php5.5.7/ext/standard/image.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/html.c -o ext/standard/html.lo ext/standard/image.lo: /tmp/php-5.5.7/ext/standard/image.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/image.coext/standard/image.loext/standard/info.lo:/tmp/php5.5.7/ext/standard/info.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/image.c -o ext/standard/image.lo ext/standard/info.lo: /tmp/php-5.5.7/ext/standard/info.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/info.coext/standard/info.loext/standard/iptc.lo:/tmp/php5.5.7/ext/standard/iptc.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/info.c -o ext/standard/info.lo ext/standard/iptc.lo: /tmp/php-5.5.7/ext/standard/iptc.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/iptc.coext/standard/iptc.loext/standard/lcg.lo:/tmp/php5.5.7/ext/standard/lcg.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/iptc.c -o ext/standard/iptc.lo ext/standard/lcg.lo: /tmp/php-5.5.7/ext/standard/lcg.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/lcg.coext/standard/lcg.loext/standard/link.lo:/tmp/php5.5.7/ext/standard/link.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/lcg.c -o ext/standard/lcg.lo ext/standard/link.lo: /tmp/php-5.5.7/ext/standard/link.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/link.coext/standard/link.loext/standard/mail.lo:/tmp/php5.5.7/ext/standard/mail.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/link.c -o ext/standard/link.lo ext/standard/mail.lo: /tmp/php-5.5.7/ext/standard/mail.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/mail.coext/standard/mail.loext/standard/math.lo:/tmp/php5.5.7/ext/standard/math.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/mail.c -o ext/standard/mail.lo ext/standard/math.lo: /tmp/php-5.5.7/ext/standard/math.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/math.coext/standard/math.loext/standard/md5.lo:/tmp/php5.5.7/ext/standard/md5.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/math.c -o ext/standard/math.lo ext/standard/md5.lo: /tmp/php-5.5.7/ext/standard/md5.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/md5.coext/standard/md5.loext/standard/metaphone.lo:/tmp/php5.5.7/ext/standard/metaphone.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/md5.c -o ext/standard/md5.lo ext/standard/metaphone.lo: /tmp/php-5.5.7/ext/standard/metaphone.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/metaphone.coext/standard/metaphone.loext/standard/microtime.lo:/tmp/php5.5.7/ext/standard/microtime.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/metaphone.c -o ext/standard/metaphone.lo ext/standard/microtime.lo: /tmp/php-5.5.7/ext/standard/microtime.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/microtime.coext/standard/microtime.loext/standard/pack.lo:/tmp/php5.5.7/ext/standard/pack.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/microtime.c -o ext/standard/microtime.lo ext/standard/pack.lo: /tmp/php-5.5.7/ext/standard/pack.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/pack.coext/standard/pack.loext/standard/pageinfo.lo:/tmp/php5.5.7/ext/standard/pageinfo.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/pack.c -o ext/standard/pack.lo ext/standard/pageinfo.lo: /tmp/php-5.5.7/ext/standard/pageinfo.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/pageinfo.coext/standard/pageinfo.loext/standard/quot_print.lo:/tmp/php5.5.7/ext/standard/quot_print.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/pageinfo.c -o ext/standard/pageinfo.lo ext/standard/quot\_print.lo: /tmp/php-5.5.7/ext/standard/quot\_print.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/quot_print.coext/standard/quotprint.loext/standard/rand.lo:/tmp/php5.5.7/ext/standard/rand.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/quot\_print.c -o ext/standard/quot_print.lo ext/standard/rand.lo: /tmp/php-5.5.7/ext/standard/rand.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/rand.coext/standard/rand.loext/standard/soundex.lo:/tmp/php5.5.7/ext/standard/soundex.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/rand.c -o ext/standard/rand.lo ext/standard/soundex.lo: /tmp/php-5.5.7/ext/standard/soundex.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/soundex.coext/standard/soundex.loext/standard/string.lo:/tmp/php5.5.7/ext/standard/string.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/soundex.c -o ext/standard/soundex.lo ext/standard/string.lo: /tmp/php-5.5.7/ext/standard/string.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/string.coext/standard/string.loext/standard/scanf.lo:/tmp/php5.5.7/ext/standard/scanf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/string.c -o ext/standard/string.lo ext/standard/scanf.lo: /tmp/php-5.5.7/ext/standard/scanf.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/scanf.coext/standard/scanf.loext/standard/syslog.lo:/tmp/php5.5.7/ext/standard/syslog.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/scanf.c -o ext/standard/scanf.lo ext/standard/syslog.lo: /tmp/php-5.5.7/ext/standard/syslog.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/syslog.coext/standard/syslog.loext/standard/type.lo:/tmp/php5.5.7/ext/standard/type.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/syslog.c -o ext/standard/syslog.lo ext/standard/type.lo: /tmp/php-5.5.7/ext/standard/type.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/type.coext/standard/type.loext/standard/uniqid.lo:/tmp/php5.5.7/ext/standard/uniqid.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/type.c -o ext/standard/type.lo ext/standard/uniqid.lo: /tmp/php-5.5.7/ext/standard/uniqid.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/uniqid.coext/standard/uniqid.loext/standard/url.lo:/tmp/php5.5.7/ext/standard/url.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/uniqid.c -o ext/standard/uniqid.lo ext/standard/url.lo: /tmp/php-5.5.7/ext/standard/url.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/url.coext/standard/url.loext/standard/var.lo:/tmp/php5.5.7/ext/standard/var.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/url.c -o ext/standard/url.lo ext/standard/var.lo: /tmp/php-5.5.7/ext/standard/var.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/var.coext/standard/var.loext/standard/versioning.lo:/tmp/php5.5.7/ext/standard/versioning.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/var.c -o ext/standard/var.lo ext/standard/versioning.lo: /tmp/php-5.5.7/ext/standard/versioning.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/versioning.coext/standard/versioning.loext/standard/assert.lo:/tmp/php5.5.7/ext/standard/assert.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/versioning.c -o ext/standard/versioning.lo ext/standard/assert.lo: /tmp/php-5.5.7/ext/standard/assert.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/assert.coext/standard/assert.loext/standard/strnatcmp.lo:/tmp/php5.5.7/ext/standard/strnatcmp.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/assert.c -o ext/standard/assert.lo ext/standard/strnatcmp.lo: /tmp/php-5.5.7/ext/standard/strnatcmp.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/strnatcmp.coext/standard/strnatcmp.loext/standard/levenshtein.lo:/tmp/php5.5.7/ext/standard/levenshtein.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/strnatcmp.c -o ext/standard/strnatcmp.lo ext/standard/levenshtein.lo: /tmp/php-5.5.7/ext/standard/levenshtein.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/levenshtein.coext/standard/levenshtein.loext/standard/incomplete_class.lo:/tmp/php5.5.7/ext/standard/incomplete_class.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/levenshtein.c -o ext/standard/levenshtein.lo ext/standard/incomplete\_class.lo: /tmp/php-5.5.7/ext/standard/incomplete\_class.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/incomplete_class.coext/standard/incompleteclass.loext/standard/url_scanner_ex.lo:/tmp/php5.5.7/ext/standard/url_scanner_ex.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/incomplete\_class.c -o ext/standard/incomplete_class.lo ext/standard/url\_scanner\_ex.lo: /tmp/php-5.5.7/ext/standard/url\_scanner\_ex.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/url_scanner_ex.coext/standard/url_scannerex.loext/standard/ftp_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/ftp_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/url\_scanner\_ex.c -o ext/standard/url\_scanner_ex.lo ext/standard/ftp\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/ftp\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/ftp_fopen_wrapper.coext/standard/ftp_fopenwrapper.loext/standard/http_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/http_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/ftp\_fopen\_wrapper.c -o ext/standard/ftp\_fopen_wrapper.lo ext/standard/http\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/http\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/http_fopen_wrapper.coext/standard/http_fopenwrapper.loext/standard/php_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/php_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/http\_fopen\_wrapper.c -o ext/standard/http\_fopen_wrapper.lo ext/standard/php\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/php\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/php_fopen_wrapper.coext/standard/php_fopenwrapper.loext/standard/credits.lo:/tmp/php5.5.7/ext/standard/credits.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/php\_fopen\_wrapper.c -o ext/standard/php\_fopen_wrapper.lo ext/standard/credits.lo: /tmp/php-5.5.7/ext/standard/credits.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/credits.coext/standard/credits.loext/standard/css.lo:/tmp/php5.5.7/ext/standard/css.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/credits.c -o ext/standard/credits.lo ext/standard/css.lo: /tmp/php-5.5.7/ext/standard/css.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/css.coext/standard/css.loext/standard/var_unserializer.lo:/tmp/php5.5.7/ext/standard/var_unserializer.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/css.c -o ext/standard/css.lo ext/standard/var\_unserializer.lo: /tmp/php-5.5.7/ext/standard/var\_unserializer.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/var_unserializer.coext/standard/varunserializer.loext/standard/ftok.lo:/tmp/php5.5.7/ext/standard/ftok.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/var\_unserializer.c -o ext/standard/var_unserializer.lo ext/standard/ftok.lo: /tmp/php-5.5.7/ext/standard/ftok.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/ftok.coext/standard/ftok.loext/standard/sha1.lo:/tmp/php5.5.7/ext/standard/sha1.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/ftok.c -o ext/standard/ftok.lo ext/standard/sha1.lo: /tmp/php-5.5.7/ext/standard/sha1.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/sha1.coext/standard/sha1.loext/standard/user_filters.lo:/tmp/php5.5.7/ext/standard/user_filters.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/sha1.c -o ext/standard/sha1.lo ext/standard/user\_filters.lo: /tmp/php-5.5.7/ext/standard/user\_filters.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/user_filters.coext/standard/userfilters.loext/standard/uuencode.lo:/tmp/php5.5.7/ext/standard/uuencode.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/user\_filters.c -o ext/standard/user_filters.lo ext/standard/uuencode.lo: /tmp/php-5.5.7/ext/standard/uuencode.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/uuencode.coext/standard/uuencode.loext/standard/filters.lo:/tmp/php5.5.7/ext/standard/filters.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/uuencode.c -o ext/standard/uuencode.lo ext/standard/filters.lo: /tmp/php-5.5.7/ext/standard/filters.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/filters.coext/standard/filters.loext/standard/proc_open.lo:/tmp/php5.5.7/ext/standard/proc_open.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/filters.c -o ext/standard/filters.lo ext/standard/proc\_open.lo: /tmp/php-5.5.7/ext/standard/proc\_open.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/proc_open.coext/standard/procopen.loext/standard/streamsfuncs.lo:/tmp/php5.5.7/ext/standard/streamsfuncs.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/proc\_open.c -o ext/standard/proc_open.lo ext/standard/streamsfuncs.lo: /tmp/php-5.5.7/ext/standard/streamsfuncs.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/streamsfuncs.coext/standard/streamsfuncs.loext/standard/http.lo:/tmp/php5.5.7/ext/standard/http.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/streamsfuncs.c -o ext/standard/streamsfuncs.lo ext/standard/http.lo: /tmp/php-5.5.7/ext/standard/http.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/http.coext/standard/http.loext/standard/password.lo:/tmp/php5.5.7/ext/standard/password.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/http.c -o ext/standard/http.lo ext/standard/password.lo: /tmp/php-5.5.7/ext/standard/password.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/password.coext/standard/password.loTSRM/TSRM.lo:/tmp/php5.5.7/TSRM/TSRM.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/password.c -o ext/standard/password.lo TSRM/TSRM.lo: /tmp/php-5.5.7/TSRM/TSRM.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/TSRM/TSRM.coTSRM/TSRM.loTSRM/tsrm_strtok_r.lo:/tmp/php5.5.7/TSRM/tsrm_strtok_r.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/TSRM/TSRM.c -o TSRM/TSRM.lo TSRM/tsrm\_strtok\_r.lo: /tmp/php-5.5.7/TSRM/tsrm\_strtok\_r.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/TSRM/tsrm_strtok_r.coTSRM/tsrm_strtokr.loTSRM/tsrm_virtual_cwd.lo:/tmp/php5.5.7/TSRM/tsrm_virtual_cwd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/TSRM/tsrm\_strtok\_r.c -o TSRM/tsrm\_strtok_r.lo TSRM/tsrm\_virtual\_cwd.lo: /tmp/php-5.5.7/TSRM/tsrm\_virtual\_cwd.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/TSRM/tsrm_virtual_cwd.coTSRM/tsrm_virtualcwd.lomain/main.lo:/tmp/php5.5.7/main/main.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/TSRM/tsrm\_virtual\_cwd.c -o TSRM/tsrm\_virtual_cwd.lo main/main.lo: /tmp/php-5.5.7/main/main.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/main.comain/main.lomain/snprintf.lo:/tmp/php5.5.7/main/snprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/main.c -o main/main.lo main/snprintf.lo: /tmp/php-5.5.7/main/snprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/snprintf.comain/snprintf.lomain/spprintf.lo:/tmp/php5.5.7/main/spprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/snprintf.c -o main/snprintf.lo main/spprintf.lo: /tmp/php-5.5.7/main/spprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/spprintf.comain/spprintf.lomain/php_sprintf.lo:/tmp/php5.5.7/main/php_sprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/spprintf.c -o main/spprintf.lo main/php\_sprintf.lo: /tmp/php-5.5.7/main/php\_sprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_sprintf.comain/phpsprintf.lomain/fopen_wrappers.lo:/tmp/php5.5.7/main/fopen_wrappers.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_sprintf.c -o main/php_sprintf.lo main/fopen\_wrappers.lo: /tmp/php-5.5.7/main/fopen\_wrappers.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/fopen_wrappers.comain/fopenwrappers.lomain/alloca.lo:/tmp/php5.5.7/main/alloca.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/fopen\_wrappers.c -o main/fopen_wrappers.lo main/alloca.lo: /tmp/php-5.5.7/main/alloca.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/alloca.comain/alloca.lomain/php_scandir.lo:/tmp/php5.5.7/main/php_scandir.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/alloca.c -o main/alloca.lo main/php\_scandir.lo: /tmp/php-5.5.7/main/php\_scandir.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_scandir.comain/phpscandir.lomain/php_ini.lo:/tmp/php5.5.7/main/php_ini.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_scandir.c -o main/php_scandir.lo main/php\_ini.lo: /tmp/php-5.5.7/main/php\_ini.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_ini.comain/phpini.lomain/SAPI.lo:/tmp/php5.5.7/main/SAPI.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_ini.c -o main/php_ini.lo main/SAPI.lo: /tmp/php-5.5.7/main/SAPI.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/SAPI.comain/SAPI.lomain/rfc1867.lo:/tmp/php5.5.7/main/rfc1867.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/SAPI.c -o main/SAPI.lo main/rfc1867.lo: /tmp/php-5.5.7/main/rfc1867.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/rfc1867.comain/rfc1867.lomain/php_content_types.lo:/tmp/php5.5.7/main/php_content_types.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/rfc1867.c -o main/rfc1867.lo main/php\_content\_types.lo: /tmp/php-5.5.7/main/php\_content\_types.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_content_types.comain/php_contenttypes.lomain/strlcpy.lo:/tmp/php5.5.7/main/strlcpy.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_content\_types.c -o main/php\_content_types.lo main/strlcpy.lo: /tmp/php-5.5.7/main/strlcpy.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/strlcpy.comain/strlcpy.lomain/strlcat.lo:/tmp/php5.5.7/main/strlcat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/strlcpy.c -o main/strlcpy.lo main/strlcat.lo: /tmp/php-5.5.7/main/strlcat.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/strlcat.comain/strlcat.lomain/mergesort.lo:/tmp/php5.5.7/main/mergesort.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/strlcat.c -o main/strlcat.lo main/mergesort.lo: /tmp/php-5.5.7/main/mergesort.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/mergesort.comain/mergesort.lomain/reentrancy.lo:/tmp/php5.5.7/main/reentrancy.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/mergesort.c -o main/mergesort.lo main/reentrancy.lo: /tmp/php-5.5.7/main/reentrancy.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/reentrancy.comain/reentrancy.lomain/php_variables.lo:/tmp/php5.5.7/main/php_variables.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/reentrancy.c -o main/reentrancy.lo main/php\_variables.lo: /tmp/php-5.5.7/main/php\_variables.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_variables.comain/phpvariables.lomain/php_ticks.lo:/tmp/php5.5.7/main/php_ticks.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_variables.c -o main/php_variables.lo main/php\_ticks.lo: /tmp/php-5.5.7/main/php\_ticks.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_ticks.comain/phpticks.lomain/network.lo:/tmp/php5.5.7/main/network.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_ticks.c -o main/php_ticks.lo main/network.lo: /tmp/php-5.5.7/main/network.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/network.comain/network.lomain/php_open_temporary_file.lo:/tmp/php5.5.7/main/php_open_temporary_file.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/network.c -o main/network.lo main/php\_open\_temporary\_file.lo: /tmp/php-5.5.7/main/php\_open\_temporary\_file.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_open_temporary_file.comain/php_open_temporaryfile.lomain/output.lo:/tmp/php5.5.7/main/output.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_open\_temporary\_file.c -o main/php\_open\_temporary_file.lo main/output.lo: /tmp/php-5.5.7/main/output.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/output.comain/output.lomain/getopt.lo:/tmp/php5.5.7/main/getopt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/output.c -o main/output.lo main/getopt.lo: /tmp/php-5.5.7/main/getopt.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/getopt.comain/getopt.lomain/streams/streams.lo:/tmp/php5.5.7/main/streams/streams.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/getopt.c -o main/getopt.lo main/streams/streams.lo: /tmp/php-5.5.7/main/streams/streams.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/streams/streams.comain/streams/streams.lomain/streams/cast.lo:/tmp/php5.5.7/main/streams/cast.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/streams.c -o main/streams/streams.lo main/streams/cast.lo: /tmp/php-5.5.7/main/streams/cast.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/streams/cast.comain/streams/cast.lomain/streams/memory.lo:/tmp/php5.5.7/main/streams/memory.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/cast.c -o main/streams/cast.lo main/streams/memory.lo: /tmp/php-5.5.7/main/streams/memory.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/memory.c -o main/streams/memory.lo
    main/streams/filter.lo: /tmp/php-5.5.7/main/streams/filter.c



  • Entschuldigung, als Anregung zum Studium eine optimierte Version eines Makefiles eines Projekts aus dem Internet mit Tabulatorismen:

    [code]
    srcdir = /tmp/php-5.5.7
    builddir = /tmp/php-5.5.7
    top_srcdir = /tmp/php-5.5.7
    top_builddir = /tmp/php-5.5.7
    EGREP = /usr/bin/grep -E
    SED = /usr/bin/sed
    CONFIGURE_COMMAND = './configure' '--enable-embed' '--disable-all' '--disable-cgi'
    CONFIGURE_OPTIONS = '--enable-embed' '--disable-all' '--disable-cgi'
    PHP_MAJOR_VERSION = 5
    PHP_MINOR_VERSION = 5
    PHP_RELEASE_VERSION = 7
    PHP_EXTRA_VERSION =
    AWK = gawk
    YACC = exit 0;
    RE2C = exit 0;
    RE2C_FLAGS =
    SHLIB_SUFFIX_NAME = so
    SHLIB_DL_SUFFIX_NAME = so
    PHP_CLI_OBJS = sapi/cli/php_cli.lo sapi/cli/php_http_parser.lo sapi/cli/php_cli_server.lo sapi/cli/ps_title.lo sapi/cli/php_cli_process_title.lo
    PHP_EXECUTABLE = (top_builddir)/(top\_builddir)/(SAPI_CLI_PATH)
    SAPI_CLI_PATH = sapi/cli/php
    BUILD_CLI = $(LIBTOOL) --mode=link $(CC) -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_CLI_OBJS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $(SAPI_CLI_PATH)
    PHP_PHPDBG_CFLAGS = -D_GNU_SOURCE
    PHP_PHPDBG_FILES = phpdbg.c phpdbg_prompt.c phpdbg_help.c phpdbg_break.c phpdbg_print.c phpdbg_bp.c phpdbg_opcode.c phpdbg_list.c phpdbg_utils.c phpdbg_info.c phpdbg_cmd.c phpdbg_set.c phpdbg_frame.c
    PHP_PHPDBG_OBJS = sapi/phpdbg/phpdbg.lo sapi/phpdbg/phpdbg_prompt.lo sapi/phpdbg/phpdbg_help.lo sapi/phpdbg/phpdbg_break.lo sapi/phpdbg/phpdbg_print.lo sapi/phpdbg/phpdbg_bp.lo sapi/phpdbg/phpdbg_opcode.lo sapi/phpdbg/phpdbg_list.lo sapi/phpdbg/phpdbg_utils.lo sapi/phpdbg/phpdbg_info.lo sapi/phpdbg/phpdbg_cmd.lo sapi/phpdbg/phpdbg_set.lo sapi/phpdbg/phpdbg_frame.lo
    BUILD_BINARY = sapi/phpdbg/phpdbg
    BUILD_SHARED = sapi/phpdbg/libphpdbg.la
    BUILD_PHPDBG = $(LIBTOOL) --mode=link $(CC) -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS) $(EXTRA_LIBS) $(PHPDBG_EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $(BUILD_BINARY)
    BUILD_PHPDBG_SHARED = $(LIBTOOL) --mode=link $(CC) -shared -Wl,-soname,libphpdbg.so -export-dynamic $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS_PROGRAM) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS) $(EXTRA_LIBS) $(PHPDBG_EXTRA_LIBS) $(ZEND_EXTRA_LIBS) \-DPHPDBG_SHARED -o $(BUILD_SHARED)
    PROG_SENDMAIL =
    PHP_INSTALLED_SAPIS = cli embed phpdbg
    PHP_EXECUTABLE = (top_builddir)/(top\_builddir)/(SAPI_CLI_PATH)
    PHP_SAPI_OBJS = sapi/embed/php_embed.lo main/internal_functions.lo
    PHP_BINARY_OBJS = main/internal_functions_cli.lo
    PHP_GLOBAL_OBJS = ext/date/php_date.lo ext/date/lib/astro.lo ext/date/lib/dow.lo ext/date/lib/parse_date.lo ext/date/lib/parse_tz.lo ext/date/lib/timelib.lo ext/date/lib/tm2unixtime.lo ext/date/lib/unixtime2tm.lo ext/date/lib/parse_iso_intervals.lo ext/date/lib/interval.lo ext/ereg/ereg.lo ext/ereg/regex/regcomp.lo ext/ereg/regex/regexec.lo ext/ereg/regex/regerror.lo ext/ereg/regex/regfree.lo ext/pcre/pcrelib/pcre_chartables.lo ext/pcre/pcrelib/pcre_ucd.lo ext/pcre/pcrelib/pcre_compile.lo ext/pcre/pcrelib/pcre_config.lo ext/pcre/pcrelib/pcre_exec.lo ext/pcre/pcrelib/pcre_fullinfo.lo ext/pcre/pcrelib/pcre_get.lo ext/pcre/pcrelib/pcre_globals.lo ext/pcre/pcrelib/pcre_maketables.lo ext/pcre/pcrelib/pcre_newline.lo ext/pcre/pcrelib/pcre_ord2utf8.lo ext/pcre/pcrelib/pcre_refcount.lo ext/pcre/pcrelib/pcre_study.lo ext/pcre/pcrelib/pcre_tables.lo ext/pcre/pcrelib/pcre_valid_utf8.lo ext/pcre/pcrelib/pcre_version.lo ext/pcre/pcrelib/pcre_xclass.lo ext/pcre/php_pcre.lo ext/reflection/php_reflection.lo ext/spl/php_spl.lo ext/spl/spl_functions.lo ext/spl/spl_engine.lo ext/spl/spl_iterators.lo ext/spl/spl_array.lo ext/spl/spl_directory.lo ext/spl/spl_exceptions.lo ext/spl/spl_observer.lo ext/spl/spl_dllist.lo ext/spl/spl_heap.lo ext/spl/spl_fixedarray.lo ext/standard/crypt_freesec.lo ext/standard/crypt_blowfish.lo ext/standard/crypt_sha512.lo ext/standard/crypt_sha256.lo ext/standard/php_crypt_r.lo ext/standard/array.lo ext/standard/base64.lo ext/standard/basic_functions.lo ext/standard/browscap.lo ext/standard/crc32.lo ext/standard/crypt.lo ext/standard/cyr_convert.lo ext/standard/datetime.lo ext/standard/dir.lo ext/standard/dl.lo ext/standard/dns.lo ext/standard/exec.lo ext/standard/file.lo ext/standard/filestat.lo ext/standard/flock_compat.lo ext/standard/formatted_print.lo ext/standard/fsock.lo ext/standard/head.lo ext/standard/html.lo ext/standard/image.lo ext/standard/info.lo ext/standard/iptc.lo ext/standard/lcg.lo ext/standard/link.lo ext/standard/mail.lo ext/standard/math.lo ext/standard/md5.lo ext/standard/metaphone.lo ext/standard/microtime.lo ext/standard/pack.lo ext/standard/pageinfo.lo ext/standard/quot_print.lo ext/standard/rand.lo ext/standard/soundex.lo ext/standard/string.lo ext/standard/scanf.lo ext/standard/syslog.lo ext/standard/type.lo ext/standard/uniqid.lo ext/standard/url.lo ext/standard/var.lo ext/standard/versioning.lo ext/standard/assert.lo ext/standard/strnatcmp.lo ext/standard/levenshtein.lo ext/standard/incomplete_class.lo ext/standard/url_scanner_ex.lo ext/standard/ftp_fopen_wrapper.lo ext/standard/http_fopen_wrapper.lo ext/standard/php_fopen_wrapper.lo ext/standard/credits.lo ext/standard/css.lo ext/standard/var_unserializer.lo ext/standard/ftok.lo ext/standard/sha1.lo ext/standard/user_filters.lo ext/standard/uuencode.lo ext/standard/filters.lo ext/standard/proc_open.lo ext/standard/streamsfuncs.lo ext/standard/http.lo ext/standard/password.lo TSRM/TSRM.lo TSRM/tsrm_strtok_r.lo TSRM/tsrm_virtual_cwd.lo main/main.lo main/snprintf.lo main/spprintf.lo main/php_sprintf.lo main/fopen_wrappers.lo main/alloca.lo main/php_scandir.lo main/php_ini.lo main/SAPI.lo main/rfc1867.lo main/php_content_types.lo main/strlcpy.lo main/strlcat.lo main/mergesort.lo main/reentrancy.lo main/php_variables.lo main/php_ticks.lo main/network.lo main/php_open_temporary_file.lo main/output.lo main/getopt.lo main/streams/streams.lo main/streams/cast.lo main/streams/memory.lo main/streams/filter.lo main/streams/plain_wrapper.lo main/streams/userspace.lo main/streams/transports.lo main/streams/xp_socket.lo main/streams/mmap.lo main/streams/glob_wrapper.lo Zend/zend_language_parser.lo Zend/zend_language_scanner.lo Zend/zend_ini_parser.lo Zend/zend_ini_scanner.lo Zend/zend_alloc.lo Zend/zend_compile.lo Zend/zend_constants.lo Zend/zend_dynamic_array.lo Zend/zend_dtrace.lo Zend/zend_execute_API.lo Zend/zend_highlight.lo Zend/zend_llist.lo Zend/zend_opcode.lo Zend/zend_operators.lo Zend/zend_ptr_stack.lo Zend/zend_stack.lo Zend/zend_variables.lo Zend/zend.lo Zend/zend_API.lo Zend/zend_extensions.lo Zend/zend_hash.lo Zend/zend_list.lo Zend/zend_indent.lo Zend/zend_builtin_functions.lo Zend/zend_sprintf.lo Zend/zend_ini.lo Zend/zend_qsort.lo Zend/zend_multibyte.lo Zend/zend_ts_hash.lo Zend/zend_stream.lo Zend/zend_iterators.lo Zend/zend_interfaces.lo Zend/zend_exceptions.lo Zend/zend_strtod.lo Zend/zend_gc.lo Zend/zend_closures.lo Zend/zend_float.lo Zend/zend_string.lo Zend/zend_signal.lo Zend/zend_generators.lo Zend/zend_objects.lo Zend/zend_object_handlers.lo Zend/zend_objects_API.lo Zend/zend_default_classes.lo Zend/zend_execute.lo
    PHP_BINARIES = cli phpdbg
    PHP_MODULES =
    PHP_ZEND_EX =
    EXT_LIBS =
    abs_builddir = /tmp/php-5.5.7
    abs_srcdir = /tmp/php-5.5.7
    php_abs_top_builddir = /tmp/php-5.5.7
    php_abs_top_srcdir = /tmp/php-5.5.7
    bindir = ${exec_prefix}/bin
    sbindir = ${exec_prefix}/sbin
    exec_prefix = ${prefix}
    program_prefix =
    program_suffix =
    includedir = ${prefix}/include
    libdir = ${exec_prefix}/lib/php
    mandir = ${datarootdir}/man
    phplibdir = /tmp/php-5.5.7/modules
    phptempdir = /tmp/php-5.5.7/libs
    prefix = /usr/local
    localstatedir = ${prefix}/var
    datadir = ${datarootdir}
    datarootdir = /usr/local/php
    sysconfdir = ${prefix}/etc
    EXEEXT =
    CC = cc
    CFLAGS = (CFLAGSCLEAN)CFLAGSCLEAN=gO2fvisibility=hiddenCPP=ccECPPFLAGS=CXX=CXXFLAGS=CXXFLAGSCLEAN=DEBUGCFLAGS=EXTENSIONDIR=/usr/local/lib/php/extensions/nodebugnonzts20121212EXTRALDFLAGS=avoidversionmoduleEXTRA_LDFLAGS_PROGRAM=EXTRALIBS=lcryptlresolvlcryptlrtlmldllnsllcryptlcryptZEND_EXTRA_LIBS=INCLUDES=I/tmp/php5.5.7/ext/date/libI/tmp/php5.5.7/ext/ereg/regexI(CFLAGS_CLEAN) CFLAGS_CLEAN = -g -O2 -fvisibility=hidden CPP = cc -E CPPFLAGS = CXX = CXXFLAGS = CXXFLAGS_CLEAN = DEBUG_CFLAGS = EXTENSION_DIR = /usr/local/lib/php/extensions/no-debug-non-zts-20121212 EXTRA_LDFLAGS = -avoid-version -module EXTRA\_LDFLAGS\_PROGRAM = EXTRA_LIBS = -lcrypt -lresolv -lcrypt -lrt -lm -ldl -lnsl -lcrypt -lcrypt ZEND\_EXTRA\_LIBS = INCLUDES = -I/tmp/php-5.5.7/ext/date/lib -I/tmp/php-5.5.7/ext/ereg/regex -I(top_builddir)/TSRM -I$(top_builddir)/Zend
    EXTRA_INCLUDES =
    INCLUDE_PATH = .:
    INSTALL_IT = $(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(prefix)/lib; $(INSTALL) -m 0755 libs/libphp5.so (INSTALLROOT)(INSTALL_ROOT)(prefix)/lib
    LFLAGS =
    LIBTOOL = $(SHELL) $(top_builddir)/libtool --silent --preserve-dup-deps
    LN_S = ln -s
    NATIVE_RPATHS =
    PEAR_INSTALLDIR =
    PHP_BUILD_DATE = 2014-02-20
    PHP_LDFLAGS =
    PHP_LIBS =
    OVERALL_TARGET = libphp5.la
    PHP_RPATHS =
    PHP_SAPI = embed
    PHP_VERSION = 5.5.7
    PHP_VERSION_ID = 50507
    SHELL = /bin/sh
    SHARED_LIBTOOL = $(LIBTOOL)
    WARNING_LEVEL =
    PHP_FRAMEWORKS =
    PHP_FRAMEWORKPATH =
    INSTALL_HEADERS = sapi/cli/cli.h sapi/embed/php_embed.h ext/date/php_date.h ext/date/lib/timelib.h ext/date/lib/timelib_structs.h ext/date/lib/timelib_config.h ext/ereg/php_ereg.h ext/ereg/php_regex.h ext/ereg/regex/ ext/pcre/php_pcre.h ext/pcre/pcrelib/ ext/spl/php_spl.h ext/spl/spl_array.h ext/spl/spl_directory.h ext/spl/spl_engine.h ext/spl/spl_exceptions.h ext/spl/spl_functions.h ext/spl/spl_iterators.h ext/spl/spl_observer.h ext/spl/spl_dllist.h ext/spl/spl_heap.h ext/spl/spl_fixedarray.h ext/standard/ Zend/ TSRM/ include/ main/ main/streams/
    ZEND_EXT_TYPE = zend_extension
    all_targets = $(OVERALL_TARGET) $(PHP_MODULES) $(PHP_ZEND_EX) $(PHP_BINARIES)
    install_targets = install-sapi install-binaries install-build install-headers install-programs
    install_binary_targets = install-cli install-phpdbg
    mkinstalldirs = $(top_srcdir)/build/shtool mkdir -p
    INSTALL = $(top_srcdir)/build/shtool install -c
    INSTALL_DATA = $(INSTALL) -m 644

    DEFS = -DPHP_ATOM_INC -I(top_builddir)/includeI(top\_builddir)/include -I(top_builddir)/main -I$(top_srcdir)
    COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) $(PHP_FRAMEWORKPATH)

    all: $(all_targets)
    @echo
    @echo "Build complete."
    @echo "Don't forget to run 'make test'."
    @echo

    build-modules: $(PHP_MODULES) $(PHP_ZEND_EX)

    build-binaries: $(PHP_BINARIES)

    libphp$(PHP_MAJOR_VERSION).la: $(PHP_GLOBAL_OBJS) (PHP_SAPI_OBJS)(PHP\_SAPI\_OBJS) (LIBTOOL) --mode=link $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o @@@ -@(LIBTOOL) --silent --mode=install cp $@ (phptempdir)/(phptempdir)/@ >/dev/null 2>&1

    libs/libphp$(PHP_MAJOR_VERSION).bundle: $(PHP_GLOBAL_OBJS) (PHP_SAPI_OBJS)(PHP\_SAPI\_OBJS) (CC) $(MH_BUNDLE_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(PHP_GLOBAL_OBJS:.lo=.o) $(PHP_SAPI_OBJS:.lo=.o) $(PHP_FRAMEWORKS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $@ && cp @libs/libphp@ libs/libphp(PHP_MAJOR_VERSION).so

    install: $(all_targets) $(install_targets)

    install-sapi: $(OVERALL_TARGET)
    @echo "Installing PHP SAPI module: (PHPSAPI)"@(PHP_SAPI)" -@(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    -@if test ! -r (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).$(SHLIB_DL_SUFFIX_NAME); then \
    for i in 0.0.0 0.0 0; do \
    if test -r (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIXNAME).(SHLIB\_DL\_SUFFIX_NAME).i;then i; then \ (LN_S) (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIX_NAME).(SHLIB\_DL\_SUFFIX\_NAME).$i (phptempdir)/libphp(phptempdir)/libphp(PHP_MAJOR_VERSION).(SHLIB_DL_SUFFIXNAME); break; fi; done; fi@(SHLIB\_DL\_SUFFIX_NAME); \ break; \ fi; \ done; \ fi @(INSTALL_IT)

    install-binaries: build-binaries $(install_binary_targets)

    install-modules: build-modules
    @test -d modules && \
    $(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)
    @echo "Installing shared extensions: (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)/"
    @rm -f modules/.la >/dev/null 2>&1
    @$(INSTALL) modules/
    (INSTALL_ROOT)(INSTALL\_ROOT)(EXTENSION_DIR)

    install-headers:
    -@if test "$(INSTALL_HEADERS)"; then \
    for i in `echo (INSTALL_HEADERS)\`; do \ i=`(top_srcdir)/build/shtool path -d $$i; \ paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \ done; \ $(mkinstalldirs) $$paths && \ echo "Installing header files: $(INSTALL_ROOT)$(phpincludedir)/" && \ for i in \echo (INSTALL_HEADERS)\`; do \ if test "(PHP_PECL_EXTENSION)"; then \
    src=`echo $$i | (SED) -e "s#ext/(PHP_PECL_EXTENSION)/##g"`; \
    else \
    src=$$i; \
    fi; \
    if test -f "(topsrcdir)/(top_srcdir)/src";then src"; then \ (INSTALL_DATA) (top_srcdir)/(top\_srcdir)/$src (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    elif test -f "(topbuilddir)/(top_builddir)/src";then src"; then \ (INSTALL_DATA) (top_builddir)/(top\_builddir)/$src (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    else \
    (cd (top_srcdir)/(top\_srcdir)/$src && $(INSTALL_DATA) *.h (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i; \
    cd (top_builddir)/(top\_builddir)/$src && $(INSTALL_DATA) *.h (INSTALLROOT)(INSTALL_ROOT)(phpincludedir)/$$i) 2>/dev/null || true; \
    fi \
    done; \
    fi

    PHP_TEST_SETTINGS = -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1'
    PHP_TEST_SHARED_EXTENSIONS = \ if test "x$(PHP_MODULES)" != "x"; then \ for i in $(PHP_MODULES)""; do \ . $$i; $(top_srcdir)/build/shtool echo -n -- " -d extension=$$dlname"; \ done; \ fi; \ if test "x$(PHP\_ZEND\_EX)" != "x"; then \ for i in $(PHP\_ZEND\_EX)""; do \ . $$i; $(top\_srcdir)/build/shtool echo -n -- " -d $(ZEND\_EXT\_TYPE)=$(top\_builddir)/modules/$$dlname"; \ done; \ fi
    PHP_DEPRECATED_DIRECTIVES_REGEX = '^(magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*='

    test: all
    @if test ! -z "(PHP\_EXECUTABLE)" && test -x "(PHP_EXECUTABLE)"; then \
    INI_FILE=$(PHP\_EXECUTABLE) -d 'display\_errors=stderr' -r 'echo php\_ini\_loaded\_file();' 2> /dev/null; \
    if test "$$INI_FILE"; then \
    $(EGREP) -h -v (PHP_DEPRECATED_DIRECTIVES_REGEX)"(PHP\_DEPRECATED\_DIRECTIVES\_REGEX) "$INI_FILE" > $(top_builddir)/tmp-php.ini; \
    else \
    echo > (topbuilddir)/tmpphp.ini; fi; INI_SCANNED_PATH=(top_builddir)/tmp-php.ini; \ fi; \ INI\_SCANNED\_PATH=`(PHP_EXECUTABLE) -d 'display_errors=stderr' -r '$$a = explode(",\n", trim(php_ini_scanned_files())); echo $$a[0];' 2> /dev/null; \ if test "$$INI\_SCANNED\_PATH"; then \ INI\_SCANNED\_PATH=$(top_srcdir)/build/shtool path -d $$INI_SCANNED_PATH`; \
    $(EGREP) -h -v (PHP_DEPRECATED_DIRECTIVES_REGEX)"(PHP\_DEPRECATED\_DIRECTIVES\_REGEX) "$INI_SCANNED_PATH"/*.ini >> (top_builddir)/tmpphp.ini; fi; TEST_PHP_EXECUTABLE=(top\_builddir)/tmp-php.ini; \ fi; \ TEST\_PHP\_EXECUTABLE=(PHP_EXECUTABLE) \
    TEST_PHP_SRCDIR=(topsrcdir) CC="(top_srcdir) \ CC="(CC)" \
    $(PHP_EXECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -c (top_builddir)/tmpphp.inidextension_dir=(top\_builddir)/tmp-php.ini -d extension\_dir=(top_builddir)/modules/ $(PHP_TEST_SHARED_EXTENSIONS) (TESTS); TEST_RESULT_EXITCODE=(TESTS); \ TEST\_RESULT\_EXIT_CODE=$?; \
    rm $(top_builddir)/tmp-php.ini; \
    exit $$TEST_RESULT_EXIT_CODE; \
    else \
    echo "ERROR: Cannot run tests without CLI sapi."; \
    fi

    clean:
    find . -name \.gcno -o -name \.gcda | xargs rm -f
    find . -name \.lo -o -name \.o | xargs rm -f
    find . -name \.la -o -name \.a | xargs rm -f
    find . -name \.so | xargs rm -f
    find . -name .libs -a -type d|xargs rm -rf
    rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/
    libs/*

    distclean: clean
    rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h sapi/apache/libphp(PHP_MAJOR_VERSION).modulesapi/apache_hooks/libphp(PHP\_MAJOR\_VERSION).module sapi/apache\_hooks/libphp(PHP_MAJOR_VERSION).module buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h
    rm -f php5.spec main/build-defs.h scripts/phpize
    rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/mysqlnd/php_mysqlnd_config.h
    rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 ext/phar/phar.1 ext/phar/phar.phar.1
    rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
    rm -f ext/iconv/php_have_bsd_iconv.h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/iconv/php_have_libiconv.h ext/iconv/php_iconv_aliased_libiconv.h ext/iconv/php_iconv_supports_errno.h ext/iconv/php_php_iconv_h_path.h ext/iconv/php_php_iconv_impl.h
    rm -f ext/phar/phar.phar ext/phar/phar.php
    if test "(srcdir)"!="(srcdir)" != "(builddir)"; then \
    rm -f ext/phar/phar/phar.inc; \
    fi
    $(EGREP) define'.*include/php' $(top_srcdir)/configure | $(SED) 's/.*>//'|xargs rm -f

    .PHONY: all clean install distclean test
    .NOEXPORT:
    cli: $(SAPI_CLI_PATH)

    $(SAPI_CLI_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_CLI_OBJS)(PHP\_CLI\_OBJS) (BUILD_CLI)

    install-cli: $(SAPI_CLI_PATH)
    @echo "Installing PHP CLI binary: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @$(INSTALL) -m 0755 $(SAPI_CLI_PATH) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)php(program\_prefix)php(program_suffix)$(EXEEXT)
    @echo "Installing PHP CLI man page: (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1
    @$(INSTALL_DATA) sapi/cli/php.1 (INSTALL_ROOT)(INSTALL\_ROOT)(mandir)/man1/(program_prefix)php(program\_prefix)php(program_suffix).1

    phpdbg: $(BUILD_BINARY)

    phpdbg-shared: $(BUILD_SHARED)

    $(BUILD_SHARED): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_PHPDBGOBJS)(PHP\_PHPDBG_OBJS) (BUILD_PHPDBG_SHARED)

    $(BUILD_BINARY): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) (PHP_PHPDBGOBJS)(PHP\_PHPDBG_OBJS) (BUILD_PHPDBG)

    install-phpdbg: $(BUILD_BINARY)
    @echo "Installing phpdbg binary: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(localstatedir)/log
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(localstatedir)/run
    @$(INSTALL) -m 0755 $(BUILD_BINARY) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)phpdbg(program\_prefix)phpdbg(program_suffix)$(EXEEXT)

    clean-phpdbg:
    @echo "Cleaning phpdbg object files ..."
    find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f

    test-phpdbg:
    @echo "Running phpdbg tests ..."
    @$(top_builddir)/sapi/cli/php sapi/phpdbg/tests/run-tests.php --phpdbg sapi/phpdbg/phpdbg

    .PHONY: clean-phpdbg test-phpdbg

    /tmp/php-5.5.7/ext/standard/var_unserializer.c: /tmp/php-5.5.7/ext/standard/var_unserializer.re
    @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re)

    /tmp/php-5.5.7/ext/standard/url_scanner_ex.c: /tmp/php-5.5.7/ext/standard/url_scanner_ex.re
    @(cd $(top_srcdir); $(RE2C) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re)

    ext/standard/info.lo: ext/standard/../../main/build-defs.h

    ext/standard/basic_functions.lo: $(top_srcdir)/Zend/zend_language_parser.h

    # Build environment install

    phpincludedir = $(includedir)/php
    phpbuilddir = $(libdir)/build

    BUILD_FILES = \
    scripts/phpize.m4 \
    build/mkdep.awk \
    build/scan_makefile_in.awk \
    build/libtool.m4 \
    Makefile.global \
    acinclude.m4 \
    ltmain.sh \
    run-tests.php

    BUILD_FILES_EXEC = \
    build/shtool \
    config.guess \
    config.sub

    bin_SCRIPTS = phpize php-config
    man_PAGES = phpize php-config

    install-build:
    @echo "Installing build environment: (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir)/"
    @$(mkinstalldirs) (INSTALL_ROOT)(INSTALL\_ROOT)(phpbuilddir) (INSTALL_ROOT)(INSTALL\_ROOT)(bindir) && \
    (cd (top_srcdir) && \ (INSTALL) $(BUILD_FILES_EXEC) (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir) && \
    $(INSTALL_DATA) $(BUILD_FILES) (INSTALLROOT)(INSTALL_ROOT)(phpbuilddir))

    install-programs: scripts/phpize scripts/php-config
    @echo "Installing helper programs: (INSTALLROOT)(INSTALL_ROOT)(bindir)/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(bindir)
    @for prog in $(bin_SCRIPTS); do \
    echo " program: (program_prefix)(program\_prefix)prog{prog}(program_suffix)"; \
    (INSTALL)m755scripts/(INSTALL) -m 755 scripts/${prog} (INSTALL_ROOT)(INSTALL\_ROOT)(bindir)/(program_prefix)(program\_prefix)prog{prog}(program_suffix); \
    done
    @echo "Installing man pages: (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1/"
    @$(mkinstalldirs) (INSTALLROOT)(INSTALL_ROOT)(mandir)/man1
    @for page in $(man_PAGES); do \
    echo " page: (program_prefix)(program\_prefix)page{page}(program_suffix).1"; \
    (INSTALL_DATA)scripts/man1/(INSTALL\_DATA) scripts/man1/${page}.1 (INSTALL_ROOT)(INSTALL\_ROOT)(mandir)/man1/(program_prefix)(program\_prefix)page{page}(program_suffix).1; \
    done

    scripts/phpize: /tmp/php-5.5.7/scripts/phpize.in (topbuilddir)/config.status(CONFIG_FILES=(top_builddir)/config.status (CONFIG\_FILES=@ CONFIG_HEADERS= $(top_builddir)/config.status)

    scripts/php-config: /tmp/php-5.5.7/scripts/php-config.in (topbuilddir)/config.status(CONFIG_FILES=(top_builddir)/config.status (CONFIG\_FILES=@ CONFIG_HEADERS= $(top_builddir)/config.status)

    # Zend

    Zend/zend_language_scanner.lo: /tmp/php-5.5.7/Zend/zend_language_parser.h
    Zend/zend_ini_scanner.lo: /tmp/php-5.5.7/Zend/zend_ini_parser.h

    /tmp/php-5.5.7/Zend/zend_language_scanner.c: /tmp/php-5.5.7/Zend/zend_language_scanner.l
    @(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date --case-inverted -cbdFt Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c Zend/zend_language_scanner.l)

    /tmp/php-5.5.7/Zend/zend_language_parser.h: /tmp/php-5.5.7/Zend/zend_language_parser.c
    /tmp/php-5.5.7/Zend/zend_language_parser.c: /tmp/php-5.5.7/Zend/zend_language_parser.y
    @$(YACC) -p zend -v -d /tmp/php-5.5.7/Zend/zend_language_parser.y -o $@

    /tmp/php-5.5.7/Zend/zend_ini_parser.h: /tmp/php-5.5.7/Zend/zend_ini_parser.c
    /tmp/php-5.5.7/Zend/zend_ini_parser.c: /tmp/php-5.5.7/Zend/zend_ini_parser.y
    @$(YACC) -p ini_ -v -d /tmp/php-5.5.7/Zend/zend_ini_parser.y -o $@

    /tmp/php-5.5.7/Zend/zend_ini_scanner.c: /tmp/php-5.5.7/Zend/zend_ini_scanner.l
    @(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date --case-inverted -cbdFt Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c Zend/zend_ini_scanner.l)

    Zend/zend_indent.lo Zend/zend_highlight.lo Zend/zend_compile.lo: /tmp/php-5.5.7/Zend/zend_language_parser.h
    Zend/zend_execute.lo: /tmp/php-5.5.7/Zend/zend_vm_execute.h /tmp/php-5.5.7/Zend/zend_vm_opcodes.h
    sapi/cli/php_cli.lo: /tmp/php-5.5.7/sapi/cli/php_cli.c
    $(LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli.cosapi/cli/phpcli.losapi/cli/php_http_parser.lo:/tmp/php5.5.7/sapi/cli/php_http_parser.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli.c -o sapi/cli/php_cli.lo sapi/cli/php\_http\_parser.lo: /tmp/php-5.5.7/sapi/cli/php\_http\_parser.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_http_parser.cosapi/cli/php_httpparser.losapi/cli/php_cli_server.lo:/tmp/php5.5.7/sapi/cli/php_cli_server.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_http\_parser.c -o sapi/cli/php\_http_parser.lo sapi/cli/php\_cli\_server.lo: /tmp/php-5.5.7/sapi/cli/php\_cli\_server.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli_server.cosapi/cli/php_cliserver.losapi/cli/ps_title.lo:/tmp/php5.5.7/sapi/cli/ps_title.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli\_server.c -o sapi/cli/php\_cli_server.lo sapi/cli/ps\_title.lo: /tmp/php-5.5.7/sapi/cli/ps\_title.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/ps_title.cosapi/cli/pstitle.losapi/cli/php_cli_process_title.lo:/tmp/php5.5.7/sapi/cli/php_cli_process_title.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/ps\_title.c -o sapi/cli/ps_title.lo sapi/cli/php\_cli\_process\_title.lo: /tmp/php-5.5.7/sapi/cli/php\_cli\_process\_title.c (LIBTOOL) --mode=compile $(CC) -Isapi/cli/ -I/tmp/php-5.5.7/sapi/cli/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/cli/php_cli_process_title.cosapi/cli/php_cli_processtitle.losapi/embed/php_embed.lo:/tmp/php5.5.7/sapi/embed/php_embed.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/cli/php\_cli\_process\_title.c -o sapi/cli/php\_cli\_process_title.lo sapi/embed/php\_embed.lo: /tmp/php-5.5.7/sapi/embed/php\_embed.c (LIBTOOL) --mode=compile $(CC) -Isapi/embed/ -I/tmp/php-5.5.7/sapi/embed/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/embed/php_embed.cosapi/embed/phpembed.losapi/phpdbg/phpdbg.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/embed/php\_embed.c -o sapi/embed/php_embed.lo sapi/phpdbg/phpdbg.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg.cosapi/phpdbg/phpdbg.losapi/phpdbg/phpdbg_prompt.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_prompt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg.c -o sapi/phpdbg/phpdbg.lo sapi/phpdbg/phpdbg\_prompt.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_prompt.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_prompt.cosapi/phpdbg/phpdbgprompt.losapi/phpdbg/phpdbg_help.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_help.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_prompt.c -o sapi/phpdbg/phpdbg_prompt.lo sapi/phpdbg/phpdbg\_help.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_help.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_help.cosapi/phpdbg/phpdbghelp.losapi/phpdbg/phpdbg_break.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_break.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_help.c -o sapi/phpdbg/phpdbg_help.lo sapi/phpdbg/phpdbg\_break.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_break.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_break.cosapi/phpdbg/phpdbgbreak.losapi/phpdbg/phpdbg_print.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_print.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_break.c -o sapi/phpdbg/phpdbg_break.lo sapi/phpdbg/phpdbg\_print.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_print.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_print.cosapi/phpdbg/phpdbgprint.losapi/phpdbg/phpdbg_bp.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_bp.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_print.c -o sapi/phpdbg/phpdbg_print.lo sapi/phpdbg/phpdbg\_bp.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_bp.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_bp.cosapi/phpdbg/phpdbgbp.losapi/phpdbg/phpdbg_opcode.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_opcode.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_bp.c -o sapi/phpdbg/phpdbg_bp.lo sapi/phpdbg/phpdbg\_opcode.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_opcode.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_opcode.cosapi/phpdbg/phpdbgopcode.losapi/phpdbg/phpdbg_list.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_list.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_opcode.c -o sapi/phpdbg/phpdbg_opcode.lo sapi/phpdbg/phpdbg\_list.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_list.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_list.cosapi/phpdbg/phpdbglist.losapi/phpdbg/phpdbg_utils.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_utils.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_list.c -o sapi/phpdbg/phpdbg_list.lo sapi/phpdbg/phpdbg\_utils.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_utils.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_utils.cosapi/phpdbg/phpdbgutils.losapi/phpdbg/phpdbg_info.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_info.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_utils.c -o sapi/phpdbg/phpdbg_utils.lo sapi/phpdbg/phpdbg\_info.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_info.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_info.cosapi/phpdbg/phpdbginfo.losapi/phpdbg/phpdbg_cmd.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_cmd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_info.c -o sapi/phpdbg/phpdbg_info.lo sapi/phpdbg/phpdbg\_cmd.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_cmd.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_cmd.cosapi/phpdbg/phpdbgcmd.losapi/phpdbg/phpdbg_set.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_set.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_cmd.c -o sapi/phpdbg/phpdbg_cmd.lo sapi/phpdbg/phpdbg\_set.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_set.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_set.cosapi/phpdbg/phpdbgset.losapi/phpdbg/phpdbg_frame.lo:/tmp/php5.5.7/sapi/phpdbg/phpdbg_frame.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_set.c -o sapi/phpdbg/phpdbg_set.lo sapi/phpdbg/phpdbg\_frame.lo: /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_frame.c (LIBTOOL) --mode=compile $(CC) -D_GNU_SOURCE -Isapi/phpdbg/ -I/tmp/php-5.5.7/sapi/phpdbg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/sapi/phpdbg/phpdbg_frame.cosapi/phpdbg/phpdbgframe.loext/date/php_date.lo:/tmp/php5.5.7/ext/date/php_date.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/sapi/phpdbg/phpdbg\_frame.c -o sapi/phpdbg/phpdbg_frame.lo ext/date/php\_date.lo: /tmp/php-5.5.7/ext/date/php\_date.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/php_date.coext/date/phpdate.loext/date/lib/astro.lo:/tmp/php5.5.7/ext/date/lib/astro.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/php\_date.c -o ext/date/php_date.lo ext/date/lib/astro.lo: /tmp/php-5.5.7/ext/date/lib/astro.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/astro.coext/date/lib/astro.loext/date/lib/dow.lo:/tmp/php5.5.7/ext/date/lib/dow.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/astro.c -o ext/date/lib/astro.lo ext/date/lib/dow.lo: /tmp/php-5.5.7/ext/date/lib/dow.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/dow.coext/date/lib/dow.loext/date/lib/parse_date.lo:/tmp/php5.5.7/ext/date/lib/parse_date.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/dow.c -o ext/date/lib/dow.lo ext/date/lib/parse\_date.lo: /tmp/php-5.5.7/ext/date/lib/parse\_date.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_date.coext/date/lib/parsedate.loext/date/lib/parse_tz.lo:/tmp/php5.5.7/ext/date/lib/parse_tz.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_date.c -o ext/date/lib/parse_date.lo ext/date/lib/parse\_tz.lo: /tmp/php-5.5.7/ext/date/lib/parse\_tz.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_tz.coext/date/lib/parsetz.loext/date/lib/timelib.lo:/tmp/php5.5.7/ext/date/lib/timelib.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_tz.c -o ext/date/lib/parse_tz.lo ext/date/lib/timelib.lo: /tmp/php-5.5.7/ext/date/lib/timelib.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/timelib.coext/date/lib/timelib.loext/date/lib/tm2unixtime.lo:/tmp/php5.5.7/ext/date/lib/tm2unixtime.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/timelib.c -o ext/date/lib/timelib.lo ext/date/lib/tm2unixtime.lo: /tmp/php-5.5.7/ext/date/lib/tm2unixtime.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/tm2unixtime.coext/date/lib/tm2unixtime.loext/date/lib/unixtime2tm.lo:/tmp/php5.5.7/ext/date/lib/unixtime2tm.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/tm2unixtime.c -o ext/date/lib/tm2unixtime.lo ext/date/lib/unixtime2tm.lo: /tmp/php-5.5.7/ext/date/lib/unixtime2tm.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/unixtime2tm.coext/date/lib/unixtime2tm.loext/date/lib/parse_iso_intervals.lo:/tmp/php5.5.7/ext/date/lib/parse_iso_intervals.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/unixtime2tm.c -o ext/date/lib/unixtime2tm.lo ext/date/lib/parse\_iso\_intervals.lo: /tmp/php-5.5.7/ext/date/lib/parse\_iso\_intervals.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/date/lib/parse_iso_intervals.coext/date/lib/parse_isointervals.loext/date/lib/interval.lo:/tmp/php5.5.7/ext/date/lib/interval.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/parse\_iso\_intervals.c -o ext/date/lib/parse\_iso_intervals.lo ext/date/lib/interval.lo: /tmp/php-5.5.7/ext/date/lib/interval.c (LIBTOOL) --mode=compile $(CC) -Iext/date/lib -Iext/date/ -I/tmp/php-5.5.7/ext/date/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/date/lib/interval.coext/date/lib/interval.loext/ereg/ereg.lo:/tmp/php5.5.7/ext/ereg/ereg.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/date/lib/interval.c -o ext/date/lib/interval.lo ext/ereg/ereg.lo: /tmp/php-5.5.7/ext/ereg/ereg.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/ereg.coext/ereg/ereg.loext/ereg/regex/regcomp.lo:/tmp/php5.5.7/ext/ereg/regex/regcomp.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/ereg.c -o ext/ereg/ereg.lo ext/ereg/regex/regcomp.lo: /tmp/php-5.5.7/ext/ereg/regex/regcomp.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regcomp.coext/ereg/regex/regcomp.loext/ereg/regex/regexec.lo:/tmp/php5.5.7/ext/ereg/regex/regexec.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regcomp.c -o ext/ereg/regex/regcomp.lo ext/ereg/regex/regexec.lo: /tmp/php-5.5.7/ext/ereg/regex/regexec.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regexec.coext/ereg/regex/regexec.loext/ereg/regex/regerror.lo:/tmp/php5.5.7/ext/ereg/regex/regerror.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regexec.c -o ext/ereg/regex/regexec.lo ext/ereg/regex/regerror.lo: /tmp/php-5.5.7/ext/ereg/regex/regerror.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regerror.coext/ereg/regex/regerror.loext/ereg/regex/regfree.lo:/tmp/php5.5.7/ext/ereg/regex/regfree.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regerror.c -o ext/ereg/regex/regerror.lo ext/ereg/regex/regfree.lo: /tmp/php-5.5.7/ext/ereg/regex/regfree.c (LIBTOOL) --mode=compile $(CC) -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/tmp/php-5.5.7/ext/ereg/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/ereg/regex/regfree.coext/ereg/regex/regfree.loext/pcre/pcrelib/pcre_chartables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_chartables.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/ereg/regex/regfree.c -o ext/ereg/regex/regfree.lo ext/pcre/pcrelib/pcre\_chartables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_chartables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_chartables.coext/pcre/pcrelib/pcrechartables.loext/pcre/pcrelib/pcre_ucd.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ucd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_chartables.c -o ext/pcre/pcrelib/pcre_chartables.lo ext/pcre/pcrelib/pcre\_ucd.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ucd.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ucd.coext/pcre/pcrelib/pcreucd.loext/pcre/pcrelib/pcre_compile.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_compile.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ucd.c -o ext/pcre/pcrelib/pcre_ucd.lo ext/pcre/pcrelib/pcre\_compile.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_compile.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_compile.coext/pcre/pcrelib/pcrecompile.loext/pcre/pcrelib/pcre_config.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_config.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_compile.c -o ext/pcre/pcrelib/pcre_compile.lo ext/pcre/pcrelib/pcre\_config.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_config.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_config.coext/pcre/pcrelib/pcreconfig.loext/pcre/pcrelib/pcre_exec.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_exec.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_config.c -o ext/pcre/pcrelib/pcre_config.lo ext/pcre/pcrelib/pcre\_exec.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_exec.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_exec.coext/pcre/pcrelib/pcreexec.loext/pcre/pcrelib/pcre_fullinfo.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_fullinfo.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_exec.c -o ext/pcre/pcrelib/pcre_exec.lo ext/pcre/pcrelib/pcre\_fullinfo.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_fullinfo.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_fullinfo.coext/pcre/pcrelib/pcrefullinfo.loext/pcre/pcrelib/pcre_get.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_get.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_fullinfo.c -o ext/pcre/pcrelib/pcre_fullinfo.lo ext/pcre/pcrelib/pcre\_get.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_get.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_get.coext/pcre/pcrelib/pcreget.loext/pcre/pcrelib/pcre_globals.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_globals.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_get.c -o ext/pcre/pcrelib/pcre_get.lo ext/pcre/pcrelib/pcre\_globals.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_globals.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_globals.coext/pcre/pcrelib/pcreglobals.loext/pcre/pcrelib/pcre_maketables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_maketables.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_globals.c -o ext/pcre/pcrelib/pcre_globals.lo ext/pcre/pcrelib/pcre\_maketables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_maketables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_maketables.coext/pcre/pcrelib/pcremaketables.loext/pcre/pcrelib/pcre_newline.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_newline.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_maketables.c -o ext/pcre/pcrelib/pcre_maketables.lo ext/pcre/pcrelib/pcre\_newline.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_newline.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_newline.coext/pcre/pcrelib/pcrenewline.loext/pcre/pcrelib/pcre_ord2utf8.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ord2utf8.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_newline.c -o ext/pcre/pcrelib/pcre_newline.lo ext/pcre/pcrelib/pcre\_ord2utf8.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ord2utf8.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_ord2utf8.coext/pcre/pcrelib/pcreord2utf8.loext/pcre/pcrelib/pcre_refcount.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_refcount.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_ord2utf8.c -o ext/pcre/pcrelib/pcre_ord2utf8.lo ext/pcre/pcrelib/pcre\_refcount.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_refcount.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_refcount.coext/pcre/pcrelib/pcrerefcount.loext/pcre/pcrelib/pcre_study.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_study.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_refcount.c -o ext/pcre/pcrelib/pcre_refcount.lo ext/pcre/pcrelib/pcre\_study.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_study.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_study.coext/pcre/pcrelib/pcrestudy.loext/pcre/pcrelib/pcre_tables.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_tables.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_study.c -o ext/pcre/pcrelib/pcre_study.lo ext/pcre/pcrelib/pcre\_tables.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_tables.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_tables.coext/pcre/pcrelib/pcretables.loext/pcre/pcrelib/pcre_valid_utf8.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_valid_utf8.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_tables.c -o ext/pcre/pcrelib/pcre_tables.lo ext/pcre/pcrelib/pcre\_valid\_utf8.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_valid\_utf8.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_valid_utf8.coext/pcre/pcrelib/pcre_validutf8.loext/pcre/pcrelib/pcre_version.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_version.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_valid\_utf8.c -o ext/pcre/pcrelib/pcre\_valid_utf8.lo ext/pcre/pcrelib/pcre\_version.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_version.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_version.coext/pcre/pcrelib/pcreversion.loext/pcre/pcrelib/pcre_xclass.lo:/tmp/php5.5.7/ext/pcre/pcrelib/pcre_xclass.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_version.c -o ext/pcre/pcrelib/pcre_version.lo ext/pcre/pcrelib/pcre\_xclass.lo: /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_xclass.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/pcrelib/pcre_xclass.coext/pcre/pcrelib/pcrexclass.loext/pcre/php_pcre.lo:/tmp/php5.5.7/ext/pcre/php_pcre.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/pcrelib/pcre\_xclass.c -o ext/pcre/pcrelib/pcre_xclass.lo ext/pcre/php\_pcre.lo: /tmp/php-5.5.7/ext/pcre/php\_pcre.c (LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I/tmp/php-5.5.7/ext/pcre/pcrelib -Iext/pcre/ -I/tmp/php-5.5.7/ext/pcre/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/pcre/php_pcre.coext/pcre/phppcre.loext/reflection/php_reflection.lo:/tmp/php5.5.7/ext/reflection/php_reflection.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/pcre/php\_pcre.c -o ext/pcre/php_pcre.lo ext/reflection/php\_reflection.lo: /tmp/php-5.5.7/ext/reflection/php\_reflection.c (LIBTOOL) --mode=compile $(CC) -Iext/reflection/ -I/tmp/php-5.5.7/ext/reflection/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/reflection/php_reflection.coext/reflection/phpreflection.loext/spl/php_spl.lo:/tmp/php5.5.7/ext/spl/php_spl.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/reflection/php\_reflection.c -o ext/reflection/php_reflection.lo ext/spl/php\_spl.lo: /tmp/php-5.5.7/ext/spl/php\_spl.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/php_spl.coext/spl/phpspl.loext/spl/spl_functions.lo:/tmp/php5.5.7/ext/spl/spl_functions.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/php\_spl.c -o ext/spl/php_spl.lo ext/spl/spl\_functions.lo: /tmp/php-5.5.7/ext/spl/spl\_functions.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_functions.coext/spl/splfunctions.loext/spl/spl_engine.lo:/tmp/php5.5.7/ext/spl/spl_engine.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_functions.c -o ext/spl/spl_functions.lo ext/spl/spl\_engine.lo: /tmp/php-5.5.7/ext/spl/spl\_engine.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_engine.coext/spl/splengine.loext/spl/spl_iterators.lo:/tmp/php5.5.7/ext/spl/spl_iterators.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_engine.c -o ext/spl/spl_engine.lo ext/spl/spl\_iterators.lo: /tmp/php-5.5.7/ext/spl/spl\_iterators.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_iterators.coext/spl/spliterators.loext/spl/spl_array.lo:/tmp/php5.5.7/ext/spl/spl_array.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_iterators.c -o ext/spl/spl_iterators.lo ext/spl/spl\_array.lo: /tmp/php-5.5.7/ext/spl/spl\_array.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_array.coext/spl/splarray.loext/spl/spl_directory.lo:/tmp/php5.5.7/ext/spl/spl_directory.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_array.c -o ext/spl/spl_array.lo ext/spl/spl\_directory.lo: /tmp/php-5.5.7/ext/spl/spl\_directory.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_directory.coext/spl/spldirectory.loext/spl/spl_exceptions.lo:/tmp/php5.5.7/ext/spl/spl_exceptions.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_directory.c -o ext/spl/spl_directory.lo ext/spl/spl\_exceptions.lo: /tmp/php-5.5.7/ext/spl/spl\_exceptions.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_exceptions.coext/spl/splexceptions.loext/spl/spl_observer.lo:/tmp/php5.5.7/ext/spl/spl_observer.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_exceptions.c -o ext/spl/spl_exceptions.lo ext/spl/spl\_observer.lo: /tmp/php-5.5.7/ext/spl/spl\_observer.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_observer.coext/spl/splobserver.loext/spl/spl_dllist.lo:/tmp/php5.5.7/ext/spl/spl_dllist.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_observer.c -o ext/spl/spl_observer.lo ext/spl/spl\_dllist.lo: /tmp/php-5.5.7/ext/spl/spl\_dllist.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_dllist.coext/spl/spldllist.loext/spl/spl_heap.lo:/tmp/php5.5.7/ext/spl/spl_heap.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_dllist.c -o ext/spl/spl_dllist.lo ext/spl/spl\_heap.lo: /tmp/php-5.5.7/ext/spl/spl\_heap.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_heap.coext/spl/splheap.loext/spl/spl_fixedarray.lo:/tmp/php5.5.7/ext/spl/spl_fixedarray.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_heap.c -o ext/spl/spl_heap.lo ext/spl/spl\_fixedarray.lo: /tmp/php-5.5.7/ext/spl/spl\_fixedarray.c (LIBTOOL) --mode=compile $(CC) -Iext/spl/ -I/tmp/php-5.5.7/ext/spl/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/spl/spl_fixedarray.coext/spl/splfixedarray.loext/standard/crypt_freesec.lo:/tmp/php5.5.7/ext/standard/crypt_freesec.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/spl/spl\_fixedarray.c -o ext/spl/spl_fixedarray.lo ext/standard/crypt\_freesec.lo: /tmp/php-5.5.7/ext/standard/crypt\_freesec.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_freesec.coext/standard/cryptfreesec.loext/standard/crypt_blowfish.lo:/tmp/php5.5.7/ext/standard/crypt_blowfish.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_freesec.c -o ext/standard/crypt_freesec.lo ext/standard/crypt\_blowfish.lo: /tmp/php-5.5.7/ext/standard/crypt\_blowfish.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_blowfish.coext/standard/cryptblowfish.loext/standard/crypt_sha512.lo:/tmp/php5.5.7/ext/standard/crypt_sha512.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_blowfish.c -o ext/standard/crypt_blowfish.lo ext/standard/crypt\_sha512.lo: /tmp/php-5.5.7/ext/standard/crypt\_sha512.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_sha512.coext/standard/cryptsha512.loext/standard/crypt_sha256.lo:/tmp/php5.5.7/ext/standard/crypt_sha256.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_sha512.c -o ext/standard/crypt_sha512.lo ext/standard/crypt\_sha256.lo: /tmp/php-5.5.7/ext/standard/crypt\_sha256.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/crypt_sha256.coext/standard/cryptsha256.loext/standard/php_crypt_r.lo:/tmp/php5.5.7/ext/standard/php_crypt_r.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt\_sha256.c -o ext/standard/crypt_sha256.lo ext/standard/php\_crypt\_r.lo: /tmp/php-5.5.7/ext/standard/php\_crypt\_r.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/php_crypt_r.coext/standard/php_cryptr.loext/standard/array.lo:/tmp/php5.5.7/ext/standard/array.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/php\_crypt\_r.c -o ext/standard/php\_crypt_r.lo ext/standard/array.lo: /tmp/php-5.5.7/ext/standard/array.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/array.coext/standard/array.loext/standard/base64.lo:/tmp/php5.5.7/ext/standard/base64.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/array.c -o ext/standard/array.lo ext/standard/base64.lo: /tmp/php-5.5.7/ext/standard/base64.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/base64.coext/standard/base64.loext/standard/basic_functions.lo:/tmp/php5.5.7/ext/standard/basic_functions.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/base64.c -o ext/standard/base64.lo ext/standard/basic\_functions.lo: /tmp/php-5.5.7/ext/standard/basic\_functions.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/basic_functions.coext/standard/basicfunctions.loext/standard/browscap.lo:/tmp/php5.5.7/ext/standard/browscap.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/basic\_functions.c -o ext/standard/basic_functions.lo ext/standard/browscap.lo: /tmp/php-5.5.7/ext/standard/browscap.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/browscap.coext/standard/browscap.loext/standard/crc32.lo:/tmp/php5.5.7/ext/standard/crc32.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/browscap.c -o ext/standard/browscap.lo ext/standard/crc32.lo: /tmp/php-5.5.7/ext/standard/crc32.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/crc32.coext/standard/crc32.loext/standard/crypt.lo:/tmp/php5.5.7/ext/standard/crypt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crc32.c -o ext/standard/crc32.lo ext/standard/crypt.lo: /tmp/php-5.5.7/ext/standard/crypt.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/crypt.coext/standard/crypt.loext/standard/cyr_convert.lo:/tmp/php5.5.7/ext/standard/cyr_convert.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/crypt.c -o ext/standard/crypt.lo ext/standard/cyr\_convert.lo: /tmp/php-5.5.7/ext/standard/cyr\_convert.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/cyr_convert.coext/standard/cyrconvert.loext/standard/datetime.lo:/tmp/php5.5.7/ext/standard/datetime.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/cyr\_convert.c -o ext/standard/cyr_convert.lo ext/standard/datetime.lo: /tmp/php-5.5.7/ext/standard/datetime.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/datetime.coext/standard/datetime.loext/standard/dir.lo:/tmp/php5.5.7/ext/standard/dir.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/datetime.c -o ext/standard/datetime.lo ext/standard/dir.lo: /tmp/php-5.5.7/ext/standard/dir.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dir.coext/standard/dir.loext/standard/dl.lo:/tmp/php5.5.7/ext/standard/dl.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dir.c -o ext/standard/dir.lo ext/standard/dl.lo: /tmp/php-5.5.7/ext/standard/dl.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dl.coext/standard/dl.loext/standard/dns.lo:/tmp/php5.5.7/ext/standard/dns.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dl.c -o ext/standard/dl.lo ext/standard/dns.lo: /tmp/php-5.5.7/ext/standard/dns.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/dns.coext/standard/dns.loext/standard/exec.lo:/tmp/php5.5.7/ext/standard/exec.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/dns.c -o ext/standard/dns.lo ext/standard/exec.lo: /tmp/php-5.5.7/ext/standard/exec.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/exec.coext/standard/exec.loext/standard/file.lo:/tmp/php5.5.7/ext/standard/file.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/exec.c -o ext/standard/exec.lo ext/standard/file.lo: /tmp/php-5.5.7/ext/standard/file.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/file.coext/standard/file.loext/standard/filestat.lo:/tmp/php5.5.7/ext/standard/filestat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/file.c -o ext/standard/file.lo ext/standard/filestat.lo: /tmp/php-5.5.7/ext/standard/filestat.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/filestat.coext/standard/filestat.loext/standard/flock_compat.lo:/tmp/php5.5.7/ext/standard/flock_compat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/filestat.c -o ext/standard/filestat.lo ext/standard/flock\_compat.lo: /tmp/php-5.5.7/ext/standard/flock\_compat.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/flock_compat.coext/standard/flockcompat.loext/standard/formatted_print.lo:/tmp/php5.5.7/ext/standard/formatted_print.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/flock\_compat.c -o ext/standard/flock_compat.lo ext/standard/formatted\_print.lo: /tmp/php-5.5.7/ext/standard/formatted\_print.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/formatted_print.coext/standard/formattedprint.loext/standard/fsock.lo:/tmp/php5.5.7/ext/standard/fsock.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/formatted\_print.c -o ext/standard/formatted_print.lo ext/standard/fsock.lo: /tmp/php-5.5.7/ext/standard/fsock.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/fsock.coext/standard/fsock.loext/standard/head.lo:/tmp/php5.5.7/ext/standard/head.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/fsock.c -o ext/standard/fsock.lo ext/standard/head.lo: /tmp/php-5.5.7/ext/standard/head.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/head.coext/standard/head.loext/standard/html.lo:/tmp/php5.5.7/ext/standard/html.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/head.c -o ext/standard/head.lo ext/standard/html.lo: /tmp/php-5.5.7/ext/standard/html.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/html.coext/standard/html.loext/standard/image.lo:/tmp/php5.5.7/ext/standard/image.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/html.c -o ext/standard/html.lo ext/standard/image.lo: /tmp/php-5.5.7/ext/standard/image.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/image.coext/standard/image.loext/standard/info.lo:/tmp/php5.5.7/ext/standard/info.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/image.c -o ext/standard/image.lo ext/standard/info.lo: /tmp/php-5.5.7/ext/standard/info.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/info.coext/standard/info.loext/standard/iptc.lo:/tmp/php5.5.7/ext/standard/iptc.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/info.c -o ext/standard/info.lo ext/standard/iptc.lo: /tmp/php-5.5.7/ext/standard/iptc.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/iptc.coext/standard/iptc.loext/standard/lcg.lo:/tmp/php5.5.7/ext/standard/lcg.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/iptc.c -o ext/standard/iptc.lo ext/standard/lcg.lo: /tmp/php-5.5.7/ext/standard/lcg.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/lcg.coext/standard/lcg.loext/standard/link.lo:/tmp/php5.5.7/ext/standard/link.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/lcg.c -o ext/standard/lcg.lo ext/standard/link.lo: /tmp/php-5.5.7/ext/standard/link.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/link.coext/standard/link.loext/standard/mail.lo:/tmp/php5.5.7/ext/standard/mail.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/link.c -o ext/standard/link.lo ext/standard/mail.lo: /tmp/php-5.5.7/ext/standard/mail.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/mail.coext/standard/mail.loext/standard/math.lo:/tmp/php5.5.7/ext/standard/math.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/mail.c -o ext/standard/mail.lo ext/standard/math.lo: /tmp/php-5.5.7/ext/standard/math.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/math.coext/standard/math.loext/standard/md5.lo:/tmp/php5.5.7/ext/standard/md5.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/math.c -o ext/standard/math.lo ext/standard/md5.lo: /tmp/php-5.5.7/ext/standard/md5.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/md5.coext/standard/md5.loext/standard/metaphone.lo:/tmp/php5.5.7/ext/standard/metaphone.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/md5.c -o ext/standard/md5.lo ext/standard/metaphone.lo: /tmp/php-5.5.7/ext/standard/metaphone.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/metaphone.coext/standard/metaphone.loext/standard/microtime.lo:/tmp/php5.5.7/ext/standard/microtime.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/metaphone.c -o ext/standard/metaphone.lo ext/standard/microtime.lo: /tmp/php-5.5.7/ext/standard/microtime.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/microtime.coext/standard/microtime.loext/standard/pack.lo:/tmp/php5.5.7/ext/standard/pack.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/microtime.c -o ext/standard/microtime.lo ext/standard/pack.lo: /tmp/php-5.5.7/ext/standard/pack.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/pack.coext/standard/pack.loext/standard/pageinfo.lo:/tmp/php5.5.7/ext/standard/pageinfo.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/pack.c -o ext/standard/pack.lo ext/standard/pageinfo.lo: /tmp/php-5.5.7/ext/standard/pageinfo.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/pageinfo.coext/standard/pageinfo.loext/standard/quot_print.lo:/tmp/php5.5.7/ext/standard/quot_print.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/pageinfo.c -o ext/standard/pageinfo.lo ext/standard/quot\_print.lo: /tmp/php-5.5.7/ext/standard/quot\_print.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/quot_print.coext/standard/quotprint.loext/standard/rand.lo:/tmp/php5.5.7/ext/standard/rand.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/quot\_print.c -o ext/standard/quot_print.lo ext/standard/rand.lo: /tmp/php-5.5.7/ext/standard/rand.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/rand.coext/standard/rand.loext/standard/soundex.lo:/tmp/php5.5.7/ext/standard/soundex.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/rand.c -o ext/standard/rand.lo ext/standard/soundex.lo: /tmp/php-5.5.7/ext/standard/soundex.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/soundex.coext/standard/soundex.loext/standard/string.lo:/tmp/php5.5.7/ext/standard/string.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/soundex.c -o ext/standard/soundex.lo ext/standard/string.lo: /tmp/php-5.5.7/ext/standard/string.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/string.coext/standard/string.loext/standard/scanf.lo:/tmp/php5.5.7/ext/standard/scanf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/string.c -o ext/standard/string.lo ext/standard/scanf.lo: /tmp/php-5.5.7/ext/standard/scanf.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/scanf.coext/standard/scanf.loext/standard/syslog.lo:/tmp/php5.5.7/ext/standard/syslog.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/scanf.c -o ext/standard/scanf.lo ext/standard/syslog.lo: /tmp/php-5.5.7/ext/standard/syslog.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/syslog.coext/standard/syslog.loext/standard/type.lo:/tmp/php5.5.7/ext/standard/type.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/syslog.c -o ext/standard/syslog.lo ext/standard/type.lo: /tmp/php-5.5.7/ext/standard/type.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/type.coext/standard/type.loext/standard/uniqid.lo:/tmp/php5.5.7/ext/standard/uniqid.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/type.c -o ext/standard/type.lo ext/standard/uniqid.lo: /tmp/php-5.5.7/ext/standard/uniqid.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/uniqid.coext/standard/uniqid.loext/standard/url.lo:/tmp/php5.5.7/ext/standard/url.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/uniqid.c -o ext/standard/uniqid.lo ext/standard/url.lo: /tmp/php-5.5.7/ext/standard/url.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/url.coext/standard/url.loext/standard/var.lo:/tmp/php5.5.7/ext/standard/var.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/url.c -o ext/standard/url.lo ext/standard/var.lo: /tmp/php-5.5.7/ext/standard/var.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/var.coext/standard/var.loext/standard/versioning.lo:/tmp/php5.5.7/ext/standard/versioning.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/var.c -o ext/standard/var.lo ext/standard/versioning.lo: /tmp/php-5.5.7/ext/standard/versioning.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/versioning.coext/standard/versioning.loext/standard/assert.lo:/tmp/php5.5.7/ext/standard/assert.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/versioning.c -o ext/standard/versioning.lo ext/standard/assert.lo: /tmp/php-5.5.7/ext/standard/assert.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/assert.coext/standard/assert.loext/standard/strnatcmp.lo:/tmp/php5.5.7/ext/standard/strnatcmp.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/assert.c -o ext/standard/assert.lo ext/standard/strnatcmp.lo: /tmp/php-5.5.7/ext/standard/strnatcmp.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/strnatcmp.coext/standard/strnatcmp.loext/standard/levenshtein.lo:/tmp/php5.5.7/ext/standard/levenshtein.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/strnatcmp.c -o ext/standard/strnatcmp.lo ext/standard/levenshtein.lo: /tmp/php-5.5.7/ext/standard/levenshtein.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/levenshtein.coext/standard/levenshtein.loext/standard/incomplete_class.lo:/tmp/php5.5.7/ext/standard/incomplete_class.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/levenshtein.c -o ext/standard/levenshtein.lo ext/standard/incomplete\_class.lo: /tmp/php-5.5.7/ext/standard/incomplete\_class.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/incomplete_class.coext/standard/incompleteclass.loext/standard/url_scanner_ex.lo:/tmp/php5.5.7/ext/standard/url_scanner_ex.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/incomplete\_class.c -o ext/standard/incomplete_class.lo ext/standard/url\_scanner\_ex.lo: /tmp/php-5.5.7/ext/standard/url\_scanner\_ex.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/url_scanner_ex.coext/standard/url_scannerex.loext/standard/ftp_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/ftp_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/url\_scanner\_ex.c -o ext/standard/url\_scanner_ex.lo ext/standard/ftp\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/ftp\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/ftp_fopen_wrapper.coext/standard/ftp_fopenwrapper.loext/standard/http_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/http_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/ftp\_fopen\_wrapper.c -o ext/standard/ftp\_fopen_wrapper.lo ext/standard/http\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/http\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/http_fopen_wrapper.coext/standard/http_fopenwrapper.loext/standard/php_fopen_wrapper.lo:/tmp/php5.5.7/ext/standard/php_fopen_wrapper.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/http\_fopen\_wrapper.c -o ext/standard/http\_fopen_wrapper.lo ext/standard/php\_fopen\_wrapper.lo: /tmp/php-5.5.7/ext/standard/php\_fopen\_wrapper.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/php_fopen_wrapper.coext/standard/php_fopenwrapper.loext/standard/credits.lo:/tmp/php5.5.7/ext/standard/credits.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/php\_fopen\_wrapper.c -o ext/standard/php\_fopen_wrapper.lo ext/standard/credits.lo: /tmp/php-5.5.7/ext/standard/credits.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/credits.coext/standard/credits.loext/standard/css.lo:/tmp/php5.5.7/ext/standard/css.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/credits.c -o ext/standard/credits.lo ext/standard/css.lo: /tmp/php-5.5.7/ext/standard/css.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/css.coext/standard/css.loext/standard/var_unserializer.lo:/tmp/php5.5.7/ext/standard/var_unserializer.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/css.c -o ext/standard/css.lo ext/standard/var\_unserializer.lo: /tmp/php-5.5.7/ext/standard/var\_unserializer.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/var_unserializer.coext/standard/varunserializer.loext/standard/ftok.lo:/tmp/php5.5.7/ext/standard/ftok.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/var\_unserializer.c -o ext/standard/var_unserializer.lo ext/standard/ftok.lo: /tmp/php-5.5.7/ext/standard/ftok.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/ftok.coext/standard/ftok.loext/standard/sha1.lo:/tmp/php5.5.7/ext/standard/sha1.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/ftok.c -o ext/standard/ftok.lo ext/standard/sha1.lo: /tmp/php-5.5.7/ext/standard/sha1.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/sha1.coext/standard/sha1.loext/standard/user_filters.lo:/tmp/php5.5.7/ext/standard/user_filters.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/sha1.c -o ext/standard/sha1.lo ext/standard/user\_filters.lo: /tmp/php-5.5.7/ext/standard/user\_filters.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/user_filters.coext/standard/userfilters.loext/standard/uuencode.lo:/tmp/php5.5.7/ext/standard/uuencode.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/user\_filters.c -o ext/standard/user_filters.lo ext/standard/uuencode.lo: /tmp/php-5.5.7/ext/standard/uuencode.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/uuencode.coext/standard/uuencode.loext/standard/filters.lo:/tmp/php5.5.7/ext/standard/filters.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/uuencode.c -o ext/standard/uuencode.lo ext/standard/filters.lo: /tmp/php-5.5.7/ext/standard/filters.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/filters.coext/standard/filters.loext/standard/proc_open.lo:/tmp/php5.5.7/ext/standard/proc_open.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/filters.c -o ext/standard/filters.lo ext/standard/proc\_open.lo: /tmp/php-5.5.7/ext/standard/proc\_open.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/ext/standard/proc_open.coext/standard/procopen.loext/standard/streamsfuncs.lo:/tmp/php5.5.7/ext/standard/streamsfuncs.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/ext/standard/proc\_open.c -o ext/standard/proc_open.lo ext/standard/streamsfuncs.lo: /tmp/php-5.5.7/ext/standard/streamsfuncs.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/streamsfuncs.coext/standard/streamsfuncs.loext/standard/http.lo:/tmp/php5.5.7/ext/standard/http.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/streamsfuncs.c -o ext/standard/streamsfuncs.lo ext/standard/http.lo: /tmp/php-5.5.7/ext/standard/http.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/http.coext/standard/http.loext/standard/password.lo:/tmp/php5.5.7/ext/standard/password.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/http.c -o ext/standard/http.lo ext/standard/password.lo: /tmp/php-5.5.7/ext/standard/password.c (LIBTOOL) --mode=compile $(CC) -Iext/standard/ -I/tmp/php-5.5.7/ext/standard/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/ext/standard/password.coext/standard/password.loTSRM/TSRM.lo:/tmp/php5.5.7/TSRM/TSRM.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/ext/standard/password.c -o ext/standard/password.lo TSRM/TSRM.lo: /tmp/php-5.5.7/TSRM/TSRM.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/TSRM/TSRM.coTSRM/TSRM.loTSRM/tsrm_strtok_r.lo:/tmp/php5.5.7/TSRM/tsrm_strtok_r.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/TSRM/TSRM.c -o TSRM/TSRM.lo TSRM/tsrm\_strtok\_r.lo: /tmp/php-5.5.7/TSRM/tsrm\_strtok\_r.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/TSRM/tsrm_strtok_r.coTSRM/tsrm_strtokr.loTSRM/tsrm_virtual_cwd.lo:/tmp/php5.5.7/TSRM/tsrm_virtual_cwd.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/TSRM/tsrm\_strtok\_r.c -o TSRM/tsrm\_strtok_r.lo TSRM/tsrm\_virtual\_cwd.lo: /tmp/php-5.5.7/TSRM/tsrm\_virtual\_cwd.c (LIBTOOL) --mode=compile $(CC) -ITSRM/ -I/tmp/php-5.5.7/TSRM/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/TSRM/tsrm_virtual_cwd.coTSRM/tsrm_virtualcwd.lomain/main.lo:/tmp/php5.5.7/main/main.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/TSRM/tsrm\_virtual\_cwd.c -o TSRM/tsrm\_virtual_cwd.lo main/main.lo: /tmp/php-5.5.7/main/main.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/main.comain/main.lomain/snprintf.lo:/tmp/php5.5.7/main/snprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/main.c -o main/main.lo main/snprintf.lo: /tmp/php-5.5.7/main/snprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/snprintf.comain/snprintf.lomain/spprintf.lo:/tmp/php5.5.7/main/spprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/snprintf.c -o main/snprintf.lo main/spprintf.lo: /tmp/php-5.5.7/main/spprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/spprintf.comain/spprintf.lomain/php_sprintf.lo:/tmp/php5.5.7/main/php_sprintf.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/spprintf.c -o main/spprintf.lo main/php\_sprintf.lo: /tmp/php-5.5.7/main/php\_sprintf.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_sprintf.comain/phpsprintf.lomain/fopen_wrappers.lo:/tmp/php5.5.7/main/fopen_wrappers.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_sprintf.c -o main/php_sprintf.lo main/fopen\_wrappers.lo: /tmp/php-5.5.7/main/fopen\_wrappers.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/fopen_wrappers.comain/fopenwrappers.lomain/alloca.lo:/tmp/php5.5.7/main/alloca.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/fopen\_wrappers.c -o main/fopen_wrappers.lo main/alloca.lo: /tmp/php-5.5.7/main/alloca.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/alloca.comain/alloca.lomain/php_scandir.lo:/tmp/php5.5.7/main/php_scandir.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/alloca.c -o main/alloca.lo main/php\_scandir.lo: /tmp/php-5.5.7/main/php\_scandir.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_scandir.comain/phpscandir.lomain/php_ini.lo:/tmp/php5.5.7/main/php_ini.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_scandir.c -o main/php_scandir.lo main/php\_ini.lo: /tmp/php-5.5.7/main/php\_ini.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_ini.comain/phpini.lomain/SAPI.lo:/tmp/php5.5.7/main/SAPI.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_ini.c -o main/php_ini.lo main/SAPI.lo: /tmp/php-5.5.7/main/SAPI.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/SAPI.comain/SAPI.lomain/rfc1867.lo:/tmp/php5.5.7/main/rfc1867.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/SAPI.c -o main/SAPI.lo main/rfc1867.lo: /tmp/php-5.5.7/main/rfc1867.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/rfc1867.comain/rfc1867.lomain/php_content_types.lo:/tmp/php5.5.7/main/php_content_types.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/rfc1867.c -o main/rfc1867.lo main/php\_content\_types.lo: /tmp/php-5.5.7/main/php\_content\_types.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_content_types.comain/php_contenttypes.lomain/strlcpy.lo:/tmp/php5.5.7/main/strlcpy.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_content\_types.c -o main/php\_content_types.lo main/strlcpy.lo: /tmp/php-5.5.7/main/strlcpy.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/strlcpy.comain/strlcpy.lomain/strlcat.lo:/tmp/php5.5.7/main/strlcat.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/strlcpy.c -o main/strlcpy.lo main/strlcat.lo: /tmp/php-5.5.7/main/strlcat.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/strlcat.comain/strlcat.lomain/mergesort.lo:/tmp/php5.5.7/main/mergesort.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/strlcat.c -o main/strlcat.lo main/mergesort.lo: /tmp/php-5.5.7/main/mergesort.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/mergesort.comain/mergesort.lomain/reentrancy.lo:/tmp/php5.5.7/main/reentrancy.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/mergesort.c -o main/mergesort.lo main/reentrancy.lo: /tmp/php-5.5.7/main/reentrancy.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/reentrancy.comain/reentrancy.lomain/php_variables.lo:/tmp/php5.5.7/main/php_variables.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/reentrancy.c -o main/reentrancy.lo main/php\_variables.lo: /tmp/php-5.5.7/main/php\_variables.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_variables.comain/phpvariables.lomain/php_ticks.lo:/tmp/php5.5.7/main/php_ticks.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_variables.c -o main/php_variables.lo main/php\_ticks.lo: /tmp/php-5.5.7/main/php\_ticks.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_ticks.comain/phpticks.lomain/network.lo:/tmp/php5.5.7/main/network.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_ticks.c -o main/php_ticks.lo main/network.lo: /tmp/php-5.5.7/main/network.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/network.comain/network.lomain/php_open_temporary_file.lo:/tmp/php5.5.7/main/php_open_temporary_file.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/network.c -o main/network.lo main/php\_open\_temporary\_file.lo: /tmp/php-5.5.7/main/php\_open\_temporary\_file.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRA_CFLAGS)c/tmp/php5.5.7/main/php_open_temporary_file.comain/php_open_temporaryfile.lomain/output.lo:/tmp/php5.5.7/main/output.c(EXTRA\_CFLAGS) -c /tmp/php-5.5.7/main/php\_open\_temporary\_file.c -o main/php\_open\_temporary_file.lo main/output.lo: /tmp/php-5.5.7/main/output.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/output.comain/output.lomain/getopt.lo:/tmp/php5.5.7/main/getopt.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/output.c -o main/output.lo main/getopt.lo: /tmp/php-5.5.7/main/getopt.c (LIBTOOL) --mode=compile $(CC) -Imain/ -I/tmp/php-5.5.7/main/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/getopt.comain/getopt.lomain/streams/streams.lo:/tmp/php5.5.7/main/streams/streams.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/getopt.c -o main/getopt.lo main/streams/streams.lo: /tmp/php-5.5.7/main/streams/streams.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/streams/streams.comain/streams/streams.lomain/streams/cast.lo:/tmp/php5.5.7/main/streams/cast.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/streams.c -o main/streams/streams.lo main/streams/cast.lo: /tmp/php-5.5.7/main/streams/cast.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) (EXTRACFLAGS)c/tmp/php5.5.7/main/streams/cast.comain/streams/cast.lomain/streams/memory.lo:/tmp/php5.5.7/main/streams/memory.c(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/cast.c -o main/streams/cast.lo main/streams/memory.lo: /tmp/php-5.5.7/main/streams/memory.c (LIBTOOL) --mode=compile $(CC) -Imain/streams/ -I/tmp/php-5.5.7/main/streams/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) -c /tmp/php-5.5.7/main/streams/memory.c -o main/streams/memory.lo
    main/streams/filter.lo:


Anmelden zum Antworten