2017-04-10 13:32:00 +02:00
# Makefile.in generated by automake 1.11.6 from Makefile.am.
2012-03-28 01:13:14 +02:00
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2017-04-10 13:32:00 +02:00
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Foundation, Inc.
2012-03-28 01:13:14 +02:00
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@ S E T _ M A K E @
# Makefile.am -- Go library Makefile.
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# Process this file with autoreconf to produce Makefile.in.
VPATH = @srcdir@
2017-04-10 13:32:00 +02:00
am__make_dryrun = \
{ \
am__dry = no; \
case $$ MAKEFLAGS in \
*\\ [ \ \ ] *) \
echo 'am--echo: ; @echo "AM" OK' | $( MAKE) -f - 2>/dev/null \
| grep '^AM OK$$' >/dev/null || am__dry = yes; ; \
*) \
for am__flg in $$ MAKEFLAGS; do \
case $$ am__flg in \
*= *| --*) ; ; \
*n*) am__dry = yes; break; ; \
esac ; \
done ; ; \
esac ; \
test $$ am__dry = yes; \
}
2012-03-28 01:13:14 +02:00
pkgdatadir = $( datadir) /@PACKAGE@
pkgincludedir = $( includedir) /@PACKAGE@
pkglibdir = $( libdir) /@PACKAGE@
pkglibexecdir = $( libexecdir) /@PACKAGE@
am__cd = CDPATH = " $$ {ZSH_VERSION+.} $( PATH_SEPARATOR) " && cd
install_sh_DATA = $( install_sh) -c -m 644
install_sh_PROGRAM = $( install_sh) -c
install_sh_SCRIPT = $( install_sh) -c
INSTALL_HEADER = $( INSTALL_DATA)
transform = $( program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
2015-08-28 17:33:40 +02:00
@ G O C _ I S _ L L G O _ T R U E @ am__append_1 = libgo-llgo.la libgobegin-llgo.a
@ G O C _ I S _ L L G O _ F A L S E @ am__append_2 = libgo.la libgobegin.a
2012-03-28 01:13:14 +02:00
subdir = .
2014-09-21 19:33:12 +02:00
DIST_COMMON = README $( srcdir) /Makefile.in $( srcdir) /Makefile.am \
$( top_srcdir) /configure $( am__configure_deps) \
$( srcdir) /config.h.in $( srcdir) /../mkinstalldirs \
$( srcdir) /../depcomp
2012-03-28 01:13:14 +02:00
ACLOCAL_M4 = $( top_srcdir) /aclocal.m4
am__aclocal_m4_deps = $( top_srcdir) /../config/depstand.m4 \
2017-10-07 02:16:47 +02:00
$( top_srcdir) /../config/hwcaps.m4 \
2012-03-28 01:13:14 +02:00
$( top_srcdir) /../config/lead-dot.m4 \
$( top_srcdir) /../config/multi.m4 \
$( top_srcdir) /../config/override.m4 \
$( top_srcdir) /../config/unwind_ipinfo.m4 \
$( top_srcdir) /config/go.m4 $( top_srcdir) /config/libtool.m4 \
$( top_srcdir) /config/ltoptions.m4 \
$( top_srcdir) /config/ltsugar.m4 \
$( top_srcdir) /config/ltversion.m4 \
$( top_srcdir) /config/lt~obsolete.m4 $( top_srcdir) /configure.ac
am__configure_deps = $( am__aclocal_m4_deps) $( CONFIGURE_DEPENDENCIES) \
$( ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip = ` echo " $( srcdir) " | sed 's|.|.|g' ` ;
am__vpath_adj = case $$ p in \
$( srcdir) /*) f = ` echo " $$ p " | sed " s|^ $$ srcdirstrip/|| " ` ; ; \
*) f = $$ p; ; \
esac ;
am__strip_dir = f = ` echo $$ p | sed -e 's|^.*/||' ` ;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip = ` echo " $( srcdir) " | sed 's/[].[^$$\\*|]/\\\\&/g' `
am__nobase_strip = \
for p in $$ list; do echo " $$ p " ; done | sed -e " s| $$ srcdirstrip/|| "
am__nobase_list = $( am__nobase_strip_setup) ; \
for p in $$ list; do echo " $$ p $$ p " ; done | \
sed " s| $$ srcdirstrip/| |; " ' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$( AWK) ' BEGIN { files[ "." ] = "" } { files[ $$ 2] = files[ $$ 2] " " $$ 1; \
if ( ++n[ $$ 2] = = $( am__install_max) ) \
{ print $$ 2, files[ $$ 2] ; n[ $$ 2] = 0; files[ $$ 2] = "" } } \
END { for ( dir in files) print dir, files[ dir] } '
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2017-04-10 13:32:00 +02:00
am__uninstall_files_from_dir = { \
test -z " $$ files " \
|| { test ! -d " $$ dir " && test ! -f " $$ dir " && test ! -r " $$ dir " ; } \
|| { echo " ( cd ' $$ dir' && rm -f " $$ files ")" ; \
$( am__cd) " $$ dir " && rm -f $$ files; } ; \
}
2012-03-28 01:13:14 +02:00
am__installdirs = " $( DESTDIR) $( toolexeclibdir) " \
" $( DESTDIR) $( toolexeclibdir) " " $( DESTDIR) $( toolexeclibgodir) " \
" $( DESTDIR) $( toolexeclibgoarchivedir) " \
" $( DESTDIR) $( toolexeclibgocompressdir) " \
" $( DESTDIR) $( toolexeclibgocontainerdir) " \
" $( DESTDIR) $( toolexeclibgocryptodir) " \
" $( DESTDIR) $( toolexeclibgocryptox509dir) " \
" $( DESTDIR) $( toolexeclibgodatabasedir) " \
" $( DESTDIR) $( toolexeclibgodatabasesqldir) " \
" $( DESTDIR) $( toolexeclibgodebugdir) " \
" $( DESTDIR) $( toolexeclibgoencodingdir) " \
" $( DESTDIR) $( toolexeclibgoexpdir) " \
" $( DESTDIR) $( toolexeclibgogodir) " \
" $( DESTDIR) $( toolexeclibgohashdir) " \
" $( DESTDIR) $( toolexeclibgohtmldir) " \
" $( DESTDIR) $( toolexeclibgoimagedir) " \
2014-09-21 19:33:12 +02:00
" $( DESTDIR) $( toolexeclibgoimagecolordir) " \
2012-03-28 01:13:14 +02:00
" $( DESTDIR) $( toolexeclibgoindexdir) " \
" $( DESTDIR) $( toolexeclibgoiodir) " \
" $( DESTDIR) $( toolexeclibgologdir) " \
" $( DESTDIR) $( toolexeclibgomathdir) " \
" $( DESTDIR) $( toolexeclibgomimedir) " \
" $( DESTDIR) $( toolexeclibgonetdir) " \
" $( DESTDIR) $( toolexeclibgonethttpdir) " \
" $( DESTDIR) $( toolexeclibgonetrpcdir) " \
" $( DESTDIR) $( toolexeclibgoosdir) " \
" $( DESTDIR) $( toolexeclibgopathdir) " \
" $( DESTDIR) $( toolexeclibgoregexpdir) " \
" $( DESTDIR) $( toolexeclibgoruntimedir) " \
" $( DESTDIR) $( toolexeclibgosyncdir) " \
" $( DESTDIR) $( toolexeclibgotestingdir) " \
2017-10-07 02:16:47 +02:00
" $( DESTDIR) $( toolexeclibgotestinginternaldir) " \
2012-03-28 01:13:14 +02:00
" $( DESTDIR) $( toolexeclibgotextdir) " \
" $( DESTDIR) $( toolexeclibgotexttemplatedir) " \
" $( DESTDIR) $( toolexeclibgounicodedir) "
LIBRARIES = $( toolexeclib_LIBRARIES)
ARFLAGS = cru
2015-08-28 17:33:40 +02:00
libgobegin_llgo_a_AR = $( AR) $( ARFLAGS)
libgobegin_llgo_a_LIBADD =
am_libgobegin_llgo_a_OBJECTS = libgobegin_llgo_a-go-main.$( OBJEXT)
libgobegin_llgo_a_OBJECTS = $( am_libgobegin_llgo_a_OBJECTS)
2012-03-28 01:13:14 +02:00
libgobegin_a_AR = $( AR) $( ARFLAGS)
libgobegin_a_LIBADD =
2015-08-28 17:33:40 +02:00
am_libgobegin_a_OBJECTS = libgobegin_a-go-main.$( OBJEXT)
2012-03-28 01:13:14 +02:00
libgobegin_a_OBJECTS = $( am_libgobegin_a_OBJECTS)
2015-08-28 17:33:40 +02:00
libgolibbegin_a_AR = $( AR) $( ARFLAGS)
libgolibbegin_a_LIBADD =
am_libgolibbegin_a_OBJECTS = libgolibbegin_a-go-libmain.$( OBJEXT)
libgolibbegin_a_OBJECTS = $( am_libgolibbegin_a_OBJECTS)
2012-03-28 01:13:14 +02:00
LTLIBRARIES = $( toolexeclib_LTLIBRARIES)
2017-10-07 02:16:47 +02:00
@ L I B G O _ I S _ L I N U X _ T R U E @ am__DEPENDENCIES_1 = syscall/clone_linux.lo
am__DEPENDENCIES_2 = $( addsuffix .lo,$( PACKAGES) ) bytes/index.lo \
reflect/makefunc_ffi_c.lo strings/index.lo \
$( am__DEPENDENCIES_1) syscall/errno.lo syscall/signame.lo \
syscall/wait.lo $( golang_org_x_net_lif_lo) \
$( golang_org_x_net_route_lo) log/syslog/syslog_c.lo \
runtime/internal/atomic_c.lo sync/atomic_c.lo
am__DEPENDENCIES_3 =
am__DEPENDENCIES_4 = $( am__DEPENDENCIES_2) \
../libbacktrace/libbacktrace.la $( am__DEPENDENCIES_3) \
$( am__DEPENDENCIES_3) $( am__DEPENDENCIES_3) \
$( am__DEPENDENCIES_3) $( am__DEPENDENCIES_3)
libgo_llgo_la_DEPENDENCIES = $( am__DEPENDENCIES_4)
@ H A V E _ S Y S _ M M A N _ H _ F A L S E @ am__objects_1 = mem_posix_memalign.lo
@ H A V E _ S Y S _ M M A N _ H _ T R U E @ am__objects_1 = mem.lo
@ L I B G O _ I S _ L I N U X _ F A L S E @ am__objects_2 = thread-sema.lo
@ L I B G O _ I S _ L I N U X _ T R U E @ am__objects_2 = thread-linux.lo
@ L I B G O _ I S _ R T E M S _ T R U E @ am__objects_3 = rtems-task-variable-add.lo
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ N E T B S D _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ am__objects_4 = getncpu-none.lo
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ N E T B S D _ T R U E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ am__objects_4 = getncpu-bsd.lo
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ T R U E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ am__objects_4 = getncpu-bsd.lo
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ T R U E @ am__objects_4 = getncpu-solaris.lo
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ I R I X _ T R U E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ am__objects_4 = getncpu-irix.lo
@ L I B G O _ I S _ D A R W I N _ T R U E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ am__objects_4 = \
2014-09-21 19:33:12 +02:00
@ L I B G O _ I S _ D A R W I N _ T R U E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ g e t n c p u - b s d . l o
2017-10-07 02:16:47 +02:00
@ L I B G O _ I S _ L I N U X _ T R U E @ am__objects_4 = getncpu-linux.lo
am__objects_5 = aeshash.lo go-assert.lo go-breakpoint.lo go-caller.lo \
go-callers.lo go-cdiv.lo go-cgo.lo go-construct-map.lo \
go-ffi.lo go-fieldtrack.lo go-matherr.lo go-memclr.lo \
go-memcmp.lo go-memequal.lo go-memmove.lo go-nanotime.lo \
go-now.lo go-new.lo go-nosys.lo go-reflect-call.lo \
go-runtime-error.lo go-setenv.lo go-signal.lo go-strslice.lo \
go-typedesc-equal.lo go-unsafe-new.lo go-unsafe-newarray.lo \
go-unsafe-pointer.lo go-unsetenv.lo go-unwind.lo go-varargs.lo \
env_posix.lo heapdump.lo mcache.lo mcentral.lo \
$( am__objects_1) mfixalloc.lo mgc0.lo mheap.lo msize.lo \
panic.lo parfor.lo print.lo proc.lo runtime_c.lo thread.lo \
$( am__objects_2) yield.lo $( am__objects_3) malloc.lo \
$( am__objects_4)
am_libgo_llgo_la_OBJECTS = $( am__objects_5)
2015-08-28 17:33:40 +02:00
libgo_llgo_la_OBJECTS = $( am_libgo_llgo_la_OBJECTS)
libgo_llgo_la_LINK = $( LIBTOOL) --tag= CC $( AM_LIBTOOLFLAGS) \
$( LIBTOOLFLAGS) --mode= link $( CCLD) $( AM_CFLAGS) $( CFLAGS) \
$( libgo_llgo_la_LDFLAGS) $( LDFLAGS) -o $@
@ G O C _ I S _ L L G O _ T R U E @ am_libgo_llgo_la_rpath = -rpath $( toolexeclibdir)
2017-10-07 02:16:47 +02:00
libgo_la_DEPENDENCIES = $( am__DEPENDENCIES_4)
am_libgo_la_OBJECTS = $( am__objects_5)
2012-03-28 01:13:14 +02:00
libgo_la_OBJECTS = $( am_libgo_la_OBJECTS)
libgo_la_LINK = $( LIBTOOL) --tag= CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) \
--mode= link $( CCLD) $( AM_CFLAGS) $( CFLAGS) $( libgo_la_LDFLAGS) \
$( LDFLAGS) -o $@
2015-08-28 17:33:40 +02:00
@ G O C _ I S _ L L G O _ F A L S E @ am_libgo_la_rpath = -rpath $( toolexeclibdir)
2012-03-28 01:13:14 +02:00
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $( SHELL) $( top_srcdir) /../depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) \
$( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS)
LTCOMPILE = $( LIBTOOL) --tag= CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) \
--mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) \
$( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS)
CCLD = $( CC)
LINK = $( LIBTOOL) --tag= CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) \
--mode= link $( CCLD) $( AM_CFLAGS) $( CFLAGS) $( AM_LDFLAGS) \
$( LDFLAGS) -o $@
2015-08-28 17:33:40 +02:00
SOURCES = $( libgobegin_llgo_a_SOURCES) $( libgobegin_a_SOURCES) \
2017-10-07 02:16:47 +02:00
$( libgolibbegin_a_SOURCES) $( libgo_llgo_la_SOURCES) \
$( libgo_la_SOURCES)
2012-03-28 01:13:14 +02:00
MULTISRCTOP =
MULTIBUILDTOP =
MULTIDIRS =
MULTISUBDIR =
MULTIDO = true
MULTICLEAN = true
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
2017-04-10 13:32:00 +02:00
am__can_run_installinfo = \
case $$ AM_UPDATE_INFO_DIR in \
n| no| NO) false; ; \
*) ( install-info --version) >/dev/null 2>& 1; ; \
esac
2015-08-28 17:33:40 +02:00
DATA = $( noinst_DATA) $( toolexeclibgo_DATA) \
$( toolexeclibgoarchive_DATA) $( toolexeclibgocompress_DATA) \
$( toolexeclibgocontainer_DATA) $( toolexeclibgocrypto_DATA) \
$( toolexeclibgocryptox509_DATA) $( toolexeclibgodatabase_DATA) \
$( toolexeclibgodatabasesql_DATA) $( toolexeclibgodebug_DATA) \
$( toolexeclibgoencoding_DATA) $( toolexeclibgoexp_DATA) \
$( toolexeclibgogo_DATA) $( toolexeclibgohash_DATA) \
$( toolexeclibgohtml_DATA) $( toolexeclibgoimage_DATA) \
$( toolexeclibgoimagecolor_DATA) $( toolexeclibgoindex_DATA) \
$( toolexeclibgoio_DATA) $( toolexeclibgolog_DATA) \
$( toolexeclibgomath_DATA) $( toolexeclibgomime_DATA) \
$( toolexeclibgonet_DATA) $( toolexeclibgonethttp_DATA) \
2017-10-07 02:16:47 +02:00
$( toolexeclibgonetrpc_DATA) $( toolexeclibgoos_DATA) \
$( toolexeclibgopath_DATA) $( toolexeclibgoregexp_DATA) \
$( toolexeclibgoruntime_DATA) $( toolexeclibgosync_DATA) \
$( toolexeclibgotesting_DATA) \
$( toolexeclibgotestinginternal_DATA) $( toolexeclibgotext_DATA) \
$( toolexeclibgotexttemplate_DATA) $( toolexeclibgounicode_DATA)
2012-03-28 01:13:14 +02:00
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $( RECURSIVE_TARGETS:-recursive= ) \
2014-09-21 19:33:12 +02:00
$( RECURSIVE_CLEAN_TARGETS:-recursive= ) tags TAGS ctags CTAGS
2012-03-28 01:13:14 +02:00
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = testsuite
ACLOCAL = @ACLOCAL@
2017-10-07 02:16:47 +02:00
ALLGOARCH = @ALLGOARCH@
ALLGOARCHFAMILY = @ALLGOARCHFAMILY@
ALLGOOS = @ALLGOOS@
2012-03-28 01:13:14 +02:00
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CC_FOR_BUILD = @CC_FOR_BUILD@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GOARCH = @GOARCH@
2017-10-07 02:16:47 +02:00
GOARCH_BIGENDIAN = @GOARCH_BIGENDIAN@
GOARCH_CACHELINESIZE = @GOARCH_CACHELINESIZE@
GOARCH_FAMILY = @GOARCH_FAMILY@
GOARCH_HUGEPAGESIZE = @GOARCH_HUGEPAGESIZE@
GOARCH_INT64ALIGN = @GOARCH_INT64ALIGN@
GOARCH_MINFRAMESIZE = @GOARCH_MINFRAMESIZE@
GOARCH_PCQUANTUM = @GOARCH_PCQUANTUM@
GOARCH_PHYSPAGESIZE = @GOARCH_PHYSPAGESIZE@
2012-03-28 01:13:14 +02:00
GOC = @GOC@
GOCFLAGS = $( CFLAGS)
GOOS = @GOOS@
GO_LIBCALL_OS_ARCH_FILE = @GO_LIBCALL_OS_ARCH_FILE@
GO_LIBCALL_OS_FILE = @GO_LIBCALL_OS_FILE@
2017-04-10 13:32:00 +02:00
GO_SPLIT_STACK = @GO_SPLIT_STACK@
2012-03-28 01:13:14 +02:00
GO_SYSCALL_OS_ARCH_FILE = @GO_SYSCALL_OS_ARCH_FILE@
GO_SYSCALL_OS_FILE = @GO_SYSCALL_OS_FILE@
GREP = @GREP@
2017-10-07 02:16:47 +02:00
HWCAP_CFLAGS = @HWCAP_CFLAGS@
2012-03-28 01:13:14 +02:00
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
2015-08-28 17:33:40 +02:00
LIBATOMIC = @LIBATOMIC@
2012-03-28 01:13:14 +02:00
LIBFFI = @LIBFFI@
LIBFFIINCS = @LIBFFIINCS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MATH_FLAG = @MATH_FLAG@
MATH_LIBS = @MATH_LIBS@
MKDIR_P = @MKDIR_P@
NET_LIBS = @NET_LIBS@
NM = @NM@
NMEDIT = @NMEDIT@
OBJCOPY = @OBJCOPY@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OSCFLAGS = @OSCFLAGS@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SIZEOF_STRUCT_EPOLL_EVENT = @SIZEOF_STRUCT_EPOLL_EVENT@
SPLIT_STACK = @SPLIT_STACK@
STRINGOPS_FLAG = @STRINGOPS_FLAG@
STRIP = @STRIP@
STRUCT_EPOLL_EVENT_FD_OFFSET = @STRUCT_EPOLL_EVENT_FD_OFFSET@
2014-09-21 19:33:12 +02:00
USE_DEJAGNU = @USE_DEJAGNU@
2012-03-28 01:13:14 +02:00
VERSION = @VERSION@
WARN_FLAGS = @WARN_FLAGS@
WERROR = @WERROR@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
enable_shared = @enable_shared@
enable_static = @enable_static@
exec_prefix = @exec_prefix@
glibgo_toolexecdir = @glibgo_toolexecdir@
glibgo_toolexeclibdir = @glibgo_toolexeclibdir@
go_include = @go_include@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
libtool_VERSION = @libtool_VERSION@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
multi_basedir = @multi_basedir@
nover_glibgo_toolexeclibdir = @nover_glibgo_toolexeclibdir@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
# Go support.
SUFFIXES = .c .go .gox .o .obj .lo .a
@ L I B G O _ I S _ R T E M S _ T R U E @ subdirs = testsuite
SUBDIRS = ${ subdirs }
2015-08-28 17:33:40 +02:00
gcc_version := $( shell $( GOC) -dumpversion)
2012-03-28 01:13:14 +02:00
MAINT_CHARSET = latin1
mkinstalldirs = $( SHELL) $( toplevel_srcdir) /mkinstalldirs
PWD_COMMAND = $$ { PWDCMD-pwd}
STAMP = echo timestamp >
toolexecdir = $( glibgo_toolexecdir)
toolexeclibdir = $( glibgo_toolexeclibdir)
toolexeclibgodir = $( nover_glibgo_toolexeclibdir) /go/$( gcc_version) /$( target_alias)
2015-08-28 17:33:40 +02:00
libexecsubdir = $( libexecdir) /gcc/$( target_alias) /$( gcc_version)
2012-03-28 01:13:14 +02:00
WARN_CFLAGS = $( WARN_FLAGS) $( WERROR)
# -I/-D flags to pass when compiling.
AM_CPPFLAGS = -I $( srcdir) /runtime $( LIBFFIINCS) $( PTHREAD_CFLAGS)
ACLOCAL_AMFLAGS = -I ./config -I ../config
2014-09-21 19:33:12 +02:00
AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \
$( SPLIT_STACK) $( WARN_CFLAGS) \
2017-10-07 02:16:47 +02:00
$( STRINGOPS_FLAG) $( HWCAP_CFLAGS) $( OSCFLAGS) \
2014-09-21 19:33:12 +02:00
-I $( srcdir) /../libgcc -I $( srcdir) /../libbacktrace \
-I $( MULTIBUILDTOP) ../../gcc/include
2012-03-28 01:13:14 +02:00
@ U S I N G _ S P L I T _ S T A C K _ T R U E @ AM_LDFLAGS = -XCClinker $( SPLIT_STACK)
# Multilib support.
MAKEOVERRIDES =
# Work around what appears to be a GNU make handling MAKEFLAGS
# values defined in terms of make variables, as is the case for CC and
# friends when we are called from the top level Makefile.
AM_MAKEFLAGS = \
" AR_FLAGS= $( AR_FLAGS) " \
" CC_FOR_BUILD= $( CC_FOR_BUILD) " \
" CC_FOR_TARGET= $( CC_FOR_TARGET) " \
" CFLAGS= $( CFLAGS) " \
" CXXFLAGS= $( CXXFLAGS) " \
" CFLAGS_FOR_BUILD= $( CFLAGS_FOR_BUILD) " \
" CFLAGS_FOR_TARGET= $( CFLAGS_FOR_TARGET) " \
" GOC_FOR_TARGET= $( GOC_FOR_TARGET) " \
" GOC= $( GOC) " \
" GOCFLAGS= $( GOCFLAGS) " \
" INSTALL= $( INSTALL) " \
" INSTALL_DATA= $( INSTALL_DATA) " \
" INSTALL_PROGRAM= $( INSTALL_PROGRAM) " \
" INSTALL_SCRIPT= $( INSTALL_SCRIPT) " \
" LDFLAGS= $( LDFLAGS) " \
" LIBCFLAGS= $( LIBCFLAGS) " \
" LIBCFLAGS_FOR_TARGET= $( LIBCFLAGS_FOR_TARGET) " \
" MAKE= $( MAKE) " \
" MAKEINFO= $( MAKEINFO) $( MAKEINFOFLAGS) " \
" PICFLAG= $( PICFLAG) " \
" PICFLAG_FOR_TARGET= $( PICFLAG_FOR_TARGET) " \
" SHELL= $( SHELL) " \
" RUNTESTFLAGS= $( RUNTESTFLAGS) " \
" exec_prefix= $( exec_prefix) " \
" infodir= $( infodir) " \
" libdir= $( libdir) " \
" includedir= $( includedir) " \
" prefix= $( prefix) " \
" tooldir= $( tooldir) " \
" gxx_include_dir= $( gxx_include_dir) " \
" AR= $( AR) " \
" AS= $( AS) " \
" LD= $( LD) " \
" RANLIB= $( RANLIB) " \
" NM= $( NM) " \
" NM_FOR_BUILD= $( NM_FOR_BUILD) " \
" NM_FOR_TARGET= $( NM_FOR_TARGET) " \
" DESTDIR= $( DESTDIR) " \
" WERROR= $( WERROR) "
# Subdir rules rely on $(FLAGS_TO_PASS)
FLAGS_TO_PASS = $( AM_MAKEFLAGS)
2015-08-28 17:33:40 +02:00
@ G O C _ I S _ L L G O _ F A L S E @ toolexeclib_LTLIBRARIES = libgo.la
@ G O C _ I S _ L L G O _ T R U E @ toolexeclib_LTLIBRARIES = libgo-llgo.la
2017-10-07 02:16:47 +02:00
@ G O C _ I S _ L L G O _ F A L S E @ toolexeclib_LIBRARIES = libgobegin.a libgolibbegin.a
2015-08-28 17:33:40 +02:00
@ G O C _ I S _ L L G O _ T R U E @ toolexeclib_LIBRARIES = libgobegin-llgo.a
2012-03-28 01:13:14 +02:00
toolexeclibgo_DATA = \
bufio.gox \
bytes.gox \
2017-10-07 02:16:47 +02:00
context.gox \
2012-03-28 01:13:14 +02:00
crypto.gox \
2014-09-21 19:33:12 +02:00
encoding.gox \
2012-03-28 01:13:14 +02:00
errors.gox \
expvar.gox \
flag.gox \
fmt.gox \
hash.gox \
html.gox \
image.gox \
io.gox \
log.gox \
math.gox \
mime.gox \
net.gox \
os.gox \
path.gox \
reflect.gox \
regexp.gox \
runtime.gox \
sort.gox \
strconv.gox \
strings.gox \
sync.gox \
syscall.gox \
testing.gox \
time.gox \
unicode.gox
toolexeclibgoarchivedir = $( toolexeclibgodir) /archive
toolexeclibgoarchive_DATA = \
archive/tar.gox \
archive/zip.gox
toolexeclibgocompressdir = $( toolexeclibgodir) /compress
toolexeclibgocompress_DATA = \
compress/bzip2.gox \
compress/flate.gox \
compress/gzip.gox \
compress/lzw.gox \
compress/zlib.gox
toolexeclibgocontainerdir = $( toolexeclibgodir) /container
toolexeclibgocontainer_DATA = \
container/heap.gox \
container/list.gox \
container/ring.gox
toolexeclibgocryptodir = $( toolexeclibgodir) /crypto
toolexeclibgocrypto_DATA = \
crypto/aes.gox \
crypto/cipher.gox \
crypto/des.gox \
crypto/dsa.gox \
crypto/ecdsa.gox \
crypto/elliptic.gox \
crypto/hmac.gox \
crypto/md5.gox \
crypto/rand.gox \
crypto/rc4.gox \
crypto/rsa.gox \
crypto/sha1.gox \
crypto/sha256.gox \
crypto/sha512.gox \
crypto/subtle.gox \
crypto/tls.gox \
crypto/x509.gox
toolexeclibgocryptox509dir = $( toolexeclibgocryptodir) /x509
toolexeclibgocryptox509_DATA = \
crypto/x509/pkix.gox
toolexeclibgodatabasedir = $( toolexeclibgodir) /database
toolexeclibgodatabase_DATA = \
database/sql.gox
toolexeclibgodatabasesqldir = $( toolexeclibgodatabasedir) /sql
toolexeclibgodatabasesql_DATA = \
database/sql/driver.gox
toolexeclibgodebugdir = $( toolexeclibgodir) /debug
toolexeclibgodebug_DATA = \
debug/dwarf.gox \
debug/elf.gox \
debug/gosym.gox \
debug/macho.gox \
2015-08-28 17:33:40 +02:00
debug/pe.gox \
debug/plan9obj.gox
2012-03-28 01:13:14 +02:00
toolexeclibgoencodingdir = $( toolexeclibgodir) /encoding
toolexeclibgoencoding_DATA = \
encoding/ascii85.gox \
encoding/asn1.gox \
encoding/base32.gox \
encoding/base64.gox \
encoding/binary.gox \
encoding/csv.gox \
encoding/gob.gox \
encoding/hex.gox \
encoding/json.gox \
encoding/pem.gox \
encoding/xml.gox
toolexeclibgoexpdir = $( toolexeclibgodir) /exp
toolexeclibgoexp_DATA = \
exp/proxy.gox \
2014-09-21 19:33:12 +02:00
exp/terminal.gox
2012-03-28 01:13:14 +02:00
toolexeclibgogodir = $( toolexeclibgodir) /go
toolexeclibgogo_DATA = \
go/ast.gox \
go/build.gox \
2017-04-10 13:32:00 +02:00
go/constant.gox \
2012-03-28 01:13:14 +02:00
go/doc.gox \
2014-09-21 19:33:12 +02:00
go/format.gox \
2017-04-10 13:32:00 +02:00
go/importer.gox \
2012-03-28 01:13:14 +02:00
go/parser.gox \
go/printer.gox \
go/scanner.gox \
2017-04-10 13:32:00 +02:00
go/token.gox \
go/types.gox
2012-03-28 01:13:14 +02:00
toolexeclibgohashdir = $( toolexeclibgodir) /hash
toolexeclibgohash_DATA = \
hash/adler32.gox \
hash/crc32.gox \
hash/crc64.gox \
hash/fnv.gox
toolexeclibgohtmldir = $( toolexeclibgodir) /html
toolexeclibgohtml_DATA = \
html/template.gox
toolexeclibgoimagedir = $( toolexeclibgodir) /image
toolexeclibgoimage_DATA = \
image/color.gox \
image/draw.gox \
image/gif.gox \
image/jpeg.gox \
image/png.gox
2014-09-21 19:33:12 +02:00
toolexeclibgoimagecolordir = $( toolexeclibgoimagedir) /color
toolexeclibgoimagecolor_DATA = \
image/color/palette.gox
2012-03-28 01:13:14 +02:00
toolexeclibgoindexdir = $( toolexeclibgodir) /index
toolexeclibgoindex_DATA = \
index/suffixarray.gox
toolexeclibgoiodir = $( toolexeclibgodir) /io
toolexeclibgoio_DATA = \
io/ioutil.gox
toolexeclibgologdir = $( toolexeclibgodir) /log
toolexeclibgolog_DATA = \
log/syslog.gox
toolexeclibgomathdir = $( toolexeclibgodir) /math
toolexeclibgomath_DATA = \
math/big.gox \
math/cmplx.gox \
math/rand.gox
toolexeclibgomimedir = $( toolexeclibgodir) /mime
toolexeclibgomime_DATA = \
2017-04-10 13:32:00 +02:00
mime/multipart.gox \
mime/quotedprintable.gox
2012-03-28 01:13:14 +02:00
toolexeclibgonetdir = $( toolexeclibgodir) /net
toolexeclibgonet_DATA = \
net/http.gox \
net/mail.gox \
net/rpc.gox \
net/smtp.gox \
net/textproto.gox \
net/url.gox
toolexeclibgonethttpdir = $( toolexeclibgonetdir) /http
toolexeclibgonethttp_DATA = \
net/http/cgi.gox \
2014-09-21 19:33:12 +02:00
net/http/cookiejar.gox \
2012-03-28 01:13:14 +02:00
net/http/fcgi.gox \
net/http/httptest.gox \
2017-10-07 02:16:47 +02:00
net/http/httptrace.gox \
2012-03-28 01:13:14 +02:00
net/http/httputil.gox \
net/http/pprof.gox
toolexeclibgonetrpcdir = $( toolexeclibgonetdir) /rpc
toolexeclibgonetrpc_DATA = \
net/rpc/jsonrpc.gox
toolexeclibgoosdir = $( toolexeclibgodir) /os
toolexeclibgoos_DATA = \
os/exec.gox \
os/signal.gox \
os/user.gox
toolexeclibgopathdir = $( toolexeclibgodir) /path
toolexeclibgopath_DATA = \
path/filepath.gox
toolexeclibgoregexpdir = $( toolexeclibgodir) /regexp
toolexeclibgoregexp_DATA = \
regexp/syntax.gox
toolexeclibgoruntimedir = $( toolexeclibgodir) /runtime
toolexeclibgoruntime_DATA = \
runtime/debug.gox \
2017-10-07 02:16:47 +02:00
runtime/pprof.gox \
runtime/trace.gox
2012-03-28 01:13:14 +02:00
toolexeclibgosyncdir = $( toolexeclibgodir) /sync
toolexeclibgosync_DATA = \
sync/atomic.gox
toolexeclibgotestingdir = $( toolexeclibgodir) /testing
toolexeclibgotesting_DATA = \
testing/iotest.gox \
testing/quick.gox
2017-10-07 02:16:47 +02:00
toolexeclibgotestinginternaldir = $( toolexeclibgotestingdir) /internal
toolexeclibgotestinginternal_DATA = \
testing/internal/testdeps.gox
2012-03-28 01:13:14 +02:00
toolexeclibgotextdir = $( toolexeclibgodir) /text
toolexeclibgotext_DATA = \
text/scanner.gox \
text/tabwriter.gox \
text/template.gox
toolexeclibgotexttemplatedir = $( toolexeclibgotextdir) /template
toolexeclibgotexttemplate_DATA = \
text/template/parse.gox
toolexeclibgounicodedir = $( toolexeclibgodir) /unicode
toolexeclibgounicode_DATA = \
unicode/utf16.gox \
unicode/utf8.gox
@ H A V E _ S Y S _ M M A N _ H _ F A L S E @ runtime_mem_file = runtime/mem_posix_memalign.c
@ H A V E _ S Y S _ M M A N _ H _ T R U E @ runtime_mem_file = runtime/mem.c
@ L I B G O _ I S _ R T E M S _ F A L S E @ rtems_task_variable_add_file =
@ L I B G O _ I S _ R T E M S _ T R U E @ rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
2017-10-07 02:16:47 +02:00
@ L I B G O _ I S _ L I N U X _ F A L S E @ runtime_thread_files = runtime/thread-sema.c
@ L I B G O _ I S _ L I N U X _ T R U E @ runtime_thread_files = runtime/thread-linux.c
2014-09-21 19:33:12 +02:00
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ N E T B S D _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ runtime_getncpu_file = runtime/getncpu-none.c
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ N E T B S D _ T R U E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ runtime_getncpu_file = runtime/getncpu-bsd.c
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ F R E E B S D _ T R U E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ F A L S E @ runtime_getncpu_file = runtime/getncpu-bsd.c
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ I R I X _ F A L S E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ T R U E @ runtime_getncpu_file = runtime/getncpu-solaris.c
@ L I B G O _ I S _ D A R W I N _ F A L S E @ @ L I B G O _ I S _ I R I X _ T R U E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ runtime_getncpu_file = runtime/getncpu-irix.c
@ L I B G O _ I S _ D A R W I N _ T R U E @ @ L I B G O _ I S _ L I N U X _ F A L S E @ runtime_getncpu_file = runtime/getncpu-bsd.c
@ L I B G O _ I S _ L I N U X _ T R U E @ runtime_getncpu_file = runtime/getncpu-linux.c
2012-03-28 01:13:14 +02:00
runtime_files = \
2017-10-07 02:16:47 +02:00
runtime/aeshash.c \
2012-03-28 01:13:14 +02:00
runtime/go-assert.c \
runtime/go-breakpoint.c \
runtime/go-caller.c \
runtime/go-callers.c \
2014-09-21 19:33:12 +02:00
runtime/go-cdiv.c \
2012-03-28 01:13:14 +02:00
runtime/go-cgo.c \
runtime/go-construct-map.c \
2015-08-28 17:33:40 +02:00
runtime/go-ffi.c \
2014-09-21 19:33:12 +02:00
runtime/go-fieldtrack.c \
2012-03-28 01:13:14 +02:00
runtime/go-matherr.c \
2017-10-07 02:16:47 +02:00
runtime/go-memclr.c \
2014-09-21 19:33:12 +02:00
runtime/go-memcmp.c \
2017-10-07 02:16:47 +02:00
runtime/go-memequal.c \
runtime/go-memmove.c \
2012-03-28 01:13:14 +02:00
runtime/go-nanotime.c \
runtime/go-now.c \
runtime/go-new.c \
runtime/go-nosys.c \
runtime/go-reflect-call.c \
runtime/go-runtime-error.c \
runtime/go-setenv.c \
runtime/go-signal.c \
runtime/go-strslice.c \
runtime/go-typedesc-equal.c \
runtime/go-unsafe-new.c \
runtime/go-unsafe-newarray.c \
runtime/go-unsafe-pointer.c \
2015-08-28 17:33:40 +02:00
runtime/go-unsetenv.c \
2012-03-28 01:13:14 +02:00
runtime/go-unwind.c \
2014-09-21 19:33:12 +02:00
runtime/go-varargs.c \
runtime/env_posix.c \
2015-08-28 17:33:40 +02:00
runtime/heapdump.c \
2012-03-28 01:13:14 +02:00
runtime/mcache.c \
runtime/mcentral.c \
$( runtime_mem_file) \
runtime/mfixalloc.c \
runtime/mgc0.c \
runtime/mheap.c \
runtime/msize.c \
2014-09-21 19:33:12 +02:00
runtime/panic.c \
runtime/parfor.c \
runtime/print.c \
2012-03-28 01:13:14 +02:00
runtime/proc.c \
2017-10-07 02:16:47 +02:00
runtime/runtime_c.c \
2012-03-28 01:13:14 +02:00
runtime/thread.c \
2017-10-07 02:16:47 +02:00
$( runtime_thread_files) \
2012-03-28 01:13:14 +02:00
runtime/yield.c \
$( rtems_task_variable_add_file) \
malloc.c \
2014-09-21 19:33:12 +02:00
$( runtime_getncpu_file)
2012-03-28 01:13:14 +02:00
2015-08-28 17:33:40 +02:00
noinst_DATA = zstdpkglist.go
2017-10-07 02:16:47 +02:00
@ L I B G O _ I S _ L I N U X _ F A L S E @ syscall_epoll_file =
@ L I B G O _ I S _ L I N U X _ T R U E @ syscall_epoll_file = epoll.go
SYSINFO_FLAGS = \
$( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) \
$( CPPFLAGS) $( OSCFLAGS) -O
@ L I B G O _ I S _ L I N U X _ F A L S E @ syscall_lib_clone_lo =
@ L I B G O _ I S _ L I N U X _ T R U E @ syscall_lib_clone_lo = syscall/clone_linux.lo
PACKAGES = \
archive/tar \
archive/zip \
bufio \
bytes \
cmd/internal/browser \
compress/bzip2 \
compress/flate \
compress/gzip \
compress/lzw \
compress/zlib \
container/heap \
container/list \
container/ring \
context \
crypto \
crypto/aes \
crypto/cipher \
crypto/des \
crypto/dsa \
crypto/ecdsa \
crypto/elliptic \
crypto/hmac \
crypto/internal/cipherhw \
crypto/md5 \
crypto/rand \
crypto/rc4 \
crypto/rsa \
crypto/sha1 \
crypto/sha256 \
crypto/sha512 \
crypto/subtle \
crypto/tls \
crypto/x509 \
crypto/x509/pkix \
database/sql \
database/sql/driver \
debug/dwarf \
debug/elf \
debug/gosym \
debug/macho \
debug/pe \
debug/plan9obj \
encoding \
encoding/ascii85 \
encoding/asn1 \
encoding/base32 \
encoding/base64 \
encoding/binary \
encoding/csv \
encoding/gob \
encoding/hex \
encoding/json \
encoding/pem \
encoding/xml \
errors \
exp/proxy \
exp/terminal \
expvar \
flag \
fmt \
go/ast \
go/build \
go/constant \
go/doc \
go/format \
go/importer \
go/internal/gccgoimporter \
go/internal/gcimporter \
go/parser \
go/printer \
go/scanner \
go/token \
go/types \
golang_org/x/crypto/chacha20poly1305 \
golang_org/x/crypto/chacha20poly1305/internal/chacha20 \
golang_org/x/crypto/curve25519 \
golang_org/x/crypto/poly1305 \
golang_org/x/net/http2/hpack \
golang_org/x/net/idna \
golang_org/x/net/lex/httplex \
golang_org/x/text/transform \
golang_org/x/text/unicode/norm \
golang_org/x/text/width \
hash \
hash/adler32 \
hash/crc32 \
hash/crc64 \
hash/fnv \
html \
html/template \
image \
image/color \
image/color/palette \
image/draw \
image/gif \
image/internal/imageutil \
image/jpeg \
image/png \
index/suffixarray \
internal/nettrace \
internal/pprof/profile \
internal/race \
internal/singleflight \
internal/syscall/unix \
internal/testenv \
internal/trace \
io \
io/ioutil \
log \
log/syslog \
math \
math/big \
math/cmplx \
math/rand \
mime \
mime/multipart \
mime/quotedprintable \
net \
net/http \
net/http/cgi \
net/http/cookiejar \
net/http/fcgi \
net/http/httptest \
net/http/httptrace \
net/http/httputil \
net/http/internal \
net/http/pprof \
net/internal/socktest \
net/mail \
net/rpc \
net/rpc/jsonrpc \
net/smtp \
net/textproto \
net/url \
os \
os/exec \
os/signal \
os/user \
path \
path/filepath \
reflect \
regexp \
regexp/syntax \
runtime \
runtime/debug \
runtime/internal/atomic \
runtime/internal/sys \
runtime/pprof \
runtime/pprof/internal/protopprof \
runtime/trace \
sort \
strconv \
strings \
sync \
sync/atomic \
syscall \
testing \
testing/internal/testdeps \
testing/iotest \
testing/quick \
text/scanner \
text/tabwriter \
text/template \
text/template/parse \
time \
unicode \
unicode/utf16 \
unicode/utf8
2012-03-28 01:13:14 +02:00
libgo_go_objs = \
2017-10-07 02:16:47 +02:00
$( addsuffix .lo,$( PACKAGES) ) \
2012-03-28 01:13:14 +02:00
bytes/index.lo \
2015-08-28 17:33:40 +02:00
reflect/makefunc_ffi_c.lo \
2014-09-21 19:33:12 +02:00
strings/index.lo \
2017-10-07 02:16:47 +02:00
$( syscall_lib_clone_lo) \
2014-09-21 19:33:12 +02:00
syscall/errno.lo \
syscall/signame.lo \
syscall/wait.lo \
2017-10-07 02:16:47 +02:00
$( golang_org_x_net_lif_lo) \
$( golang_org_x_net_route_lo) \
2012-03-28 01:13:14 +02:00
log/syslog/syslog_c.lo \
$( os_lib_inotify_lo) \
2017-10-07 02:16:47 +02:00
runtime/internal/atomic_c.lo \
sync/atomic_c.lo
2012-03-28 01:13:14 +02:00
2015-08-28 17:33:40 +02:00
libgo_ldflags = \
2014-09-21 19:33:12 +02:00
-version-info $( libtool_VERSION) $( PTHREAD_CFLAGS) $( AM_LDFLAGS)
2015-08-28 17:33:40 +02:00
libgo_libadd = \
2014-09-21 19:33:12 +02:00
$( libgo_go_objs) ../libbacktrace/libbacktrace.la \
2015-08-28 17:33:40 +02:00
$( LIBATOMIC) $( LIBFFI) $( PTHREAD_LIBS) $( MATH_LIBS) $( NET_LIBS)
2012-03-28 01:13:14 +02:00
2015-08-28 17:33:40 +02:00
libgo_la_SOURCES = $( runtime_files)
libgo_la_LDFLAGS = $( libgo_ldflags)
libgo_la_LIBADD = $( libgo_libadd)
libgo_llgo_la_SOURCES = $( runtime_files)
libgo_llgo_la_LDFLAGS = $( libgo_ldflags)
libgo_llgo_la_LIBADD = $( libgo_libadd)
2012-03-28 01:13:14 +02:00
libgobegin_a_SOURCES = \
runtime/go-main.c
2015-08-28 17:33:40 +02:00
libgobegin_llgo_a_SOURCES = \
runtime/go-main.c
# Use -fPIC for libgobegin so that it can be put in a PIE.
libgobegin_a_CFLAGS = $( AM_CFLAGS) -fPIC
libgobegin_llgo_a_CFLAGS = $( AM_CFLAGS) -fPIC
libgolibbegin_a_SOURCES = \
runtime/go-libmain.c
libgolibbegin_a_CFLAGS = $( AM_CFLAGS) -fPIC
2012-03-28 01:13:14 +02:00
LTLDFLAGS = $( shell $( SHELL) $( top_srcdir) /../libtool-ldflags $( LDFLAGS) )
2017-04-10 13:32:00 +02:00
AM_GOCFLAGS = $( STRINGOPS_FLAG) $( GO_SPLIT_STACK)
2012-03-28 01:13:14 +02:00
GOCOMPILE = $( GOC) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_GOCFLAGS) $( GOCFLAGS)
LTGOCOMPILE = $( LIBTOOL) --tag GO --mode= compile $( GOC) $( INCLUDES) \
$( AM_GOCFLAGS) $( GOCFLAGS)
GOLINK = $( LIBTOOL) --tag GO --mode-link $( GOC) \
$( OPT_LDFLAGS) $( SECTION_LDFLAGS) $( AM_GOCFLAGS) $( LTLDFLAGS) -o $@
# Build the dependencies for a Go package.
BUILDDEPS = \
$( MKDIR_P) $( @D) ; \
2017-10-07 02:16:47 +02:00
dir = ` echo $@ | sed -e 's/.lo.dep$$//' ` ; \
files = ` $( SHELL) $( srcdir) /match.sh --goarch= $( GOARCH) --goos= $( GOOS) --srcdir= $( srcdir) /go/$$ dir --extrafiles= " $( extra_go_files_$( subst /,_,$( subst .lo.dep,,$@ ) ) ) " $( matchargs_$( subst /,_,$( subst .lo.dep,,$@ ) ) ) ` ; \
$( SHELL) $( srcdir) /godeps.sh ` echo $@ | sed -e 's/.dep$$//' ` $$ files > $@ .tmp; \
if ! cmp $@ .tmp $@ >/dev/null 2>/dev/null; then \
rm -f ` echo $@ | sed -e 's/\.dep$$//' ` ; \
fi ; \
2012-03-28 01:13:14 +02:00
mv -f $@ .tmp $@
# Build the .go files for a package, generating a .lo file.
BUILDPACKAGE = \
$( MKDIR_P) $( @D) ; \
2017-10-07 02:16:47 +02:00
files = ` echo $^ | sed -e 's/[^ ]*\.gox//g' -e 's/[^ ]*\.dep//' ` ; \
$( LTGOCOMPILE) -I . -c -fgo-pkgpath= ` echo $@ | sed -e 's/.lo$$//' -e 's|golang_org|vendor/golang_org|' ` $( $( subst -,_,$( subst .,_,$( subst /,_,$@ ) ) ) _GOCFLAGS) -o $@ $$ files
2012-03-28 01:13:14 +02:00
2015-08-28 17:33:40 +02:00
2017-10-07 02:16:47 +02:00
# How to build a .gox file from a .lo file.
BUILDGOX = \
f = ` echo $< | sed -e 's/.lo$$/.o/' ` ; \
$( OBJCOPY) -j .go_export $$ f $@ .tmp; \
$( SHELL) $( srcdir) /mvifdiff.sh $@ .tmp ` echo $@ | sed -e 's/s-gox/gox/' `
2015-08-28 17:33:40 +02:00
2012-03-28 01:13:14 +02:00
GOTESTFLAGS =
2015-08-28 17:33:40 +02:00
GOBENCH =
2012-03-28 01:13:14 +02:00
# Check a package.
CHECK = \
2014-09-21 19:33:12 +02:00
GC = " $( GOC) $( GOCFLAGS) $( $( subst /,_,$@ ) _GOCFLAGS) -L ` ${ PWD_COMMAND } ` -L ` ${ PWD_COMMAND } `/.libs " ; \
2012-03-28 01:13:14 +02:00
export GC; \
2014-09-21 19:33:12 +02:00
GOLIBS = " $( MATH_LIBS) $( NET_LIBS) $( LIBS) " ; \
2012-03-28 01:13:14 +02:00
export GOLIBS; \
RUNTESTFLAGS = " $( RUNTESTFLAGS) " ; \
export RUNTESTFLAGS; \
MAKE = " $( MAKE) " ; \
export MAKE; \
libgccdir = ` ${ GOC } -print-libgcc-file-name | sed -e 's|/[^/]*$$||' ` ; \
LD_LIBRARY_PATH = " ` ${ PWD_COMMAND } `/.libs: $$ {libgccdir}: ${ LD_LIBRARY_PATH } " ; \
LD_LIBRARY_PATH = ` echo $$ { LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,' ` ; \
export LD_LIBRARY_PATH; \
2014-09-21 19:33:12 +02:00
$( MKDIR_P) $( @D) ; \
2012-03-28 01:13:14 +02:00
rm -f $@ -testsum $@ -testlog; \
2017-10-07 02:16:47 +02:00
files = ` $( SHELL) $( srcdir) /match.sh --goarch= $( GOARCH) --goos= $( GOOS) --srcdir= $( srcdir) /go/$( @D) --extrafiles= " $( extra_go_files_$( subst /,_,$( @D) ) ) " $( matchargs_$( subst /,_,$( @D) ) ) ` ; \
2014-09-21 19:33:12 +02:00
if test " $( USE_DEJAGNU) " = "yes" ; then \
2017-10-07 02:16:47 +02:00
$( SHELL) $( srcdir) /testsuite/gotest --goarch= $( GOARCH) --goos= $( GOOS) --dejagnu= yes --basedir= $( srcdir) --srcdir= $( srcdir) /go/$( @D) --pkgpath= " $( @D) " --pkgfiles= " $$ files " --testname= " $( @D) " $( GOTESTFLAGS) ; \
2015-08-28 17:33:40 +02:00
elif test " $( GOBENCH) " != "" ; then \
2017-10-07 02:16:47 +02:00
$( SHELL) $( srcdir) /testsuite/gotest --goarch= $( GOARCH) --goos= $( GOOS) --basedir= $( srcdir) --srcdir= $( srcdir) /go/$( @D) --pkgpath= " $( @D) " --pkgfiles= " $$ files " --bench= " $( GOBENCH) " $( GOTESTFLAGS) ; \
2012-03-28 01:13:14 +02:00
else \
2017-10-07 02:16:47 +02:00
if $( SHELL) $( srcdir) /testsuite/gotest --goarch= $( GOARCH) --goos= $( GOOS) --basedir= $( srcdir) --srcdir= $( srcdir) /go/$( @D) --pkgpath= " $( @D) " --pkgfiles= " $$ files " $( GOTESTFLAGS) >>$@ -testlog 2>& 1; then \
2012-03-28 01:13:14 +02:00
echo " PASS: $( @D) " >> $@ -testlog; \
echo " PASS: $( @D) " ; \
echo " PASS: $( @D) " > $@ -testsum; \
else \
echo " FAIL: $( @D) " >> $@ -testlog; \
cat $@ -testlog; \
echo " FAIL: $( @D) " > $@ -testsum; \
exit 1; \
fi ; \
fi
# Build all packages before checking any.
2015-08-28 17:33:40 +02:00
CHECK_DEPS = $( toolexeclibgo_DATA) $( toolexeclibgoarchive_DATA) \
$( toolexeclibgocompress_DATA) $( toolexeclibgocontainer_DATA) \
$( toolexeclibgocrypto_DATA) $( toolexeclibgodebug_DATA) \
$( toolexeclibgoencoding_DATA) $( toolexeclibgoexp_DATA) \
$( toolexeclibgogo_DATA) $( toolexeclibgohash_DATA) \
$( toolexeclibgoimage_DATA) $( toolexeclibgoindex_DATA) \
$( toolexeclibgoio_DATA) $( toolexeclibgolog_DATA) \
$( toolexeclibgomath_DATA) $( toolexeclibgomime_DATA) \
$( toolexeclibgonet_DATA) $( toolexeclibgonethttp_DATA) \
$( toolexeclibgoos_DATA) $( toolexeclibgopath_DATA) \
$( toolexeclibgorpc_DATA) $( toolexeclibgoruntime_DATA) \
$( toolexeclibgosync_DATA) $( toolexeclibgotesting_DATA) \
$( toolexeclibgotext_DATA) $( toolexeclibgotexttemplate_DATA) \
$( toolexeclibgounicode_DATA) $( am__append_1) $( am__append_2)
2017-10-07 02:16:47 +02:00
# Pass -ffp-contract=off, or 386-specific options, when building the
# math package. MATH_FLAG is defined in configure.ac.
math_lo_GOCFLAGS = $( MATH_FLAG)
# Add the generated file runtime_sysinfo.go to the runtime package.
extra_go_files_runtime = runtime_sysinfo.go sigtab.go
# Add generated files to the syscall package.
extra_go_files_syscall = \
libcalls.go \
sysinfo.go \
syscall_arch.go \
$( syscall_epoll_file)
# Pass -fgo-compiling-runtime when compiling the runtime package.
runtime_lo_GOCFLAGS = -fgo-c-header= runtime.inc.tmp -fgo-compiling-runtime
runtime_check_GOCFLAGS = -fgo-compiling-runtime
runtime_internal_atomic_lo_GOCFLAGS = -fgo-compiling-runtime
runtime_internal_atomic_lo_check_GOCFLAGS = -fgo-compiling-runtime
runtime_internal_sys_lo_GOCFLAGS = -fgo-compiling-runtime
runtime_internal_sys_lo_check_GOCFLAGS = -fgo-compiling-runtime
@ U S E _ L I B F F I _ F A L S E @ matchargs_runtime =
# If libffi is supported (the normal case) use the ffi build tag for
# the runtime package.
@ U S E _ L I B F F I _ T R U E @ matchargs_runtime = --tag= libffi
2014-09-21 19:33:12 +02:00
# At least for now, we need -static-libgo for this test, because
# otherwise we can't get the line numbers.
2015-08-28 17:33:40 +02:00
# Also use -fno-inline to get better results from the memory profiler.
runtime_pprof_check_GOCFLAGS = -static-libgo -fno-inline
2017-10-07 02:16:47 +02:00
extra_go_files_runtime_internal_sys = version.go
@ H A V E _ S T A T _ T I M E S P E C _ F A L S E @ @ L I B G O _ I S _ S O L A R I S _ T R U E @ matchargs_os =
2012-03-28 01:13:14 +02:00
2017-10-07 02:16:47 +02:00
# Solaris 12 changed the type of fields in struct stat.
# Use a build tag, based on a configure check, to cope.
@ H A V E _ S T A T _ T I M E S P E C _ T R U E @ @ L I B G O _ I S _ S O L A R I S _ T R U E @ matchargs_os = --tag= solaristag
@ L I B G O _ I S _ S O L A R I S _ F A L S E @ matchargs_os =
@ L I B G O _ I S _ B S D _ T R U E @ golang_org_x_net_route_lo = \
@ L I B G O _ I S _ B S D _ T R U E @ g o l a n g _ o r g / x / n e t / r o u t e . l o
@ L I B G O _ I S _ B S D _ T R U E @ golang_org_x_net_route_check = \
@ L I B G O _ I S _ B S D _ T R U E @ g o l a n g _ o r g / x / n e t / r o u t e / c h e c k
@ L I B G O _ I S _ S O L A R I S _ T R U E @ golang_org_x_net_lif_lo = \
@ L I B G O _ I S _ S O L A R I S _ T R U E @ g o l a n g _ o r g / x / n e t / l i f . l o
@ L I B G O _ I S _ S O L A R I S _ T R U E @ golang_org_x_net_lif_check = \
@ L I B G O _ I S _ S O L A R I S _ T R U E @ g o l a n g _ o r g / x / n e t / l i f / c h e c k
2012-03-28 01:13:14 +02:00
TEST_PACKAGES = \
bufio/check \
bytes/check \
2017-10-07 02:16:47 +02:00
context/check \
2012-03-28 01:13:14 +02:00
errors/check \
expvar/check \
flag/check \
fmt/check \
html/check \
image/check \
io/check \
log/check \
math/check \
mime/check \
net/check \
os/check \
path/check \
reflect/check \
regexp/check \
runtime/check \
sort/check \
strconv/check \
strings/check \
sync/check \
2014-09-21 19:33:12 +02:00
syscall/check \
2012-03-28 01:13:14 +02:00
time/check \
unicode/check \
archive/tar/check \
archive/zip/check \
compress/bzip2/check \
compress/flate/check \
compress/gzip/check \
compress/lzw/check \
compress/zlib/check \
container/heap/check \
container/list/check \
container/ring/check \
crypto/aes/check \
crypto/cipher/check \
crypto/des/check \
crypto/dsa/check \
crypto/ecdsa/check \
crypto/elliptic/check \
crypto/hmac/check \
crypto/md5/check \
crypto/rand/check \
crypto/rc4/check \
crypto/rsa/check \
crypto/sha1/check \
crypto/sha256/check \
crypto/sha512/check \
crypto/subtle/check \
crypto/tls/check \
crypto/x509/check \
database/sql/check \
database/sql/driver/check \
debug/dwarf/check \
debug/elf/check \
debug/macho/check \
debug/pe/check \
2015-08-28 17:33:40 +02:00
debug/plan9obj/check \
2012-03-28 01:13:14 +02:00
encoding/ascii85/check \
encoding/asn1/check \
encoding/base32/check \
encoding/base64/check \
encoding/binary/check \
encoding/csv/check \
encoding/gob/check \
encoding/hex/check \
encoding/json/check \
encoding/pem/check \
encoding/xml/check \
exp/proxy/check \
exp/terminal/check \
html/template/check \
go/ast/check \
2017-04-10 13:32:00 +02:00
go/build/check \
go/constant/check \
2012-03-28 01:13:14 +02:00
go/doc/check \
2014-09-21 19:33:12 +02:00
go/format/check \
2017-04-10 13:32:00 +02:00
go/internal/gcimporter/check \
go/internal/gccgoimporter/check \
2012-03-28 01:13:14 +02:00
go/parser/check \
go/printer/check \
go/scanner/check \
go/token/check \
2017-04-10 13:32:00 +02:00
go/types/check \
2017-10-07 02:16:47 +02:00
golang_org/x/crypto/chacha20poly1305/check \
golang_org/x/crypto/chacha20poly1305/internal/chacha20/check \
golang_org/x/crypto/curve25519/check \
golang_org/x/crypto/poly1305/check \
golang_org/x/net/http2/hpack/check \
golang_org/x/net/idna/check \
golang_org/x/net/lex/httplex/check \
$( golang_org_x_net_lif_check) \
$( golang_org_x_net_route_check) \
2012-03-28 01:13:14 +02:00
hash/adler32/check \
hash/crc32/check \
hash/crc64/check \
hash/fnv/check \
image/color/check \
image/draw/check \
image/jpeg/check \
image/png/check \
index/suffixarray/check \
2017-10-07 02:16:47 +02:00
internal/pprof/profile/check \
2017-04-10 13:32:00 +02:00
internal/singleflight/check \
internal/trace/check \
2012-03-28 01:13:14 +02:00
io/ioutil/check \
log/syslog/check \
math/big/check \
math/cmplx/check \
math/rand/check \
mime/multipart/check \
2017-04-10 13:32:00 +02:00
mime/quotedprintable/check \
2012-03-28 01:13:14 +02:00
net/http/check \
net/http/cgi/check \
2014-09-21 19:33:12 +02:00
net/http/cookiejar/check \
2012-03-28 01:13:14 +02:00
net/http/fcgi/check \
net/http/httptest/check \
2017-10-07 02:16:47 +02:00
net/http/httptrace/check \
2012-03-28 01:13:14 +02:00
net/http/httputil/check \
2015-08-28 17:33:40 +02:00
net/http/internal/check \
2017-04-10 13:32:00 +02:00
net/internal/socktest/check \
2012-03-28 01:13:14 +02:00
net/mail/check \
net/rpc/check \
net/smtp/check \
net/textproto/check \
net/url/check \
net/rpc/jsonrpc/check \
os/exec/check \
os/signal/check \
os/user/check \
path/filepath/check \
regexp/syntax/check \
2017-10-07 02:16:47 +02:00
runtime/debug/check \
runtime/internal/atomic/check \
runtime/internal/sys/check \
2014-09-21 19:33:12 +02:00
runtime/pprof/check \
2017-10-07 02:16:47 +02:00
runtime/pprof/internal/protopprof/check \
2012-03-28 01:13:14 +02:00
sync/atomic/check \
text/scanner/check \
text/tabwriter/check \
text/template/check \
text/template/parse/check \
testing/quick/check \
unicode/utf16/check \
unicode/utf8/check
MOSTLYCLEAN_FILES = libgo.head libgo.sum.sep libgo.log.sep
CLEANFILES = *.go *.gox goc2c *.c s-version libgo.sum libgo.log
all : config .h
$( MAKE) $( AM_MAKEFLAGS) all-recursive
.SUFFIXES :
.SUFFIXES : .c .go .gox .o .obj .lo .a
2017-04-10 13:32:00 +02:00
am--refresh : Makefile
2012-03-28 01:13:14 +02:00
@:
$(srcdir)/Makefile.in : @MAINTAINER_MODE_TRUE @ $( srcdir ) /Makefile .am $( am__configure_deps )
@for dep in $? ; do \
case '$(am__configure_deps)' in \
*$$ dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign' ; \
$( am__cd) $( srcdir) && $( AUTOMAKE) --foreign \
&& exit 0; \
exit 1; ; \
esac ; \
done ; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile' ; \
$( am__cd) $( top_srcdir) && \
$( AUTOMAKE) --foreign Makefile
.PRECIOUS : Makefile
Makefile : $( srcdir ) /Makefile .in $( top_builddir ) /config .status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status' ; \
$( SHELL) ./config.status; ; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)' ; \
cd $( top_builddir) && $( SHELL) ./config.status $@ $( am__depfiles_maybe) ; ; \
esac ;
$(top_builddir)/config.status : $( top_srcdir ) /configure $( CONFIG_STATUS_DEPENDENCIES )
$( SHELL) ./config.status --recheck
$(top_srcdir)/configure : @MAINTAINER_MODE_TRUE @ $( am__configure_deps )
$( am__cd) $( srcdir) && $( AUTOCONF)
$(ACLOCAL_M4) : @MAINTAINER_MODE_TRUE @ $( am__aclocal_m 4_deps )
$( am__cd) $( srcdir) && $( ACLOCAL) $( ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps) :
config.h : stamp -h 1
2017-04-10 13:32:00 +02:00
@if test ! -f $@ ; then rm -f stamp-h1; else :; fi
@if test ! -f $@ ; then $( MAKE) $( AM_MAKEFLAGS) stamp-h1; else :; fi
2012-03-28 01:13:14 +02:00
stamp-h1 : $( srcdir ) /config .h .in $( top_builddir ) /config .status
@rm -f stamp-h1
cd $( top_builddir) && $( SHELL) ./config.status config.h
$(srcdir)/config.h.in : @MAINTAINER_MODE_TRUE @ $( am__configure_deps )
( $( am__cd) $( top_srcdir) && $( AUTOHEADER) )
rm -f stamp-h1
touch $@
distclean-hdr :
-rm -f config.h stamp-h1
install-toolexeclibLIBRARIES : $( toolexeclib_LIBRARIES )
@$( NORMAL_INSTALL)
@list= '$(toolexeclib_LIBRARIES)' ; test -n " $( toolexeclibdir) " || list = ; \
list2 = ; for p in $$ list; do \
if test -f $$ p; then \
list2 = " $$ list2 $$ p " ; \
else :; fi ; \
done ; \
test -z " $$ list2 " || { \
2017-04-10 13:32:00 +02:00
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibdir) " || exit 1; \
2012-03-28 01:13:14 +02:00
echo " $( INSTALL_DATA) $$ list2 ' $( DESTDIR) $( toolexeclibdir) ' " ; \
$( INSTALL_DATA) $$ list2 " $( DESTDIR) $( toolexeclibdir) " || exit $$ ?; }
@$( POST_INSTALL)
@list= '$(toolexeclib_LIBRARIES)' ; test -n " $( toolexeclibdir) " || list = ; \
for p in $$ list; do \
if test -f $$ p; then \
$( am__strip_dir) \
echo " ( cd ' $( DESTDIR) $( toolexeclibdir) ' && $( RANLIB) $$ f ) " ; \
( cd " $( DESTDIR) $( toolexeclibdir) " && $( RANLIB) $$ f ) || exit $$ ?; \
else :; fi ; \
done
uninstall-toolexeclibLIBRARIES :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclib_LIBRARIES)' ; test -n " $( toolexeclibdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
clean-toolexeclibLIBRARIES :
-test -z " $( toolexeclib_LIBRARIES) " || rm -f $( toolexeclib_LIBRARIES)
2017-04-10 13:32:00 +02:00
libgobegin-llgo.a : $( libgobegin_llgo_a_OBJECTS ) $( libgobegin_llgo_a_DEPENDENCIES ) $( EXTRA_libgobegin_llgo_a_DEPENDENCIES )
2015-08-28 17:33:40 +02:00
-rm -f libgobegin-llgo.a
$( libgobegin_llgo_a_AR) libgobegin-llgo.a $( libgobegin_llgo_a_OBJECTS) $( libgobegin_llgo_a_LIBADD)
$( RANLIB) libgobegin-llgo.a
2017-04-10 13:32:00 +02:00
libgobegin.a : $( libgobegin_a_OBJECTS ) $( libgobegin_a_DEPENDENCIES ) $( EXTRA_libgobegin_a_DEPENDENCIES )
2012-03-28 01:13:14 +02:00
-rm -f libgobegin.a
$( libgobegin_a_AR) libgobegin.a $( libgobegin_a_OBJECTS) $( libgobegin_a_LIBADD)
$( RANLIB) libgobegin.a
2017-04-10 13:32:00 +02:00
libgolibbegin.a : $( libgolibbegin_a_OBJECTS ) $( libgolibbegin_a_DEPENDENCIES ) $( EXTRA_libgolibbegin_a_DEPENDENCIES )
2015-08-28 17:33:40 +02:00
-rm -f libgolibbegin.a
$( libgolibbegin_a_AR) libgolibbegin.a $( libgolibbegin_a_OBJECTS) $( libgolibbegin_a_LIBADD)
$( RANLIB) libgolibbegin.a
2012-03-28 01:13:14 +02:00
install-toolexeclibLTLIBRARIES : $( toolexeclib_LTLIBRARIES )
@$( NORMAL_INSTALL)
@list= '$(toolexeclib_LTLIBRARIES)' ; test -n " $( toolexeclibdir) " || list = ; \
list2 = ; for p in $$ list; do \
if test -f $$ p; then \
list2 = " $$ list2 $$ p " ; \
else :; fi ; \
done ; \
test -z " $$ list2 " || { \
2017-04-10 13:32:00 +02:00
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibdir) " || exit 1; \
2012-03-28 01:13:14 +02:00
echo " $( LIBTOOL) $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode=install $( INSTALL) $( INSTALL_STRIP_FLAG) $$ list2 ' $( DESTDIR) $( toolexeclibdir) ' " ; \
$( LIBTOOL) $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= install $( INSTALL) $( INSTALL_STRIP_FLAG) $$ list2 " $( DESTDIR) $( toolexeclibdir) " ; \
}
uninstall-toolexeclibLTLIBRARIES :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclib_LTLIBRARIES)' ; test -n " $( toolexeclibdir) " || list = ; \
for p in $$ list; do \
$( am__strip_dir) \
echo " $( LIBTOOL) $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode=uninstall rm -f ' $( DESTDIR) $( toolexeclibdir) / $$ f' " ; \
$( LIBTOOL) $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= uninstall rm -f " $( DESTDIR) $( toolexeclibdir) / $$ f " ; \
done
clean-toolexeclibLTLIBRARIES :
-test -z " $( toolexeclib_LTLIBRARIES) " || rm -f $( toolexeclib_LTLIBRARIES)
@list= '$(toolexeclib_LTLIBRARIES)' ; for p in $$ list; do \
dir = " `echo $$ p | sed -e 's|/[^/]* $$ ||'` " ; \
test " $$ dir " != " $$ p " || dir = .; \
echo " rm -f \" $$ {dir}/so_locations\" " ; \
rm -f " $$ {dir}/so_locations " ; \
done
2017-04-10 13:32:00 +02:00
libgo-llgo.la : $( libgo_llgo_la_OBJECTS ) $( libgo_llgo_la_DEPENDENCIES ) $( EXTRA_libgo_llgo_la_DEPENDENCIES )
2015-08-28 17:33:40 +02:00
$( libgo_llgo_la_LINK) $( am_libgo_llgo_la_rpath) $( libgo_llgo_la_OBJECTS) $( libgo_llgo_la_LIBADD) $( LIBS)
2017-04-10 13:32:00 +02:00
libgo.la : $( libgo_la_OBJECTS ) $( libgo_la_DEPENDENCIES ) $( EXTRA_libgo_la_DEPENDENCIES )
2015-08-28 17:33:40 +02:00
$( libgo_la_LINK) $( am_libgo_la_rpath) $( libgo_la_OBJECTS) $( libgo_la_LIBADD) $( LIBS)
2012-03-28 01:13:14 +02:00
mostlyclean-compile :
-rm -f *.$( OBJEXT)
distclean-compile :
-rm -f *.tab.c
2017-10-07 02:16:47 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / a e s h a s h . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / e n v _ p o s i x . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g e t n c p u - b s d . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g e t n c p u - i r i x . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g e t n c p u - l i n u x . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g e t n c p u - n o n e . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g e t n c p u - s o l a r i s . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - a s s e r t . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - b r e a k p o i n t . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - c a l l e r . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - c a l l e r s . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - c d i v . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - c g o . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - c o n s t r u c t - m a p . P l o @ a m _ _ q u o t e @
2015-08-28 17:33:40 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - f f i . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - f i e l d t r a c k . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - m a t h e r r . P l o @ a m _ _ q u o t e @
2017-10-07 02:16:47 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - m e m c l r . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - m e m c m p . P l o @ a m _ _ q u o t e @
2017-10-07 02:16:47 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - m e m e q u a l . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - m e m m o v e . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - n a n o t i m e . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - n e w . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - n o s y s . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - n o w . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - r e f l e c t - c a l l . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - r u n t i m e - e r r o r . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - s e t e n v . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - s i g n a l . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - s t r s l i c e . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - t y p e d e s c - e q u a l . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - u n s a f e - n e w . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - u n s a f e - n e w a r r a y . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - u n s a f e - p o i n t e r . P l o @ a m _ _ q u o t e @
2015-08-28 17:33:40 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - u n s e t e n v . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - u n w i n d . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / g o - v a r a r g s . P l o @ a m _ _ q u o t e @
2015-08-28 17:33:40 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / h e a p d u m p . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . P o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . P o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . P o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m a l l o c . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m c a c h e . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m c e n t r a l . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m e m . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m e m _ p o s i x _ m e m a l i g n . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m f i x a l l o c . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m g c 0 . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m h e a p . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / m s i z e . P l o @ a m _ _ q u o t e @
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / p a n i c . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / p a r f o r . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / p r i n t . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / p r o c . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / r t e m s - t a s k - v a r i a b l e - a d d . P l o @ a m _ _ q u o t e @
2017-10-07 02:16:47 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / r u n t i m e _ c . P l o @ a m _ _ q u o t e @
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / t h r e a d - l i n u x . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / t h r e a d - s e m a . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / t h r e a d . P l o @ a m _ _ q u o t e @
@ A M D E P _ T R U E @ @ a m _ _ i n c l u d e @ @ a m _ _ q u o t e @ . / $( DEPDIR ) / y i e l d . P l o @ a m _ _ q u o t e @
.c.o :
@ a m _ _ f a s t d e p C C _ T R U E @ $( COMPILE ) - M T $@ - M D - M P - M F $( DEPDIR ) / $* . T p o - c - o $@ $<
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / $* . T p o $( DEPDIR ) / $* . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = '$<' object = '$@' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( COMPILE ) - c $<
.c.obj :
@ a m _ _ f a s t d e p C C _ T R U E @ $( COMPILE ) - M T $@ - M D - M P - M F $( DEPDIR ) / $* . T p o - c - o $@ ` $( CYGPATH_W ) '$<' `
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / $* . T p o $( DEPDIR ) / $* . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = '$<' object = '$@' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( COMPILE ) - c ` $( CYGPATH_W ) '$<' `
.c.lo :
@ a m _ _ f a s t d e p C C _ T R U E @ $( LTCOMPILE ) - M T $@ - M D - M P - M F $( DEPDIR ) / $* . T p o - c - o $@ $<
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / $* . T p o $( DEPDIR ) / $* . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = '$<' object = '$@' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LTCOMPILE ) - c - o $@ $<
2015-08-28 17:33:40 +02:00
libgobegin_llgo_a-go-main.o : runtime /go -main .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_llgo_a_CFLAGS ) $( CFLAGS ) - M T l i b g o b e g i n _ l l g o _ a - g o - m a i n . o - M D - M P - M F $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . T p o - c - o l i b g o b e g i n _ l l g o _ a - g o - m a i n . o ` t e s t - f 'runtime/go-main.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - m a i n . c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . T p o $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-main.c' object = 'libgobegin_llgo_a-go-main.o' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_llgo_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o b e g i n _ l l g o _ a - g o - m a i n . o ` t e s t - f 'runtime/go-main.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - m a i n . c
libgobegin_llgo_a-go-main.obj : runtime /go -main .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_llgo_a_CFLAGS ) $( CFLAGS ) - M T l i b g o b e g i n _ l l g o _ a - g o - m a i n . o b j - M D - M P - M F $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . T p o - c - o l i b g o b e g i n _ l l g o _ a - g o - m a i n . o b j ` i f t e s t - f 'runtime/go-main.c' ; t h e n $( CYGPATH_W ) 'runtime/go-main.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-main.c' ; f i `
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . T p o $( DEPDIR ) / l i b g o b e g i n _ l l g o _ a - g o - m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-main.c' object = 'libgobegin_llgo_a-go-main.obj' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_llgo_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o b e g i n _ l l g o _ a - g o - m a i n . o b j ` i f t e s t - f 'runtime/go-main.c' ; t h e n $( CYGPATH_W ) 'runtime/go-main.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-main.c' ; f i `
libgobegin_a-go-main.o : runtime /go -main .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_a_CFLAGS ) $( CFLAGS ) - M T l i b g o b e g i n _ a - g o - m a i n . o - M D - M P - M F $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . T p o - c - o l i b g o b e g i n _ a - g o - m a i n . o ` t e s t - f 'runtime/go-main.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - m a i n . c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . T p o $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-main.c' object = 'libgobegin_a-go-main.o' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o b e g i n _ a - g o - m a i n . o ` t e s t - f 'runtime/go-main.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - m a i n . c
libgobegin_a-go-main.obj : runtime /go -main .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_a_CFLAGS ) $( CFLAGS ) - M T l i b g o b e g i n _ a - g o - m a i n . o b j - M D - M P - M F $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . T p o - c - o l i b g o b e g i n _ a - g o - m a i n . o b j ` i f t e s t - f 'runtime/go-main.c' ; t h e n $( CYGPATH_W ) 'runtime/go-main.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-main.c' ; f i `
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . T p o $( DEPDIR ) / l i b g o b e g i n _ a - g o - m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-main.c' object = 'libgobegin_a-go-main.obj' libtool = no @AMDEPBACKSLASH@
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
2015-08-28 17:33:40 +02:00
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgobegin_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o b e g i n _ a - g o - m a i n . o b j ` i f t e s t - f 'runtime/go-main.c' ; t h e n $( CYGPATH_W ) 'runtime/go-main.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-main.c' ; f i `
2012-03-28 01:13:14 +02:00
2015-08-28 17:33:40 +02:00
libgolibbegin_a-go-libmain.o : runtime /go -libmain .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgolibbegin_a_CFLAGS ) $( CFLAGS ) - M T l i b g o l i b b e g i n _ a - g o - l i b m a i n . o - M D - M P - M F $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . T p o - c - o l i b g o l i b b e g i n _ a - g o - l i b m a i n . o ` t e s t - f 'runtime/go-libmain.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - l i b m a i n . c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . T p o $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-libmain.c' object = 'libgolibbegin_a-go-libmain.o' libtool = no @AMDEPBACKSLASH@
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
2015-08-28 17:33:40 +02:00
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgolibbegin_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o l i b b e g i n _ a - g o - l i b m a i n . o ` t e s t - f 'runtime/go-libmain.c' | | e c h o '$(srcdir)/' ` r u n t i m e / g o - l i b m a i n . c
libgolibbegin_a-go-libmain.obj : runtime /go -libmain .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgolibbegin_a_CFLAGS ) $( CFLAGS ) - M T l i b g o l i b b e g i n _ a - g o - l i b m a i n . o b j - M D - M P - M F $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . T p o - c - o l i b g o l i b b e g i n _ a - g o - l i b m a i n . o b j ` i f t e s t - f 'runtime/go-libmain.c' ; t h e n $( CYGPATH_W ) 'runtime/go-libmain.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-libmain.c' ; f i `
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . T p o $( DEPDIR ) / l i b g o l i b b e g i n _ a - g o - l i b m a i n . P o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-libmain.c' object = 'libgolibbegin_a-go-libmain.obj' libtool = no @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( CC ) $( DEFS ) $( DEFAULT_INCLUDES ) $( INCLUDES ) $( AM_CPPFLAGS ) $( CPPFLAGS ) $( libgolibbegin_a_CFLAGS ) $( CFLAGS ) - c - o l i b g o l i b b e g i n _ a - g o - l i b m a i n . o b j ` i f t e s t - f 'runtime/go-libmain.c' ; t h e n $( CYGPATH_W ) 'runtime/go-libmain.c' ; e l s e $( CYGPATH_W ) '$(srcdir)/runtime/go-libmain.c' ; f i `
2012-03-28 01:13:14 +02:00
2017-10-07 02:16:47 +02:00
aeshash.lo : runtime /aeshash .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT aeshash.lo -MD -MP -MF $( DEPDIR) /aeshash.Tpo -c -o aeshash.lo ` test -f 'runtime/aeshash.c' || echo '$(srcdir)/' ` runtime/aeshash.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / a e s h a s h . T p o $( DEPDIR ) / a e s h a s h . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/aeshash.c' object = 'aeshash.lo' libtool = yes @AMDEPBACKSLASH@
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
2017-10-07 02:16:47 +02:00
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o aeshash.lo ` test -f 'runtime/aeshash.c' || echo '$(srcdir)/' ` runtime/aeshash.c
2012-03-28 01:13:14 +02:00
go-assert.lo : runtime /go -assert .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-assert.lo -MD -MP -MF $( DEPDIR) /go-assert.Tpo -c -o go-assert.lo ` test -f 'runtime/go-assert.c' || echo '$(srcdir)/' ` runtime/go-assert.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - a s s e r t . T p o $( DEPDIR ) / g o - a s s e r t . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-assert.c' object = 'go-assert.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-assert.lo ` test -f 'runtime/go-assert.c' || echo '$(srcdir)/' ` runtime/go-assert.c
go-breakpoint.lo : runtime /go -breakpoint .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-breakpoint.lo -MD -MP -MF $( DEPDIR) /go-breakpoint.Tpo -c -o go-breakpoint.lo ` test -f 'runtime/go-breakpoint.c' || echo '$(srcdir)/' ` runtime/go-breakpoint.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - b r e a k p o i n t . T p o $( DEPDIR ) / g o - b r e a k p o i n t . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-breakpoint.c' object = 'go-breakpoint.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-breakpoint.lo ` test -f 'runtime/go-breakpoint.c' || echo '$(srcdir)/' ` runtime/go-breakpoint.c
go-caller.lo : runtime /go -caller .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-caller.lo -MD -MP -MF $( DEPDIR) /go-caller.Tpo -c -o go-caller.lo ` test -f 'runtime/go-caller.c' || echo '$(srcdir)/' ` runtime/go-caller.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - c a l l e r . T p o $( DEPDIR ) / g o - c a l l e r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-caller.c' object = 'go-caller.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-caller.lo ` test -f 'runtime/go-caller.c' || echo '$(srcdir)/' ` runtime/go-caller.c
go-callers.lo : runtime /go -callers .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-callers.lo -MD -MP -MF $( DEPDIR) /go-callers.Tpo -c -o go-callers.lo ` test -f 'runtime/go-callers.c' || echo '$(srcdir)/' ` runtime/go-callers.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - c a l l e r s . T p o $( DEPDIR ) / g o - c a l l e r s . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-callers.c' object = 'go-callers.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-callers.lo ` test -f 'runtime/go-callers.c' || echo '$(srcdir)/' ` runtime/go-callers.c
2014-09-21 19:33:12 +02:00
go-cdiv.lo : runtime /go -cdiv .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-cdiv.lo -MD -MP -MF $( DEPDIR) /go-cdiv.Tpo -c -o go-cdiv.lo ` test -f 'runtime/go-cdiv.c' || echo '$(srcdir)/' ` runtime/go-cdiv.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - c d i v . T p o $( DEPDIR ) / g o - c d i v . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-cdiv.c' object = 'go-cdiv.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-cdiv.lo ` test -f 'runtime/go-cdiv.c' || echo '$(srcdir)/' ` runtime/go-cdiv.c
2012-03-28 01:13:14 +02:00
go-cgo.lo : runtime /go -cgo .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-cgo.lo -MD -MP -MF $( DEPDIR) /go-cgo.Tpo -c -o go-cgo.lo ` test -f 'runtime/go-cgo.c' || echo '$(srcdir)/' ` runtime/go-cgo.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - c g o . T p o $( DEPDIR ) / g o - c g o . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-cgo.c' object = 'go-cgo.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-cgo.lo ` test -f 'runtime/go-cgo.c' || echo '$(srcdir)/' ` runtime/go-cgo.c
go-construct-map.lo : runtime /go -construct -map .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-construct-map.lo -MD -MP -MF $( DEPDIR) /go-construct-map.Tpo -c -o go-construct-map.lo ` test -f 'runtime/go-construct-map.c' || echo '$(srcdir)/' ` runtime/go-construct-map.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - c o n s t r u c t - m a p . T p o $( DEPDIR ) / g o - c o n s t r u c t - m a p . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-construct-map.c' object = 'go-construct-map.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-construct-map.lo ` test -f 'runtime/go-construct-map.c' || echo '$(srcdir)/' ` runtime/go-construct-map.c
2015-08-28 17:33:40 +02:00
go-ffi.lo : runtime /go -ffi .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-ffi.lo -MD -MP -MF $( DEPDIR) /go-ffi.Tpo -c -o go-ffi.lo ` test -f 'runtime/go-ffi.c' || echo '$(srcdir)/' ` runtime/go-ffi.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - f f i . T p o $( DEPDIR ) / g o - f f i . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-ffi.c' object = 'go-ffi.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-ffi.lo ` test -f 'runtime/go-ffi.c' || echo '$(srcdir)/' ` runtime/go-ffi.c
2014-09-21 19:33:12 +02:00
go-fieldtrack.lo : runtime /go -fieldtrack .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-fieldtrack.lo -MD -MP -MF $( DEPDIR) /go-fieldtrack.Tpo -c -o go-fieldtrack.lo ` test -f 'runtime/go-fieldtrack.c' || echo '$(srcdir)/' ` runtime/go-fieldtrack.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - f i e l d t r a c k . T p o $( DEPDIR ) / g o - f i e l d t r a c k . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-fieldtrack.c' object = 'go-fieldtrack.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-fieldtrack.lo ` test -f 'runtime/go-fieldtrack.c' || echo '$(srcdir)/' ` runtime/go-fieldtrack.c
2012-03-28 01:13:14 +02:00
go-matherr.lo : runtime /go -matherr .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-matherr.lo -MD -MP -MF $( DEPDIR) /go-matherr.Tpo -c -o go-matherr.lo ` test -f 'runtime/go-matherr.c' || echo '$(srcdir)/' ` runtime/go-matherr.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - m a t h e r r . T p o $( DEPDIR ) / g o - m a t h e r r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-matherr.c' object = 'go-matherr.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-matherr.lo ` test -f 'runtime/go-matherr.c' || echo '$(srcdir)/' ` runtime/go-matherr.c
2017-10-07 02:16:47 +02:00
go-memclr.lo : runtime /go -memclr .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-memclr.lo -MD -MP -MF $( DEPDIR) /go-memclr.Tpo -c -o go-memclr.lo ` test -f 'runtime/go-memclr.c' || echo '$(srcdir)/' ` runtime/go-memclr.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - m e m c l r . T p o $( DEPDIR ) / g o - m e m c l r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-memclr.c' object = 'go-memclr.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-memclr.lo ` test -f 'runtime/go-memclr.c' || echo '$(srcdir)/' ` runtime/go-memclr.c
2014-09-21 19:33:12 +02:00
go-memcmp.lo : runtime /go -memcmp .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-memcmp.lo -MD -MP -MF $( DEPDIR) /go-memcmp.Tpo -c -o go-memcmp.lo ` test -f 'runtime/go-memcmp.c' || echo '$(srcdir)/' ` runtime/go-memcmp.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - m e m c m p . T p o $( DEPDIR ) / g o - m e m c m p . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-memcmp.c' object = 'go-memcmp.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-memcmp.lo ` test -f 'runtime/go-memcmp.c' || echo '$(srcdir)/' ` runtime/go-memcmp.c
2017-10-07 02:16:47 +02:00
go-memequal.lo : runtime /go -memequal .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-memequal.lo -MD -MP -MF $( DEPDIR) /go-memequal.Tpo -c -o go-memequal.lo ` test -f 'runtime/go-memequal.c' || echo '$(srcdir)/' ` runtime/go-memequal.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - m e m e q u a l . T p o $( DEPDIR ) / g o - m e m e q u a l . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-memequal.c' object = 'go-memequal.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-memequal.lo ` test -f 'runtime/go-memequal.c' || echo '$(srcdir)/' ` runtime/go-memequal.c
go-memmove.lo : runtime /go -memmove .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-memmove.lo -MD -MP -MF $( DEPDIR) /go-memmove.Tpo -c -o go-memmove.lo ` test -f 'runtime/go-memmove.c' || echo '$(srcdir)/' ` runtime/go-memmove.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - m e m m o v e . T p o $( DEPDIR ) / g o - m e m m o v e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-memmove.c' object = 'go-memmove.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-memmove.lo ` test -f 'runtime/go-memmove.c' || echo '$(srcdir)/' ` runtime/go-memmove.c
2012-03-28 01:13:14 +02:00
go-nanotime.lo : runtime /go -nanotime .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-nanotime.lo -MD -MP -MF $( DEPDIR) /go-nanotime.Tpo -c -o go-nanotime.lo ` test -f 'runtime/go-nanotime.c' || echo '$(srcdir)/' ` runtime/go-nanotime.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - n a n o t i m e . T p o $( DEPDIR ) / g o - n a n o t i m e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-nanotime.c' object = 'go-nanotime.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-nanotime.lo ` test -f 'runtime/go-nanotime.c' || echo '$(srcdir)/' ` runtime/go-nanotime.c
go-now.lo : runtime /go -now .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-now.lo -MD -MP -MF $( DEPDIR) /go-now.Tpo -c -o go-now.lo ` test -f 'runtime/go-now.c' || echo '$(srcdir)/' ` runtime/go-now.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - n o w . T p o $( DEPDIR ) / g o - n o w . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-now.c' object = 'go-now.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-now.lo ` test -f 'runtime/go-now.c' || echo '$(srcdir)/' ` runtime/go-now.c
go-new.lo : runtime /go -new .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-new.lo -MD -MP -MF $( DEPDIR) /go-new.Tpo -c -o go-new.lo ` test -f 'runtime/go-new.c' || echo '$(srcdir)/' ` runtime/go-new.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - n e w . T p o $( DEPDIR ) / g o - n e w . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-new.c' object = 'go-new.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-new.lo ` test -f 'runtime/go-new.c' || echo '$(srcdir)/' ` runtime/go-new.c
go-nosys.lo : runtime /go -nosys .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-nosys.lo -MD -MP -MF $( DEPDIR) /go-nosys.Tpo -c -o go-nosys.lo ` test -f 'runtime/go-nosys.c' || echo '$(srcdir)/' ` runtime/go-nosys.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - n o s y s . T p o $( DEPDIR ) / g o - n o s y s . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-nosys.c' object = 'go-nosys.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-nosys.lo ` test -f 'runtime/go-nosys.c' || echo '$(srcdir)/' ` runtime/go-nosys.c
go-reflect-call.lo : runtime /go -reflect -call .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-reflect-call.lo -MD -MP -MF $( DEPDIR) /go-reflect-call.Tpo -c -o go-reflect-call.lo ` test -f 'runtime/go-reflect-call.c' || echo '$(srcdir)/' ` runtime/go-reflect-call.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - r e f l e c t - c a l l . T p o $( DEPDIR ) / g o - r e f l e c t - c a l l . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-reflect-call.c' object = 'go-reflect-call.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-reflect-call.lo ` test -f 'runtime/go-reflect-call.c' || echo '$(srcdir)/' ` runtime/go-reflect-call.c
go-runtime-error.lo : runtime /go -runtime -error .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-runtime-error.lo -MD -MP -MF $( DEPDIR) /go-runtime-error.Tpo -c -o go-runtime-error.lo ` test -f 'runtime/go-runtime-error.c' || echo '$(srcdir)/' ` runtime/go-runtime-error.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - r u n t i m e - e r r o r . T p o $( DEPDIR ) / g o - r u n t i m e - e r r o r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-runtime-error.c' object = 'go-runtime-error.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-runtime-error.lo ` test -f 'runtime/go-runtime-error.c' || echo '$(srcdir)/' ` runtime/go-runtime-error.c
go-setenv.lo : runtime /go -setenv .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-setenv.lo -MD -MP -MF $( DEPDIR) /go-setenv.Tpo -c -o go-setenv.lo ` test -f 'runtime/go-setenv.c' || echo '$(srcdir)/' ` runtime/go-setenv.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - s e t e n v . T p o $( DEPDIR ) / g o - s e t e n v . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-setenv.c' object = 'go-setenv.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-setenv.lo ` test -f 'runtime/go-setenv.c' || echo '$(srcdir)/' ` runtime/go-setenv.c
go-signal.lo : runtime /go -signal .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-signal.lo -MD -MP -MF $( DEPDIR) /go-signal.Tpo -c -o go-signal.lo ` test -f 'runtime/go-signal.c' || echo '$(srcdir)/' ` runtime/go-signal.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - s i g n a l . T p o $( DEPDIR ) / g o - s i g n a l . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-signal.c' object = 'go-signal.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-signal.lo ` test -f 'runtime/go-signal.c' || echo '$(srcdir)/' ` runtime/go-signal.c
go-strslice.lo : runtime /go -strslice .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-strslice.lo -MD -MP -MF $( DEPDIR) /go-strslice.Tpo -c -o go-strslice.lo ` test -f 'runtime/go-strslice.c' || echo '$(srcdir)/' ` runtime/go-strslice.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - s t r s l i c e . T p o $( DEPDIR ) / g o - s t r s l i c e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-strslice.c' object = 'go-strslice.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-strslice.lo ` test -f 'runtime/go-strslice.c' || echo '$(srcdir)/' ` runtime/go-strslice.c
go-typedesc-equal.lo : runtime /go -typedesc -equal .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-typedesc-equal.lo -MD -MP -MF $( DEPDIR) /go-typedesc-equal.Tpo -c -o go-typedesc-equal.lo ` test -f 'runtime/go-typedesc-equal.c' || echo '$(srcdir)/' ` runtime/go-typedesc-equal.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - t y p e d e s c - e q u a l . T p o $( DEPDIR ) / g o - t y p e d e s c - e q u a l . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-typedesc-equal.c' object = 'go-typedesc-equal.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-typedesc-equal.lo ` test -f 'runtime/go-typedesc-equal.c' || echo '$(srcdir)/' ` runtime/go-typedesc-equal.c
go-unsafe-new.lo : runtime /go -unsafe -new .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-unsafe-new.lo -MD -MP -MF $( DEPDIR) /go-unsafe-new.Tpo -c -o go-unsafe-new.lo ` test -f 'runtime/go-unsafe-new.c' || echo '$(srcdir)/' ` runtime/go-unsafe-new.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - u n s a f e - n e w . T p o $( DEPDIR ) / g o - u n s a f e - n e w . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-unsafe-new.c' object = 'go-unsafe-new.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-unsafe-new.lo ` test -f 'runtime/go-unsafe-new.c' || echo '$(srcdir)/' ` runtime/go-unsafe-new.c
go-unsafe-newarray.lo : runtime /go -unsafe -newarray .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-unsafe-newarray.lo -MD -MP -MF $( DEPDIR) /go-unsafe-newarray.Tpo -c -o go-unsafe-newarray.lo ` test -f 'runtime/go-unsafe-newarray.c' || echo '$(srcdir)/' ` runtime/go-unsafe-newarray.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - u n s a f e - n e w a r r a y . T p o $( DEPDIR ) / g o - u n s a f e - n e w a r r a y . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-unsafe-newarray.c' object = 'go-unsafe-newarray.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-unsafe-newarray.lo ` test -f 'runtime/go-unsafe-newarray.c' || echo '$(srcdir)/' ` runtime/go-unsafe-newarray.c
go-unsafe-pointer.lo : runtime /go -unsafe -pointer .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-unsafe-pointer.lo -MD -MP -MF $( DEPDIR) /go-unsafe-pointer.Tpo -c -o go-unsafe-pointer.lo ` test -f 'runtime/go-unsafe-pointer.c' || echo '$(srcdir)/' ` runtime/go-unsafe-pointer.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - u n s a f e - p o i n t e r . T p o $( DEPDIR ) / g o - u n s a f e - p o i n t e r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-unsafe-pointer.c' object = 'go-unsafe-pointer.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-unsafe-pointer.lo ` test -f 'runtime/go-unsafe-pointer.c' || echo '$(srcdir)/' ` runtime/go-unsafe-pointer.c
2015-08-28 17:33:40 +02:00
go-unsetenv.lo : runtime /go -unsetenv .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-unsetenv.lo -MD -MP -MF $( DEPDIR) /go-unsetenv.Tpo -c -o go-unsetenv.lo ` test -f 'runtime/go-unsetenv.c' || echo '$(srcdir)/' ` runtime/go-unsetenv.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - u n s e t e n v . T p o $( DEPDIR ) / g o - u n s e t e n v . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-unsetenv.c' object = 'go-unsetenv.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-unsetenv.lo ` test -f 'runtime/go-unsetenv.c' || echo '$(srcdir)/' ` runtime/go-unsetenv.c
2012-03-28 01:13:14 +02:00
go-unwind.lo : runtime /go -unwind .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-unwind.lo -MD -MP -MF $( DEPDIR) /go-unwind.Tpo -c -o go-unwind.lo ` test -f 'runtime/go-unwind.c' || echo '$(srcdir)/' ` runtime/go-unwind.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - u n w i n d . T p o $( DEPDIR ) / g o - u n w i n d . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-unwind.c' object = 'go-unwind.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-unwind.lo ` test -f 'runtime/go-unwind.c' || echo '$(srcdir)/' ` runtime/go-unwind.c
2014-09-21 19:33:12 +02:00
go-varargs.lo : runtime /go -varargs .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT go-varargs.lo -MD -MP -MF $( DEPDIR) /go-varargs.Tpo -c -o go-varargs.lo ` test -f 'runtime/go-varargs.c' || echo '$(srcdir)/' ` runtime/go-varargs.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g o - v a r a r g s . T p o $( DEPDIR ) / g o - v a r a r g s . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/go-varargs.c' object = 'go-varargs.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o go-varargs.lo ` test -f 'runtime/go-varargs.c' || echo '$(srcdir)/' ` runtime/go-varargs.c
env_posix.lo : runtime /env_posix .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT env_posix.lo -MD -MP -MF $( DEPDIR) /env_posix.Tpo -c -o env_posix.lo ` test -f 'runtime/env_posix.c' || echo '$(srcdir)/' ` runtime/env_posix.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / e n v _ p o s i x . T p o $( DEPDIR ) / e n v _ p o s i x . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/env_posix.c' object = 'env_posix.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o env_posix.lo ` test -f 'runtime/env_posix.c' || echo '$(srcdir)/' ` runtime/env_posix.c
2015-08-28 17:33:40 +02:00
heapdump.lo : runtime /heapdump .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT heapdump.lo -MD -MP -MF $( DEPDIR) /heapdump.Tpo -c -o heapdump.lo ` test -f 'runtime/heapdump.c' || echo '$(srcdir)/' ` runtime/heapdump.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / h e a p d u m p . T p o $( DEPDIR ) / h e a p d u m p . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/heapdump.c' object = 'heapdump.lo' libtool = yes @AMDEPBACKSLASH@
2014-09-21 19:33:12 +02:00
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
2015-08-28 17:33:40 +02:00
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o heapdump.lo ` test -f 'runtime/heapdump.c' || echo '$(srcdir)/' ` runtime/heapdump.c
2014-09-21 19:33:12 +02:00
2012-03-28 01:13:14 +02:00
mcache.lo : runtime /mcache .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mcache.lo -MD -MP -MF $( DEPDIR) /mcache.Tpo -c -o mcache.lo ` test -f 'runtime/mcache.c' || echo '$(srcdir)/' ` runtime/mcache.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m c a c h e . T p o $( DEPDIR ) / m c a c h e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mcache.c' object = 'mcache.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mcache.lo ` test -f 'runtime/mcache.c' || echo '$(srcdir)/' ` runtime/mcache.c
mcentral.lo : runtime /mcentral .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mcentral.lo -MD -MP -MF $( DEPDIR) /mcentral.Tpo -c -o mcentral.lo ` test -f 'runtime/mcentral.c' || echo '$(srcdir)/' ` runtime/mcentral.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m c e n t r a l . T p o $( DEPDIR ) / m c e n t r a l . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mcentral.c' object = 'mcentral.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mcentral.lo ` test -f 'runtime/mcentral.c' || echo '$(srcdir)/' ` runtime/mcentral.c
mem_posix_memalign.lo : runtime /mem_posix_memalign .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mem_posix_memalign.lo -MD -MP -MF $( DEPDIR) /mem_posix_memalign.Tpo -c -o mem_posix_memalign.lo ` test -f 'runtime/mem_posix_memalign.c' || echo '$(srcdir)/' ` runtime/mem_posix_memalign.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m e m _ p o s i x _ m e m a l i g n . T p o $( DEPDIR ) / m e m _ p o s i x _ m e m a l i g n . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mem_posix_memalign.c' object = 'mem_posix_memalign.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mem_posix_memalign.lo ` test -f 'runtime/mem_posix_memalign.c' || echo '$(srcdir)/' ` runtime/mem_posix_memalign.c
mem.lo : runtime /mem .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mem.lo -MD -MP -MF $( DEPDIR) /mem.Tpo -c -o mem.lo ` test -f 'runtime/mem.c' || echo '$(srcdir)/' ` runtime/mem.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m e m . T p o $( DEPDIR ) / m e m . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mem.c' object = 'mem.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mem.lo ` test -f 'runtime/mem.c' || echo '$(srcdir)/' ` runtime/mem.c
mfixalloc.lo : runtime /mfixalloc .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mfixalloc.lo -MD -MP -MF $( DEPDIR) /mfixalloc.Tpo -c -o mfixalloc.lo ` test -f 'runtime/mfixalloc.c' || echo '$(srcdir)/' ` runtime/mfixalloc.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m f i x a l l o c . T p o $( DEPDIR ) / m f i x a l l o c . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mfixalloc.c' object = 'mfixalloc.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mfixalloc.lo ` test -f 'runtime/mfixalloc.c' || echo '$(srcdir)/' ` runtime/mfixalloc.c
mgc0.lo : runtime /mgc 0.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mgc0.lo -MD -MP -MF $( DEPDIR) /mgc0.Tpo -c -o mgc0.lo ` test -f 'runtime/mgc0.c' || echo '$(srcdir)/' ` runtime/mgc0.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m g c 0 . T p o $( DEPDIR ) / m g c 0 . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mgc0.c' object = 'mgc0.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mgc0.lo ` test -f 'runtime/mgc0.c' || echo '$(srcdir)/' ` runtime/mgc0.c
mheap.lo : runtime /mheap .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT mheap.lo -MD -MP -MF $( DEPDIR) /mheap.Tpo -c -o mheap.lo ` test -f 'runtime/mheap.c' || echo '$(srcdir)/' ` runtime/mheap.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m h e a p . T p o $( DEPDIR ) / m h e a p . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/mheap.c' object = 'mheap.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o mheap.lo ` test -f 'runtime/mheap.c' || echo '$(srcdir)/' ` runtime/mheap.c
msize.lo : runtime /msize .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT msize.lo -MD -MP -MF $( DEPDIR) /msize.Tpo -c -o msize.lo ` test -f 'runtime/msize.c' || echo '$(srcdir)/' ` runtime/msize.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / m s i z e . T p o $( DEPDIR ) / m s i z e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/msize.c' object = 'msize.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o msize.lo ` test -f 'runtime/msize.c' || echo '$(srcdir)/' ` runtime/msize.c
2014-09-21 19:33:12 +02:00
panic.lo : runtime /panic .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT panic.lo -MD -MP -MF $( DEPDIR) /panic.Tpo -c -o panic.lo ` test -f 'runtime/panic.c' || echo '$(srcdir)/' ` runtime/panic.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / p a n i c . T p o $( DEPDIR ) / p a n i c . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/panic.c' object = 'panic.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o panic.lo ` test -f 'runtime/panic.c' || echo '$(srcdir)/' ` runtime/panic.c
parfor.lo : runtime /parfor .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT parfor.lo -MD -MP -MF $( DEPDIR) /parfor.Tpo -c -o parfor.lo ` test -f 'runtime/parfor.c' || echo '$(srcdir)/' ` runtime/parfor.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / p a r f o r . T p o $( DEPDIR ) / p a r f o r . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/parfor.c' object = 'parfor.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o parfor.lo ` test -f 'runtime/parfor.c' || echo '$(srcdir)/' ` runtime/parfor.c
print.lo : runtime /print .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT print.lo -MD -MP -MF $( DEPDIR) /print.Tpo -c -o print.lo ` test -f 'runtime/print.c' || echo '$(srcdir)/' ` runtime/print.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / p r i n t . T p o $( DEPDIR ) / p r i n t . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/print.c' object = 'print.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o print.lo ` test -f 'runtime/print.c' || echo '$(srcdir)/' ` runtime/print.c
2012-03-28 01:13:14 +02:00
proc.lo : runtime /proc .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT proc.lo -MD -MP -MF $( DEPDIR) /proc.Tpo -c -o proc.lo ` test -f 'runtime/proc.c' || echo '$(srcdir)/' ` runtime/proc.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / p r o c . T p o $( DEPDIR ) / p r o c . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/proc.c' object = 'proc.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o proc.lo ` test -f 'runtime/proc.c' || echo '$(srcdir)/' ` runtime/proc.c
2017-10-07 02:16:47 +02:00
runtime_c.lo : runtime /runtime_c .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT runtime_c.lo -MD -MP -MF $( DEPDIR) /runtime_c.Tpo -c -o runtime_c.lo ` test -f 'runtime/runtime_c.c' || echo '$(srcdir)/' ` runtime/runtime_c.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / r u n t i m e _ c . T p o $( DEPDIR ) / r u n t i m e _ c . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/runtime_c.c' object = 'runtime_c.lo' libtool = yes @AMDEPBACKSLASH@
2012-03-28 01:13:14 +02:00
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
2017-10-07 02:16:47 +02:00
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o runtime_c.lo ` test -f 'runtime/runtime_c.c' || echo '$(srcdir)/' ` runtime/runtime_c.c
2012-03-28 01:13:14 +02:00
thread.lo : runtime /thread .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT thread.lo -MD -MP -MF $( DEPDIR) /thread.Tpo -c -o thread.lo ` test -f 'runtime/thread.c' || echo '$(srcdir)/' ` runtime/thread.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / t h r e a d . T p o $( DEPDIR ) / t h r e a d . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/thread.c' object = 'thread.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o thread.lo ` test -f 'runtime/thread.c' || echo '$(srcdir)/' ` runtime/thread.c
2017-10-07 02:16:47 +02:00
thread-sema.lo : runtime /thread -sema .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT thread-sema.lo -MD -MP -MF $( DEPDIR) /thread-sema.Tpo -c -o thread-sema.lo ` test -f 'runtime/thread-sema.c' || echo '$(srcdir)/' ` runtime/thread-sema.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / t h r e a d - s e m a . T p o $( DEPDIR ) / t h r e a d - s e m a . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/thread-sema.c' object = 'thread-sema.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o thread-sema.lo ` test -f 'runtime/thread-sema.c' || echo '$(srcdir)/' ` runtime/thread-sema.c
thread-linux.lo : runtime /thread -linux .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT thread-linux.lo -MD -MP -MF $( DEPDIR) /thread-linux.Tpo -c -o thread-linux.lo ` test -f 'runtime/thread-linux.c' || echo '$(srcdir)/' ` runtime/thread-linux.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / t h r e a d - l i n u x . T p o $( DEPDIR ) / t h r e a d - l i n u x . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/thread-linux.c' object = 'thread-linux.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o thread-linux.lo ` test -f 'runtime/thread-linux.c' || echo '$(srcdir)/' ` runtime/thread-linux.c
2012-03-28 01:13:14 +02:00
yield.lo : runtime /yield .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT yield.lo -MD -MP -MF $( DEPDIR) /yield.Tpo -c -o yield.lo ` test -f 'runtime/yield.c' || echo '$(srcdir)/' ` runtime/yield.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / y i e l d . T p o $( DEPDIR ) / y i e l d . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/yield.c' object = 'yield.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o yield.lo ` test -f 'runtime/yield.c' || echo '$(srcdir)/' ` runtime/yield.c
rtems-task-variable-add.lo : runtime /rtems -task -variable -add .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT rtems-task-variable-add.lo -MD -MP -MF $( DEPDIR) /rtems-task-variable-add.Tpo -c -o rtems-task-variable-add.lo ` test -f 'runtime/rtems-task-variable-add.c' || echo '$(srcdir)/' ` runtime/rtems-task-variable-add.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / r t e m s - t a s k - v a r i a b l e - a d d . T p o $( DEPDIR ) / r t e m s - t a s k - v a r i a b l e - a d d . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/rtems-task-variable-add.c' object = 'rtems-task-variable-add.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o rtems-task-variable-add.lo ` test -f 'runtime/rtems-task-variable-add.c' || echo '$(srcdir)/' ` runtime/rtems-task-variable-add.c
2014-09-21 19:33:12 +02:00
getncpu-none.lo : runtime /getncpu -none .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT getncpu-none.lo -MD -MP -MF $( DEPDIR) /getncpu-none.Tpo -c -o getncpu-none.lo ` test -f 'runtime/getncpu-none.c' || echo '$(srcdir)/' ` runtime/getncpu-none.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g e t n c p u - n o n e . T p o $( DEPDIR ) / g e t n c p u - n o n e . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/getncpu-none.c' object = 'getncpu-none.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o getncpu-none.lo ` test -f 'runtime/getncpu-none.c' || echo '$(srcdir)/' ` runtime/getncpu-none.c
getncpu-bsd.lo : runtime /getncpu -bsd .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT getncpu-bsd.lo -MD -MP -MF $( DEPDIR) /getncpu-bsd.Tpo -c -o getncpu-bsd.lo ` test -f 'runtime/getncpu-bsd.c' || echo '$(srcdir)/' ` runtime/getncpu-bsd.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g e t n c p u - b s d . T p o $( DEPDIR ) / g e t n c p u - b s d . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/getncpu-bsd.c' object = 'getncpu-bsd.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o getncpu-bsd.lo ` test -f 'runtime/getncpu-bsd.c' || echo '$(srcdir)/' ` runtime/getncpu-bsd.c
getncpu-solaris.lo : runtime /getncpu -solaris .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT getncpu-solaris.lo -MD -MP -MF $( DEPDIR) /getncpu-solaris.Tpo -c -o getncpu-solaris.lo ` test -f 'runtime/getncpu-solaris.c' || echo '$(srcdir)/' ` runtime/getncpu-solaris.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g e t n c p u - s o l a r i s . T p o $( DEPDIR ) / g e t n c p u - s o l a r i s . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/getncpu-solaris.c' object = 'getncpu-solaris.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o getncpu-solaris.lo ` test -f 'runtime/getncpu-solaris.c' || echo '$(srcdir)/' ` runtime/getncpu-solaris.c
getncpu-irix.lo : runtime /getncpu -irix .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT getncpu-irix.lo -MD -MP -MF $( DEPDIR) /getncpu-irix.Tpo -c -o getncpu-irix.lo ` test -f 'runtime/getncpu-irix.c' || echo '$(srcdir)/' ` runtime/getncpu-irix.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g e t n c p u - i r i x . T p o $( DEPDIR ) / g e t n c p u - i r i x . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/getncpu-irix.c' object = 'getncpu-irix.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o getncpu-irix.lo ` test -f 'runtime/getncpu-irix.c' || echo '$(srcdir)/' ` runtime/getncpu-irix.c
getncpu-linux.lo : runtime /getncpu -linux .c
@ a m _ _ f a s t d e p C C _ T R U E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -MT getncpu-linux.lo -MD -MP -MF $( DEPDIR) /getncpu-linux.Tpo -c -o getncpu-linux.lo ` test -f 'runtime/getncpu-linux.c' || echo '$(srcdir)/' ` runtime/getncpu-linux.c
@ a m _ _ f a s t d e p C C _ T R U E @ $( am__mv ) $( DEPDIR ) / g e t n c p u - l i n u x . T p o $( DEPDIR ) / g e t n c p u - l i n u x . P l o
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ source = 'runtime/getncpu-linux.c' object = 'getncpu-linux.lo' libtool = yes @AMDEPBACKSLASH@
@ A M D E P _ T R U E @ @ a m _ _ f a s t d e p C C _ F A L S E @ DEPDIR = $( DEPDIR) $( CCDEPMODE) $( depcomp) @AMDEPBACKSLASH@
@ a m _ _ f a s t d e p C C _ F A L S E @ $( LIBTOOL ) --tag = CC $( AM_LIBTOOLFLAGS) $( LIBTOOLFLAGS) --mode= compile $( CC) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) $( CPPFLAGS) $( AM_CFLAGS) $( CFLAGS) -c -o getncpu-linux.lo ` test -f 'runtime/getncpu-linux.c' || echo '$(srcdir)/' ` runtime/getncpu-linux.c
2012-03-28 01:13:14 +02:00
mostlyclean-libtool :
-rm -f *.lo
clean-libtool :
-rm -rf .libs _libs
distclean-libtool :
-rm -f libtool config.lt
# GNU Make needs to see an explicit $(MAKE) variable in the command it
# runs to enable its job server during parallel builds. Hence the
# comments below.
all-multi :
$( MULTIDO) $( AM_MAKEFLAGS) DO = all multi-do # $(MAKE)
install-multi :
$( MULTIDO) $( AM_MAKEFLAGS) DO = install multi-do # $(MAKE)
mostlyclean-multi :
$( MULTICLEAN) $( AM_MAKEFLAGS) DO = mostlyclean multi-clean # $(MAKE)
clean-multi :
$( MULTICLEAN) $( AM_MAKEFLAGS) DO = clean multi-clean # $(MAKE)
distclean-multi :
$( MULTICLEAN) $( AM_MAKEFLAGS) DO = distclean multi-clean # $(MAKE)
maintainer-clean-multi :
$( MULTICLEAN) $( AM_MAKEFLAGS) DO = maintainer-clean multi-clean # $(MAKE)
install-toolexeclibgoDATA : $( toolexeclibgo_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgo_DATA)' ; test -n " $( toolexeclibgodir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgodir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgodir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgodir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgodir) " || exit $$ ?; \
done
uninstall-toolexeclibgoDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgo_DATA)' ; test -n " $( toolexeclibgodir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgodir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoarchiveDATA : $( toolexeclibgoarchive_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoarchive_DATA)' ; test -n " $( toolexeclibgoarchivedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoarchivedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoarchivedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoarchivedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoarchivedir) " || exit $$ ?; \
done
uninstall-toolexeclibgoarchiveDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoarchive_DATA)' ; test -n " $( toolexeclibgoarchivedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoarchivedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgocompressDATA : $( toolexeclibgocompress_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgocompress_DATA)' ; test -n " $( toolexeclibgocompressdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgocompressdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgocompressdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgocompressdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgocompressdir) " || exit $$ ?; \
done
uninstall-toolexeclibgocompressDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgocompress_DATA)' ; test -n " $( toolexeclibgocompressdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgocompressdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgocontainerDATA : $( toolexeclibgocontainer_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgocontainer_DATA)' ; test -n " $( toolexeclibgocontainerdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgocontainerdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgocontainerdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgocontainerdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgocontainerdir) " || exit $$ ?; \
done
uninstall-toolexeclibgocontainerDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgocontainer_DATA)' ; test -n " $( toolexeclibgocontainerdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgocontainerdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgocryptoDATA : $( toolexeclibgocrypto_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgocrypto_DATA)' ; test -n " $( toolexeclibgocryptodir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgocryptodir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgocryptodir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgocryptodir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgocryptodir) " || exit $$ ?; \
done
uninstall-toolexeclibgocryptoDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgocrypto_DATA)' ; test -n " $( toolexeclibgocryptodir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgocryptodir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgocryptox509DATA : $( toolexeclibgocryptox 509_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgocryptox509_DATA)' ; test -n " $( toolexeclibgocryptox509dir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgocryptox509dir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgocryptox509dir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgocryptox509dir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgocryptox509dir) " || exit $$ ?; \
done
uninstall-toolexeclibgocryptox509DATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgocryptox509_DATA)' ; test -n " $( toolexeclibgocryptox509dir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgocryptox509dir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgodatabaseDATA : $( toolexeclibgodatabase_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgodatabase_DATA)' ; test -n " $( toolexeclibgodatabasedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgodatabasedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgodatabasedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgodatabasedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgodatabasedir) " || exit $$ ?; \
done
uninstall-toolexeclibgodatabaseDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgodatabase_DATA)' ; test -n " $( toolexeclibgodatabasedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgodatabasedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgodatabasesqlDATA : $( toolexeclibgodatabasesql_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgodatabasesql_DATA)' ; test -n " $( toolexeclibgodatabasesqldir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgodatabasesqldir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgodatabasesqldir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgodatabasesqldir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgodatabasesqldir) " || exit $$ ?; \
done
uninstall-toolexeclibgodatabasesqlDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgodatabasesql_DATA)' ; test -n " $( toolexeclibgodatabasesqldir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgodatabasesqldir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgodebugDATA : $( toolexeclibgodebug_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgodebug_DATA)' ; test -n " $( toolexeclibgodebugdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgodebugdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgodebugdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgodebugdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgodebugdir) " || exit $$ ?; \
done
uninstall-toolexeclibgodebugDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgodebug_DATA)' ; test -n " $( toolexeclibgodebugdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgodebugdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoencodingDATA : $( toolexeclibgoencoding_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoencoding_DATA)' ; test -n " $( toolexeclibgoencodingdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoencodingdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoencodingdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoencodingdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoencodingdir) " || exit $$ ?; \
done
uninstall-toolexeclibgoencodingDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoencoding_DATA)' ; test -n " $( toolexeclibgoencodingdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoencodingdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoexpDATA : $( toolexeclibgoexp_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoexp_DATA)' ; test -n " $( toolexeclibgoexpdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoexpdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoexpdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoexpdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoexpdir) " || exit $$ ?; \
done
uninstall-toolexeclibgoexpDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoexp_DATA)' ; test -n " $( toolexeclibgoexpdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoexpdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgogoDATA : $( toolexeclibgogo_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgogo_DATA)' ; test -n " $( toolexeclibgogodir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgogodir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgogodir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgogodir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgogodir) " || exit $$ ?; \
done
uninstall-toolexeclibgogoDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgogo_DATA)' ; test -n " $( toolexeclibgogodir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgogodir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgohashDATA : $( toolexeclibgohash_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgohash_DATA)' ; test -n " $( toolexeclibgohashdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgohashdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgohashdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgohashdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgohashdir) " || exit $$ ?; \
done
uninstall-toolexeclibgohashDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgohash_DATA)' ; test -n " $( toolexeclibgohashdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgohashdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgohtmlDATA : $( toolexeclibgohtml_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgohtml_DATA)' ; test -n " $( toolexeclibgohtmldir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgohtmldir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgohtmldir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgohtmldir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgohtmldir) " || exit $$ ?; \
done
uninstall-toolexeclibgohtmlDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgohtml_DATA)' ; test -n " $( toolexeclibgohtmldir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgohtmldir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoimageDATA : $( toolexeclibgoimage_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoimage_DATA)' ; test -n " $( toolexeclibgoimagedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoimagedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoimagedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoimagedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoimagedir) " || exit $$ ?; \
done
uninstall-toolexeclibgoimageDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoimage_DATA)' ; test -n " $( toolexeclibgoimagedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoimagedir)' ; $( am__uninstall_files_from_dir)
2014-09-21 19:33:12 +02:00
install-toolexeclibgoimagecolorDATA : $( toolexeclibgoimagecolor_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoimagecolor_DATA)' ; test -n " $( toolexeclibgoimagecolordir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoimagecolordir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoimagecolordir) " || exit 1; \
fi ; \
2014-09-21 19:33:12 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoimagecolordir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoimagecolordir) " || exit $$ ?; \
done
uninstall-toolexeclibgoimagecolorDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoimagecolor_DATA)' ; test -n " $( toolexeclibgoimagecolordir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoimagecolordir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoindexDATA : $( toolexeclibgoindex_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoindex_DATA)' ; test -n " $( toolexeclibgoindexdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoindexdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoindexdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoindexdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoindexdir) " || exit $$ ?; \
done
uninstall-toolexeclibgoindexDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoindex_DATA)' ; test -n " $( toolexeclibgoindexdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoindexdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoioDATA : $( toolexeclibgoio_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoio_DATA)' ; test -n " $( toolexeclibgoiodir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoiodir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoiodir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoiodir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoiodir) " || exit $$ ?; \
done
uninstall-toolexeclibgoioDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoio_DATA)' ; test -n " $( toolexeclibgoiodir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoiodir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgologDATA : $( toolexeclibgolog_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgolog_DATA)' ; test -n " $( toolexeclibgologdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgologdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgologdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgologdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgologdir) " || exit $$ ?; \
done
uninstall-toolexeclibgologDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgolog_DATA)' ; test -n " $( toolexeclibgologdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgologdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgomathDATA : $( toolexeclibgomath_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgomath_DATA)' ; test -n " $( toolexeclibgomathdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgomathdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgomathdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgomathdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgomathdir) " || exit $$ ?; \
done
uninstall-toolexeclibgomathDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgomath_DATA)' ; test -n " $( toolexeclibgomathdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgomathdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgomimeDATA : $( toolexeclibgomime_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgomime_DATA)' ; test -n " $( toolexeclibgomimedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgomimedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgomimedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgomimedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgomimedir) " || exit $$ ?; \
done
uninstall-toolexeclibgomimeDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgomime_DATA)' ; test -n " $( toolexeclibgomimedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgomimedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgonetDATA : $( toolexeclibgonet_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgonet_DATA)' ; test -n " $( toolexeclibgonetdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgonetdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgonetdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgonetdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgonetdir) " || exit $$ ?; \
done
uninstall-toolexeclibgonetDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgonet_DATA)' ; test -n " $( toolexeclibgonetdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgonetdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgonethttpDATA : $( toolexeclibgonethttp_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgonethttp_DATA)' ; test -n " $( toolexeclibgonethttpdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgonethttpdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgonethttpdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgonethttpdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgonethttpdir) " || exit $$ ?; \
done
uninstall-toolexeclibgonethttpDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgonethttp_DATA)' ; test -n " $( toolexeclibgonethttpdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgonethttpdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgonetrpcDATA : $( toolexeclibgonetrpc_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgonetrpc_DATA)' ; test -n " $( toolexeclibgonetrpcdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgonetrpcdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgonetrpcdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgonetrpcdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgonetrpcdir) " || exit $$ ?; \
done
uninstall-toolexeclibgonetrpcDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgonetrpc_DATA)' ; test -n " $( toolexeclibgonetrpcdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgonetrpcdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoosDATA : $( toolexeclibgoos_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoos_DATA)' ; test -n " $( toolexeclibgoosdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoosdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoosdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoosdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoosdir) " || exit $$ ?; \
done
uninstall-toolexeclibgoosDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoos_DATA)' ; test -n " $( toolexeclibgoosdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoosdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgopathDATA : $( toolexeclibgopath_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgopath_DATA)' ; test -n " $( toolexeclibgopathdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgopathdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgopathdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgopathdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgopathdir) " || exit $$ ?; \
done
uninstall-toolexeclibgopathDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgopath_DATA)' ; test -n " $( toolexeclibgopathdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgopathdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoregexpDATA : $( toolexeclibgoregexp_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoregexp_DATA)' ; test -n " $( toolexeclibgoregexpdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoregexpdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoregexpdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoregexpdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoregexpdir) " || exit $$ ?; \
done
uninstall-toolexeclibgoregexpDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoregexp_DATA)' ; test -n " $( toolexeclibgoregexpdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoregexpdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgoruntimeDATA : $( toolexeclibgoruntime_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgoruntime_DATA)' ; test -n " $( toolexeclibgoruntimedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgoruntimedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgoruntimedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgoruntimedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgoruntimedir) " || exit $$ ?; \
done
uninstall-toolexeclibgoruntimeDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgoruntime_DATA)' ; test -n " $( toolexeclibgoruntimedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgoruntimedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgosyncDATA : $( toolexeclibgosync_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgosync_DATA)' ; test -n " $( toolexeclibgosyncdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgosyncdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgosyncdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgosyncdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgosyncdir) " || exit $$ ?; \
done
uninstall-toolexeclibgosyncDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgosync_DATA)' ; test -n " $( toolexeclibgosyncdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgosyncdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgotestingDATA : $( toolexeclibgotesting_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgotesting_DATA)' ; test -n " $( toolexeclibgotestingdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgotestingdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgotestingdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgotestingdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgotestingdir) " || exit $$ ?; \
done
uninstall-toolexeclibgotestingDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgotesting_DATA)' ; test -n " $( toolexeclibgotestingdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgotestingdir)' ; $( am__uninstall_files_from_dir)
2017-10-07 02:16:47 +02:00
install-toolexeclibgotestinginternalDATA : $( toolexeclibgotestinginternal_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgotestinginternal_DATA)' ; test -n " $( toolexeclibgotestinginternaldir) " || list = ; \
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgotestinginternaldir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgotestinginternaldir) " || exit 1; \
fi ; \
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgotestinginternaldir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgotestinginternaldir) " || exit $$ ?; \
done
uninstall-toolexeclibgotestinginternalDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgotestinginternal_DATA)' ; test -n " $( toolexeclibgotestinginternaldir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
dir = '$(DESTDIR)$(toolexeclibgotestinginternaldir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgotextDATA : $( toolexeclibgotext_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgotext_DATA)' ; test -n " $( toolexeclibgotextdir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgotextdir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgotextdir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgotextdir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgotextdir) " || exit $$ ?; \
done
uninstall-toolexeclibgotextDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgotext_DATA)' ; test -n " $( toolexeclibgotextdir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgotextdir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgotexttemplateDATA : $( toolexeclibgotexttemplate_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgotexttemplate_DATA)' ; test -n " $( toolexeclibgotexttemplatedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgotexttemplatedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgotexttemplatedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgotexttemplatedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgotexttemplatedir) " || exit $$ ?; \
done
uninstall-toolexeclibgotexttemplateDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgotexttemplate_DATA)' ; test -n " $( toolexeclibgotexttemplatedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgotexttemplatedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
install-toolexeclibgounicodeDATA : $( toolexeclibgounicode_DATA )
@$( NORMAL_INSTALL)
@list= '$(toolexeclibgounicode_DATA)' ; test -n " $( toolexeclibgounicodedir) " || list = ; \
2017-04-10 13:32:00 +02:00
if test -n " $$ list " ; then \
echo " $( MKDIR_P) ' $( DESTDIR) $( toolexeclibgounicodedir) ' " ; \
$( MKDIR_P) " $( DESTDIR) $( toolexeclibgounicodedir) " || exit 1; \
fi ; \
2012-03-28 01:13:14 +02:00
for p in $$ list; do \
if test -f " $$ p " ; then d = ; else d = " $( srcdir) / " ; fi ; \
echo " $$ d $$ p " ; \
done | $( am__base_list) | \
while read files; do \
echo " $( INSTALL_DATA) $$ files ' $( DESTDIR) $( toolexeclibgounicodedir) ' " ; \
$( INSTALL_DATA) $$ files " $( DESTDIR) $( toolexeclibgounicodedir) " || exit $$ ?; \
done
uninstall-toolexeclibgounicodeDATA :
@$( NORMAL_UNINSTALL)
@list= '$(toolexeclibgounicode_DATA)' ; test -n " $( toolexeclibgounicodedir) " || list = ; \
files = ` for p in $$ list; do echo $$ p; done | sed -e 's|^.*/||' ` ; \
2017-04-10 13:32:00 +02:00
dir = '$(DESTDIR)$(toolexeclibgounicodedir)' ; $( am__uninstall_files_from_dir)
2012-03-28 01:13:14 +02:00
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS) :
@fail= failcom = 'exit 1' ; \
for f in x $$ MAKEFLAGS; do \
case $$ f in \
*= * | --[ !k] *) ; ; \
*k*) failcom = 'fail=yes' ; ; \
esac ; \
done ; \
dot_seen = no; \
target = ` echo $@ | sed s/-recursive//` ; \
list = '$(SUBDIRS)' ; for subdir in $$ list; do \
echo " Making $$ target in $$ subdir " ; \
if test " $$ subdir " = "." ; then \
dot_seen = yes; \
local_target = " $$ target-am " ; \
else \
local_target = " $$ target " ; \
fi ; \
( $( am__cd) $$ subdir && $( MAKE) $( AM_MAKEFLAGS) $$ local_target) \
|| eval $$ failcom; \
done ; \
if test " $$ dot_seen " = "no" ; then \
$( MAKE) $( AM_MAKEFLAGS) " $$ target-am " || exit 1; \
fi ; test -z " $$ fail "
$(RECURSIVE_CLEAN_TARGETS) :
@fail= failcom = 'exit 1' ; \
for f in x $$ MAKEFLAGS; do \
case $$ f in \
*= * | --[ !k] *) ; ; \
*k*) failcom = 'fail=yes' ; ; \
esac ; \
done ; \
dot_seen = no; \
case " $@ " in \
distclean-* | maintainer-clean-*) list = '$(DIST_SUBDIRS)' ; ; \
*) list = '$(SUBDIRS)' ; ; \
esac ; \
rev = '' ; for subdir in $$ list; do \
if test " $$ subdir " = "." ; then :; else \
rev = " $$ subdir $$ rev " ; \
fi ; \
done ; \
rev = " $$ rev . " ; \
target = ` echo $@ | sed s/-recursive//` ; \
for subdir in $$ rev; do \
echo " Making $$ target in $$ subdir " ; \
if test " $$ subdir " = "." ; then \
local_target = " $$ target-am " ; \
else \
local_target = " $$ target " ; \
fi ; \
( $( am__cd) $$ subdir && $( MAKE) $( AM_MAKEFLAGS) $$ local_target) \
|| eval $$ failcom; \
done && test -z " $$ fail "
tags-recursive :
list = '$(SUBDIRS)' ; for subdir in $$ list; do \
test " $$ subdir " = . || ( $( am__cd) $$ subdir && $( MAKE) $( AM_MAKEFLAGS) tags) ; \
done
ctags-recursive :
list = '$(SUBDIRS)' ; for subdir in $$ list; do \
test " $$ subdir " = . || ( $( am__cd) $$ subdir && $( MAKE) $( AM_MAKEFLAGS) ctags) ; \
done
ID : $( HEADERS ) $( SOURCES ) $( LISP ) $( TAGS_FILES )
list = '$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)' ; \
unique = ` for i in $$ list; do \
if test -f " $$ i " ; then echo $$ i; else echo $( srcdir) /$$ i; fi ; \
done | \
$( AWK) ' { files[ $$ 0] = 1; nonempty = 1; } \
END { if ( nonempty) { for ( i in files) print i; } ; } ' ` ; \
mkid -fID $$ unique
tags : TAGS
TAGS : tags -recursive $( HEADERS ) $( SOURCES ) config .h .in $( TAGS_DEPENDENCIES ) \
$( TAGS_FILES) $( LISP)
set x; \
here = ` pwd ` ; \
if ( $( ETAGS) --etags-include --version) >/dev/null 2>& 1; then \
include_option = --etags-include; \
empty_fix = .; \
else \
include_option = --include; \
empty_fix = ; \
fi ; \
list = '$(SUBDIRS)' ; for subdir in $$ list; do \
if test " $$ subdir " = .; then :; else \
test ! -f $$ subdir/TAGS || \
set " $$ @ " " $$ include_option= $$ here/ $$ subdir/TAGS " ; \
fi ; \
done ; \
list = '$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)' ; \
unique = ` for i in $$ list; do \
if test -f " $$ i " ; then echo $$ i; else echo $( srcdir) /$$ i; fi ; \
done | \
$( AWK) ' { files[ $$ 0] = 1; nonempty = 1; } \
END { if ( nonempty) { for ( i in files) print i; } ; } ' ` ; \
shift; \
if test -z " $( ETAGS_ARGS) $$ * $$ unique " ; then :; else \
test -n " $$ unique " || unique = $$ empty_fix; \
if test $$ # -gt 0; then \
$( ETAGS) $( ETAGSFLAGS) $( AM_ETAGSFLAGS) $( ETAGS_ARGS) \
" $$ @ " $$ unique; \
else \
$( ETAGS) $( ETAGSFLAGS) $( AM_ETAGSFLAGS) $( ETAGS_ARGS) \
$$ unique; \
fi ; \
fi
ctags : CTAGS
CTAGS : ctags -recursive $( HEADERS ) $( SOURCES ) config .h .in $( TAGS_DEPENDENCIES ) \
$( TAGS_FILES) $( LISP)
list = '$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)' ; \
unique = ` for i in $$ list; do \
if test -f " $$ i " ; then echo $$ i; else echo $( srcdir) /$$ i; fi ; \
done | \
$( AWK) ' { files[ $$ 0] = 1; nonempty = 1; } \
END { if ( nonempty) { for ( i in files) print i; } ; } ' ` ; \
test -z " $( CTAGS_ARGS) $$ unique " \
|| $( CTAGS) $( CTAGSFLAGS) $( AM_CTAGSFLAGS) $( CTAGS_ARGS) \
$$ unique
GTAGS :
here = ` $( am__cd) $( top_builddir) && pwd ` \
&& $( am__cd) $( top_srcdir) \
&& gtags -i $( GTAGS_ARGS) " $$ here "
distclean-tags :
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
check-am : all -am
check : check -recursive
all-am : Makefile $( LIBRARIES ) $( LTLIBRARIES ) all -multi $( DATA ) \
config.h
installdirs : installdirs -recursive
installdirs-am :
2017-10-07 02:16:47 +02:00
for dir in " $( DESTDIR) $( toolexeclibdir) " " $( DESTDIR) $( toolexeclibdir) " " $( DESTDIR) $( toolexeclibgodir) " " $( DESTDIR) $( toolexeclibgoarchivedir) " " $( DESTDIR) $( toolexeclibgocompressdir) " " $( DESTDIR) $( toolexeclibgocontainerdir) " " $( DESTDIR) $( toolexeclibgocryptodir) " " $( DESTDIR) $( toolexeclibgocryptox509dir) " " $( DESTDIR) $( toolexeclibgodatabasedir) " " $( DESTDIR) $( toolexeclibgodatabasesqldir) " " $( DESTDIR) $( toolexeclibgodebugdir) " " $( DESTDIR) $( toolexeclibgoencodingdir) " " $( DESTDIR) $( toolexeclibgoexpdir) " " $( DESTDIR) $( toolexeclibgogodir) " " $( DESTDIR) $( toolexeclibgohashdir) " " $( DESTDIR) $( toolexeclibgohtmldir) " " $( DESTDIR) $( toolexeclibgoimagedir) " " $( DESTDIR) $( toolexeclibgoimagecolordir) " " $( DESTDIR) $( toolexeclibgoindexdir) " " $( DESTDIR) $( toolexeclibgoiodir) " " $( DESTDIR) $( toolexeclibgologdir) " " $( DESTDIR) $( toolexeclibgomathdir) " " $( DESTDIR) $( toolexeclibgomimedir) " " $( DESTDIR) $( toolexeclibgonetdir) " " $( DESTDIR) $( toolexeclibgonethttpdir) " " $( DESTDIR) $( toolexeclibgonetrpcdir) " " $( DESTDIR) $( toolexeclibgoosdir) " " $( DESTDIR) $( toolexeclibgopathdir) " " $( DESTDIR) $( toolexeclibgoregexpdir) " " $( DESTDIR) $( toolexeclibgoruntimedir) " " $( DESTDIR) $( toolexeclibgosyncdir) " " $( DESTDIR) $( toolexeclibgotestingdir) " " $( DESTDIR) $( toolexeclibgotestinginternaldir) " " $( DESTDIR) $( toolexeclibgotextdir) " " $( DESTDIR) $( toolexeclibgotexttemplatedir) " " $( DESTDIR) $( toolexeclibgounicodedir) " ; do \
2012-03-28 01:13:14 +02:00
test -z " $$ dir " || $( MKDIR_P) " $$ dir " ; \
done
install : install -recursive
install-exec : install -exec -recursive
install-data : install -data -recursive
uninstall : uninstall -recursive
install-am : all -am
@$( MAKE) $( AM_MAKEFLAGS) install-exec-am install-data-am
installcheck : installcheck -recursive
install-strip :
2017-04-10 13:32:00 +02:00
if test -z '$(STRIP)' ; then \
$( MAKE) $( AM_MAKEFLAGS) INSTALL_PROGRAM = " $( INSTALL_STRIP_PROGRAM) " \
install_sh_PROGRAM = " $( INSTALL_STRIP_PROGRAM) " INSTALL_STRIP_FLAG = -s \
install; \
else \
$( MAKE) $( AM_MAKEFLAGS) INSTALL_PROGRAM = " $( INSTALL_STRIP_PROGRAM) " \
install_sh_PROGRAM = " $( INSTALL_STRIP_PROGRAM) " INSTALL_STRIP_FLAG = -s \
" INSTALL_PROGRAM_ENV=STRIPPROG=' $( STRIP) ' " install; \
fi
2012-03-28 01:13:14 +02:00
mostlyclean-generic :
clean-generic :
-test -z " $( CLEANFILES) " || rm -f $( CLEANFILES)
distclean-generic :
-test -z " $( CONFIG_CLEAN_FILES) " || rm -f $( CONFIG_CLEAN_FILES)
-test . = " $( srcdir) " || test -z " $( CONFIG_CLEAN_VPATH_FILES) " || rm -f $( CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic :
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean : clean -multi clean -recursive
clean-am : clean -generic clean -libtool clean -local \
clean-toolexeclibLIBRARIES clean-toolexeclibLTLIBRARIES \
mostlyclean-am
distclean : distclean -multi distclean -recursive
-rm -f $( am__CONFIG_DISTCLEAN_FILES)
-rm -rf ./$( DEPDIR)
-rm -f Makefile
distclean-am : clean -am distclean -compile distclean -generic \
distclean-hdr distclean-libtool distclean-tags
dvi : dvi -recursive
dvi-am :
html : html -recursive
html-am :
info : info -recursive
info-am :
install-data-am :
install-dvi : install -dvi -recursive
install-dvi-am :
install-exec-am : install -multi install -toolexeclibLIBRARIES \
install-toolexeclibLTLIBRARIES install-toolexeclibgoDATA \
install-toolexeclibgoarchiveDATA \
install-toolexeclibgocompressDATA \
install-toolexeclibgocontainerDATA \
install-toolexeclibgocryptoDATA \
install-toolexeclibgocryptox509DATA \
install-toolexeclibgodatabaseDATA \
install-toolexeclibgodatabasesqlDATA \
install-toolexeclibgodebugDATA \
install-toolexeclibgoencodingDATA install-toolexeclibgoexpDATA \
install-toolexeclibgogoDATA install-toolexeclibgohashDATA \
install-toolexeclibgohtmlDATA install-toolexeclibgoimageDATA \
2014-09-21 19:33:12 +02:00
install-toolexeclibgoimagecolorDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgoindexDATA install-toolexeclibgoioDATA \
install-toolexeclibgologDATA install-toolexeclibgomathDATA \
install-toolexeclibgomimeDATA install-toolexeclibgonetDATA \
install-toolexeclibgonethttpDATA \
2017-10-07 02:16:47 +02:00
install-toolexeclibgonetrpcDATA install-toolexeclibgoosDATA \
install-toolexeclibgopathDATA install-toolexeclibgoregexpDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgoruntimeDATA install-toolexeclibgosyncDATA \
2017-10-07 02:16:47 +02:00
install-toolexeclibgotestingDATA \
install-toolexeclibgotestinginternalDATA \
install-toolexeclibgotextDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgotexttemplateDATA \
install-toolexeclibgounicodeDATA
install-html : install -html -recursive
install-html-am :
install-info : install -info -recursive
install-info-am :
install-man :
install-pdf : install -pdf -recursive
install-pdf-am :
install-ps : install -ps -recursive
install-ps-am :
installcheck-am :
maintainer-clean : maintainer -clean -multi maintainer -clean -recursive
-rm -f $( am__CONFIG_DISTCLEAN_FILES)
-rm -rf $( top_srcdir) /autom4te.cache
-rm -rf ./$( DEPDIR)
-rm -f Makefile
maintainer-clean-am : distclean -am maintainer -clean -generic
mostlyclean : mostlyclean -multi mostlyclean -recursive
mostlyclean-am : mostlyclean -compile mostlyclean -generic \
mostlyclean-libtool mostlyclean-local
pdf : pdf -recursive
pdf-am :
ps : ps -recursive
ps-am :
uninstall-am : uninstall -toolexeclibLIBRARIES \
uninstall-toolexeclibLTLIBRARIES uninstall-toolexeclibgoDATA \
uninstall-toolexeclibgoarchiveDATA \
uninstall-toolexeclibgocompressDATA \
uninstall-toolexeclibgocontainerDATA \
uninstall-toolexeclibgocryptoDATA \
uninstall-toolexeclibgocryptox509DATA \
uninstall-toolexeclibgodatabaseDATA \
uninstall-toolexeclibgodatabasesqlDATA \
uninstall-toolexeclibgodebugDATA \
uninstall-toolexeclibgoencodingDATA \
uninstall-toolexeclibgoexpDATA uninstall-toolexeclibgogoDATA \
uninstall-toolexeclibgohashDATA \
uninstall-toolexeclibgohtmlDATA \
uninstall-toolexeclibgoimageDATA \
2014-09-21 19:33:12 +02:00
uninstall-toolexeclibgoimagecolorDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgoindexDATA uninstall-toolexeclibgoioDATA \
uninstall-toolexeclibgologDATA uninstall-toolexeclibgomathDATA \
uninstall-toolexeclibgomimeDATA uninstall-toolexeclibgonetDATA \
uninstall-toolexeclibgonethttpDATA \
uninstall-toolexeclibgonetrpcDATA \
2017-10-07 02:16:47 +02:00
uninstall-toolexeclibgoosDATA uninstall-toolexeclibgopathDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgoregexpDATA \
uninstall-toolexeclibgoruntimeDATA \
uninstall-toolexeclibgosyncDATA \
uninstall-toolexeclibgotestingDATA \
2017-10-07 02:16:47 +02:00
uninstall-toolexeclibgotestinginternalDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgotextDATA \
uninstall-toolexeclibgotexttemplateDATA \
uninstall-toolexeclibgounicodeDATA
.MAKE : $( RECURSIVE_CLEAN_TARGETS ) $( RECURSIVE_TARGETS ) all all -multi \
clean-multi ctags-recursive distclean-multi install-am \
install-multi install-strip maintainer-clean-multi \
mostlyclean-multi tags-recursive
.PHONY : $( RECURSIVE_CLEAN_TARGETS ) $( RECURSIVE_TARGETS ) CTAGS GTAGS \
all all-am all-multi am--refresh check check-am clean \
clean-generic clean-libtool clean-local clean-multi \
clean-toolexeclibLIBRARIES clean-toolexeclibLTLIBRARIES ctags \
2014-09-21 19:33:12 +02:00
ctags-recursive distclean distclean-compile distclean-generic \
distclean-hdr distclean-libtool distclean-multi distclean-tags \
dvi dvi-am html html-am info info-am install install-am \
install-data install-data-am install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-man install-multi \
install-pdf install-pdf-am install-ps install-ps-am \
install-strip install-toolexeclibLIBRARIES \
install-toolexeclibLTLIBRARIES install-toolexeclibgoDATA \
install-toolexeclibgoarchiveDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgocompressDATA \
install-toolexeclibgocontainerDATA \
install-toolexeclibgocryptoDATA \
install-toolexeclibgocryptox509DATA \
install-toolexeclibgodatabaseDATA \
install-toolexeclibgodatabasesqlDATA \
install-toolexeclibgodebugDATA \
install-toolexeclibgoencodingDATA install-toolexeclibgoexpDATA \
install-toolexeclibgogoDATA install-toolexeclibgohashDATA \
install-toolexeclibgohtmlDATA install-toolexeclibgoimageDATA \
2014-09-21 19:33:12 +02:00
install-toolexeclibgoimagecolorDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgoindexDATA install-toolexeclibgoioDATA \
install-toolexeclibgologDATA install-toolexeclibgomathDATA \
install-toolexeclibgomimeDATA install-toolexeclibgonetDATA \
install-toolexeclibgonethttpDATA \
2017-10-07 02:16:47 +02:00
install-toolexeclibgonetrpcDATA install-toolexeclibgoosDATA \
install-toolexeclibgopathDATA install-toolexeclibgoregexpDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgoruntimeDATA install-toolexeclibgosyncDATA \
2017-10-07 02:16:47 +02:00
install-toolexeclibgotestingDATA \
install-toolexeclibgotestinginternalDATA \
install-toolexeclibgotextDATA \
2012-03-28 01:13:14 +02:00
install-toolexeclibgotexttemplateDATA \
install-toolexeclibgounicodeDATA installcheck installcheck-am \
installdirs installdirs-am maintainer-clean \
maintainer-clean-generic maintainer-clean-multi mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
mostlyclean-local mostlyclean-multi pdf pdf-am ps ps-am tags \
tags-recursive uninstall uninstall-am \
uninstall-toolexeclibLIBRARIES \
uninstall-toolexeclibLTLIBRARIES uninstall-toolexeclibgoDATA \
uninstall-toolexeclibgoarchiveDATA \
uninstall-toolexeclibgocompressDATA \
uninstall-toolexeclibgocontainerDATA \
uninstall-toolexeclibgocryptoDATA \
uninstall-toolexeclibgocryptox509DATA \
uninstall-toolexeclibgodatabaseDATA \
uninstall-toolexeclibgodatabasesqlDATA \
uninstall-toolexeclibgodebugDATA \
uninstall-toolexeclibgoencodingDATA \
uninstall-toolexeclibgoexpDATA uninstall-toolexeclibgogoDATA \
uninstall-toolexeclibgohashDATA \
uninstall-toolexeclibgohtmlDATA \
uninstall-toolexeclibgoimageDATA \
2014-09-21 19:33:12 +02:00
uninstall-toolexeclibgoimagecolorDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgoindexDATA uninstall-toolexeclibgoioDATA \
uninstall-toolexeclibgologDATA uninstall-toolexeclibgomathDATA \
uninstall-toolexeclibgomimeDATA uninstall-toolexeclibgonetDATA \
uninstall-toolexeclibgonethttpDATA \
uninstall-toolexeclibgonetrpcDATA \
2017-10-07 02:16:47 +02:00
uninstall-toolexeclibgoosDATA uninstall-toolexeclibgopathDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgoregexpDATA \
uninstall-toolexeclibgoruntimeDATA \
uninstall-toolexeclibgosyncDATA \
uninstall-toolexeclibgotestingDATA \
2017-10-07 02:16:47 +02:00
uninstall-toolexeclibgotestinginternalDATA \
2012-03-28 01:13:14 +02:00
uninstall-toolexeclibgotextDATA \
uninstall-toolexeclibgotexttemplateDATA \
uninstall-toolexeclibgounicodeDATA
goc2c.$(OBJEXT) : runtime /goc 2c .c
$( CC_FOR_BUILD) -c $( CFLAGS_FOR_BUILD) $<
goc2c : goc 2c .$( OBJEXT )
$( CC_FOR_BUILD) $( CFLAGS_FOR_BUILD) $( LDFLAGS_FOR_BUILD) -o $@ $<
malloc.c : $( srcdir ) /runtime /malloc .goc goc 2c
2014-09-21 19:33:12 +02:00
./goc2c $< > $@ .tmp
2012-03-28 01:13:14 +02:00
mv -f $@ .tmp $@
%.c : $( srcdir ) /runtime /%.goc goc 2c
2014-09-21 19:33:12 +02:00
./goc2c $< > $@ .tmp
2012-03-28 01:13:14 +02:00
mv -f $@ .tmp $@
version.go : s -version ; @true
s-version : Makefile
rm -f version.go.tmp
2017-10-07 02:16:47 +02:00
echo "package sys" > version.go.tmp
echo 'const DefaultGoroot = "$(prefix)"' >> version.go.tmp
echo 'const TheVersion = "' ` cat $( srcdir) /VERSION | sed 1q` ' ' ` $( GOC) --version | sed 1q` '"' >> version.go.tmp
echo 'const GOARCH = "' $( GOARCH) '"' >> version.go.tmp
echo 'const GOOS = "' $( GOOS) '"' >> version.go.tmp
echo 'const GccgoToolDir = "$(libexecsubdir)"' >> version.go.tmp
echo >> version.go.tmp
echo "type ArchFamilyType int" >> version.go.tmp
echo >> version.go.tmp
echo "const (" >> version.go.tmp
echo " UNKNOWN ArchFamilyType = iota" >> version.go.tmp
for a in $( ALLGOARCHFAMILY) ; do \
echo " $$ {a} " >> version.go.tmp; \
done
echo ")" >> version.go.tmp
echo >> version.go.tmp
for a in $( ALLGOARCH) ; do \
f = ` echo $$ { a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' ` ; \
n = " $$ {f}`echo $$ {a} | sed -e 's/.//'` " ; \
if test " $$ {a} " = " $( GOARCH) " ; then \
echo " const Goarch $$ {n} = 1 " >> version.go.tmp; \
else \
echo " const Goarch $$ {n} = 0 " >> version.go.tmp; \
fi ; \
done
echo >> version.go.tmp
echo "const (" >> version.go.tmp
echo " ArchFamily = $( GOARCH_FAMILY) " >> version.go.tmp
echo " BigEndian = $( GOARCH_BIGENDIAN) " >> version.go.tmp
echo " CacheLineSize = $( GOARCH_CACHELINESIZE) " >> version.go.tmp
echo " PhysPageSize = $( GOARCH_PHYSPAGESIZE) " >> version.go.tmp
echo " PCQuantum = $( GOARCH_PCQUANTUM) " >> version.go.tmp
echo " Int64Align = $( GOARCH_INT64ALIGN) " >> version.go.tmp
echo " HugePageSize = $( GOARCH_HUGEPAGESIZE) " >> version.go.tmp
echo " MinFrameSize = $( GOARCH_MINFRAMESIZE) " >> version.go.tmp
echo ")" >> version.go.tmp
echo >> version.go.tmp
for a in $( ALLGOOS) ; do \
f = ` echo $$ { a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' ` ; \
n = " $$ {f}`echo $$ {a} | sed -e 's/.//'` " ; \
if test " $$ {a} " = " $( GOOS) " ; then \
echo " const Goos $$ {n} = 1 " >> version.go.tmp; \
else \
echo " const Goos $$ {n} = 0 " >> version.go.tmp; \
fi ; \
done
echo >> version.go.tmp
echo "type Uintreg uintptr" >> version.go.tmp
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh version.go.tmp version.go
$( STAMP) $@
2017-10-07 02:16:47 +02:00
runtime_sysinfo.go : s -runtime_sysinfo ; @true
s-runtime_sysinfo : $( srcdir ) /mkrsysinfo .sh gen -sysinfo .go
$( SHELL) $( srcdir) /mkrsysinfo.sh
$( SHELL) $( srcdir) /mvifdiff.sh tmp-runtime_sysinfo.go runtime_sysinfo.go
$( STAMP) $@
sigtab.go : s -sigtab ; @true
s-sigtab : $( srcdir ) /mksigtab .sh gen -sysinfo .go
GOOS = $( GOOS) $( SHELL) $( srcdir) /mksigtab.sh > tmp-sigtab.go
$( SHELL) $( srcdir) /mvifdiff.sh tmp-sigtab.go sigtab.go
$( STAMP) $@
runtime.inc : s -runtime -inc ; @true
s-runtime-inc : runtime .lo Makefile
rm -f runtime.inc.tmp2
grep -v "#define _" runtime.inc.tmp | grep -v "#define [cm][01234] " > runtime.inc.tmp2
for pattern in '_[GP][a-z]' _Max _Lock _Sig _Trace _MHeap _Num; do \
grep " #define $$ pattern " runtime.inc.tmp >> runtime.inc.tmp2; \
done
$( SHELL) $( srcdir) /mvifdiff.sh runtime.inc.tmp2 runtime.inc
$( STAMP) $@
2015-08-28 17:33:40 +02:00
# Generate the list of go std packages that were included in libgo
zstdpkglist.go : s -zstdpkglist ; @true
s-zstdpkglist : Makefile
rm -f zstdpkglist.go.tmp
echo 'package main' > zstdpkglist.go.tmp
echo "" >> zstdpkglist.go.tmp
echo 'var stdpkg = map[string]bool{' >> zstdpkglist.go.tmp
2017-10-07 02:16:47 +02:00
echo $( libgo_go_objs) 'unsafe.lo' 'runtime/cgo.lo' | sed 's/\.lo /\": true,\n/g' | grep -v _c | sed 's/\.lo/\": true,/' | sed 's/^/\t\"/' | sort -u >> zstdpkglist.go.tmp
2015-08-28 17:33:40 +02:00
echo '}' >> zstdpkglist.go.tmp
$( SHELL) $( srcdir) /mvifdiff.sh zstdpkglist.go.tmp zstdpkglist.go
2012-03-28 01:13:14 +02:00
$( STAMP) $@
libcalls.go : s -libcalls ; @true
2017-10-07 02:16:47 +02:00
s-libcalls : libcalls -list go /syscall /mksyscall .awk $( srcdir ) /go /syscall /*.go
2012-03-28 01:13:14 +02:00
rm -f libcalls.go.tmp
2017-10-07 02:16:47 +02:00
$( AWK) -f $( srcdir) /go/syscall/mksyscall.awk ` cat libcalls-list` > libcalls.go.tmp
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh libcalls.go.tmp libcalls.go
2012-03-28 01:13:14 +02:00
$( STAMP) $@
2014-09-21 19:33:12 +02:00
libcalls-list : s -libcalls -list ; @true
2017-10-07 02:16:47 +02:00
s-libcalls-list : Makefile $( srcdir ) /go /syscall /*.go
2014-09-21 19:33:12 +02:00
rm -f libcalls-list.tmp
2017-10-07 02:16:47 +02:00
$( SHELL) $( srcdir) /match.sh --goarch= $( GOARCH) --goos= $( GOOS) --srcdir= $( srcdir) /go/syscall $( matchargs_syscall) > libcalls-list.tmp
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh libcalls-list.tmp libcalls-list
2014-09-21 19:33:12 +02:00
$( STAMP) $@
2012-03-28 01:13:14 +02:00
syscall_arch.go : s -syscall_arch ; @true
s-syscall_arch : Makefile
rm -f syscall_arch.go.tmp
echo "package syscall" > syscall_arch.go.tmp
echo 'const ARCH = "' $( GOARCH) '"' >> syscall_arch.go.tmp
echo 'const OS = "' $( GOOS) '"' >> syscall_arch.go.tmp
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh syscall_arch.go.tmp syscall_arch.go
2012-03-28 01:13:14 +02:00
$( STAMP) $@
2017-10-07 02:16:47 +02:00
gen-sysinfo.go : s -gen -sysinfo ; @true
s-gen-sysinfo : $( srcdir ) /sysinfo .c config .h
$( CC) $( SYSINFO_FLAGS) -fdump-go-spec= tmp-gen-sysinfo.go -std= gnu99 -S -o sysinfo.s $( srcdir) /sysinfo.c
rm -f sysinfo.s
$( SHELL) $( srcdir) /mvifdiff.sh tmp-gen-sysinfo.go gen-sysinfo.go
$( STAMP) $@
errno.i : s -errno ; @true
s-errno :
echo '#include <errno.h>' | $( CC) $( SYSINFO_FLAGS) -x c - -E -dM > tmp-errno.i
$( SHELL) $( srcdir) /mvifdiff.sh tmp-errno.i errno.i
$( STAMP) $@
2012-03-28 01:13:14 +02:00
sysinfo.go : s -sysinfo ; @true
2017-10-07 02:16:47 +02:00
s-sysinfo : $( srcdir ) /mksysinfo .sh gen -sysinfo .go errno .i
$( SHELL) $( srcdir) /mksysinfo.sh
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh tmp-sysinfo.go sysinfo.go
2012-03-28 01:13:14 +02:00
$( STAMP) $@
# The epoll struct has an embedded union and is packed on x86_64,
# which is too complicated for mksysinfo.sh. We find the offset of
# the only field we care about in configure.ac, and generate the
# struct here.
epoll.go : s -epoll ; @true
s-epoll : Makefile
rm -f epoll.go.tmp
echo 'package syscall' > epoll.go.tmp
echo 'type EpollEvent struct {' >> epoll.go.tmp
echo ' Events uint32' >> epoll.go.tmp
case " $( SIZEOF_STRUCT_EPOLL_EVENT) , $( STRUCT_EPOLL_EVENT_FD_OFFSET) " in \
0,0) echo 1>& 2 "*** struct epoll_event data.fd offset unknown" ; \
exit 1; ; ; \
8,4) echo ' Fd int32' >> epoll.go.tmp; ; ; \
12,4) echo ' Fd int32' >> epoll.go.tmp; \
echo ' Pad [4]byte' >> epoll.go.tmp; ; ; \
12,8) echo ' Pad [4]byte' >> epoll.go.tmp; \
echo ' Fd int32' >> epoll.go.tmp; ; ; \
16,8) echo ' Pad [4]byte' >> epoll.go.tmp; \
echo ' Fd int32' >> epoll.go.tmp; \
echo ' Pad2 [4]byte' >> epoll.go.tmp; ; ; \
*) echo 1>& 2 "*** struct epoll_event unsupported" ; \
exit 1; ; ; \
esac
echo '}' >> epoll.go.tmp
2015-08-28 17:33:40 +02:00
$( SHELL) $( srcdir) /mvifdiff.sh epoll.go.tmp epoll.go
2012-03-28 01:13:14 +02:00
$( STAMP) $@
2017-10-07 02:16:47 +02:00
# Make sure runtime.inc is built before compiling any .c file.
$(libgo_la_OBJECTS) : runtime .inc
$(libgo_llgo_la_OBJECTS) : runtime .inc
$(libgobegin_a_OBJECTS) : runtime .inc
$(libgobegin_llgo_a_OBJECTS) : runtime .inc
$(libgolibbegin_a_OBJECTS) : runtime .inc
# PACKAGE_template defines the rules for each package.
# For example, for the package bufio, it produces:
#
# @go_include@ bufio.lo.dep
# bufio.lo.dep: $(srcdir)/go/bufio/*.go
# $(BUILDDEPS)
# bufio.lo:
# $(BUILDPACKAGE)
# bufio/check: $(CHECK_DEPS)
# @$(CHECK)
# .PHONY: bufio/check
#
# This is invoked with $(1) set to a package, which is a directory name,
# such as "bufio" or "archive/tar".
d e f i n e P A C K A G E _ t e m p l a t e
@ g o _ i n c l u d e @ $( 1) . l o . d e p
$(1).lo.dep : $( srcdir ) /go /$( 1) /*.go
$$ ( BUILDDEPS)
$(1).lo :
$$ ( BUILDPACKAGE)
$(1)/check : $$( CHECK_DEPS )
@$$ ( CHECK)
.PHONY : $( 1) /check
$(1).gox : $( 1) .s -gox ; @true
$(1).s-gox : $( 1) .lo
$$ ( BUILDGOX)
$$ ( STAMP) $$ @
e n d e f
# This line expands PACKAGE_template once for each package name listed
# in $(PACKAGES).
$( foreach package ,$ ( PACKAGES ) ,$ ( eval $ ( call PACKAGE_template ,$ ( package ) ) ) )
runtime.lo.dep : $( extra_go_files_runtime )
syscall.lo.dep : $( extra_go_files_syscall )
runtime/internal/sys.lo.dep : $( extra_go_files_runtime_internal_sys )
# FIXME: The following C files may as well move to the runtime
# directory and be treated like other C files.
# Use C code to speed up {bytes,strings}.IndexByte and friends.
bytes/index.lo : go /bytes /indexbyte .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) bytes
2017-10-07 02:16:47 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/bytes/indexbyte.c
strings/index.lo : go /strings /indexbyte .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) strings
2017-10-07 02:16:47 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/strings/indexbyte.c
# Use a C function with a fixed number of arguments to call a C
# varargs function.
log/syslog/syslog_c.lo : go /log /syslog /syslog_c .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) log/syslog
2012-03-28 01:13:14 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/log/syslog/syslog_c.c
2017-10-07 02:16:47 +02:00
# The interface to libffi from the reflect package is written in C.
reflect/makefunc_ffi_c.lo : go /reflect /makefunc_ffi_c .c runtime .inc
@$( MKDIR_P) reflect
$( LTCOMPILE) -c -o $@ $( srcdir) /go/reflect/makefunc_ffi_c.c
# The atomic functions are written in C.
runtime/internal/atomic_c.lo : go /runtime /internal /atomic /atomic .c runtime .inc
@$( MKDIR_P) runtime/internal
$( LTCOMPILE) -c -o $@ $( srcdir) /go/runtime/internal/atomic/atomic.c
sync/atomic_c.lo : go /sync /atomic /atomic .c runtime .inc
@$( MKDIR_P) sync
2012-03-28 01:13:14 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/sync/atomic/atomic.c
2017-10-07 02:16:47 +02:00
# A few syscall functions are written in C.
syscall/clone_linux.lo : go /syscall /clone_linux .c runtime .inc
@$( MKDIR_P) syscall
$( LTCOMPILE) -c -o $@ $( srcdir) /go/syscall/clone_linux.c
syscall/errno.lo : go /syscall /errno .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) syscall
2017-10-07 02:16:47 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/syscall/errno.c
syscall/signame.lo : go /syscall /signame .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) syscall
2017-10-07 02:16:47 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/syscall/signame.c
syscall/wait.lo : go /syscall /wait .c runtime .inc
2014-09-21 19:33:12 +02:00
@$( MKDIR_P) syscall
2017-10-07 02:16:47 +02:00
$( LTCOMPILE) -c -o $@ $( srcdir) /go/syscall/wait.c
# Build golang_org/x/net/route only on BSD systems.
@ L I B G O _ I S _ B S D _ T R U E @ $( eval $ ( call PACKAGE_template ,golang_org /x /net /route ) )
# Build golang_org/x/net/lif only on Solaris systems.
@ L I B G O _ I S _ S O L A R I S _ T R U E @ $( eval $ ( call PACKAGE_template ,golang_org /x /net /lif ) )
2012-03-28 01:13:14 +02:00
check : check -tail
check-recursive : check -head
check-head :
@echo " Test Run By $$ {USER} on `date` " > libgo.head
@echo " Native configuration is $( host_triplet) " >> libgo.head
@echo >> libgo.head
@echo " === libgo tests ===" >> libgo.head
@echo >> libgo.head
check-tail : check -recursive check -multi
2014-09-21 19:33:12 +02:00
@if test " $( USE_DEJAGNU) " = "yes" ; then \
exit 0; \
fi ; \
lib = ` ${ PWD_COMMAND } | sed -e 's,^.*/\([^/][^/]*\)$$,\1,' ` ; \
2012-03-28 01:13:14 +02:00
for dir in . $( MULTIDIRS) ; do \
mv ../$$ { dir} /$$ { lib} /libgo.sum ../$$ { dir} /$$ { lib} /libgo.sum.sep; \
mv ../$$ { dir} /$$ { lib} /libgo.log ../$$ { dir} /$$ { lib} /libgo.log.sep; \
done ; \
mv libgo.head libgo.sum; \
cp libgo.sum libgo.log; \
echo "Schedule of variations:" >> libgo.sum; \
for dir in . $( MULTIDIRS) ; do \
multidir = ../$$ { dir} /$$ { lib} ; \
multivar = ` cat $$ { multidir} /libgo.var` ; \
echo " $$ {multivar} " >> libgo.sum; \
done ; \
echo >> libgo.sum; \
pass = 0; fail = 0; untested = 0; \
for dir in . $( MULTIDIRS) ; do \
multidir = ../$$ { dir} /$$ { lib} ; \
multivar = ` cat $$ { multidir} /libgo.var` ; \
echo " Running target $$ {multivar} " >> libgo.sum; \
echo " Running $( srcdir) /libgo.exp ... " >> libgo.sum; \
cat $$ { multidir} /libgo.sum.sep >> libgo.sum; \
cat $$ { multidir} /libgo.log.sep >> libgo.log; \
if test -n " ${ MULTIDIRS } " ; then \
echo " === libgo Summary for $$ {multivar} === " >> libgo.sum; \
echo >> libgo.sum; \
fi ; \
p = ` grep -c PASS $$ { multidir} /libgo.sum.sep` ; \
pass = ` expr $$ pass + $$ p` ; \
if test " $$ p " -ne "0" && test -n " ${ MULTIDIRS } " ; then \
echo " # of expected passes $$ p " >> libgo.sum; \
fi ; \
p = ` grep -c FAIL $$ { multidir} /libgo.sum.sep` ; \
fail = ` expr $$ fail + $$ p` ; \
if test " $$ p " -ne "0" && test -n " ${ MULTIDIRS } " ; then \
echo " # of unexpected failures $$ p " >> libgo.sum; \
fi ; \
p = ` grep -c UNTESTED $$ { multidir} /libgo.sum.sep` ; \
untested = ` expr $$ untested + $$ p` ; \
if test " $$ p " -ne "0" && test -n " ${ MULTIDIRS } " ; then \
echo " # of untested testcases $$ p " >> libgo.sum; \
fi ; \
done ; \
echo >> libgo.sum; \
echo " === libgo Summary ===" >> libgo.sum; \
echo >> libgo.sum; \
if test " $$ pass " -ne "0" ; then \
echo " # of expected passes $$ pass " >> libgo.sum; \
fi ; \
if test " $$ fail " -ne "0" ; then \
echo " # of unexpected failures $$ fail " >> libgo.sum; \
fi ; \
if test " $$ untested " -ne "0" ; then \
echo " # of untested testcases $$ untested " >> libgo.sum; \
fi ; \
echo ` echo $( GOC) | sed -e 's/ .*//' ` ` $( GOC) -v 2>& 1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p' ` >> libgo.sum; \
echo >> libgo.log; \
echo "runtest completed at `date`" >> libgo.log; \
if test " $$ fail " -ne "0" ; then \
status = 1; \
else \
status = 0; \
fi ; \
exit $$ status
check-am :
@rm -f libgo.sum libgo.log libgo.tail
@multivar= "unix" ; \
[ -z " $( MULTIFLAGS) " ] || multivar = " $$ {multivar}/ $( MULTIFLAGS) " ; \
echo " $$ {multivar} " > libgo.var
@for f in $( TEST_PACKAGES) ; do \
rm -f $$ f-testsum $$ f-testlog; \
done
-@$( MAKE) -k $( TEST_PACKAGES)
@for f in $( TEST_PACKAGES) ; do \
if test -f $$ f-testsum; then \
cat $$ f-testsum >> libgo.sum; \
fi ; \
if test -f $$ f-testlog; then \
cat $$ f-testlog >> libgo.log; \
fi ; \
done
check-multi :
$( MULTIDO) $( AM_MAKEFLAGS) DO = check-am multi-do # $(MAKE)
2015-08-28 17:33:40 +02:00
bench :
-@$( MAKE) -k $( TEST_PACKAGES) GOBENCH = .
2012-03-28 01:13:14 +02:00
mostlyclean-local :
find . -name '*.lo' -print | xargs $( LIBTOOL) --mode= clean rm -f
find . -name '*.$(OBJEXT)' -print | xargs rm -f
find . -name '*-testsum' -print | xargs rm -f
find . -name '*-testlog' -print | xargs rm -f
clean-local :
find . -name '*.la' -print | xargs $( LIBTOOL) --mode= clean rm -f
find . -name '*.a' -print | xargs rm -f
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT :