Codebase list cppad / 107e2c4
master: advance to newer version of the auto-tools. Brad Bell 4 years ago
37 changed file(s) with 4138 addition(s) and 2739 deletion(s). Raw diff Collapse all Expand all
0 #!/bin/sh
0 #! /bin/sh
11 # Attempt to guess a canonical system name.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-08-08'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
2626 # Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
2727 #
2828 # You can get the latest version of this script from:
29 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
29 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
3030 #
3131 # Please send patches to <config-patches@gnu.org>.
3232
3838
3939 Output the configuration name of the system \`$me' is run on.
4040
41 Operation modes:
41 Options:
4242 -h, --help print this help, then exit
4343 -t, --time-stamp print date of last modification, then exit
4444 -v, --version print version number, then exit
4949 GNU config.guess ($timestamp)
5050
5151 Originally written by Per Bothner.
52 Copyright 1992-2017 Free Software Foundation, Inc.
52 Copyright 1992-2018 Free Software Foundation, Inc.
5353
5454 This is free software; see the source for copying conditions. There is NO
5555 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
8383 exit 1
8484 fi
8585
86 trap 'exit 1' 1 2 15
87
8886 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a
8987 # compiler to aid in system detection is discouraged as it requires
9088 # temporary files to be created and, as you can see below, it is a
9593
9694 # Portable tmp directory creation inspired by the Autoconf team.
9795
98 set_cc_for_build='
99 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
100 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
101 : ${TMPDIR=/tmp} ;
102 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
103 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
104 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
105 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
106 dummy=$tmp/dummy ;
107 tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
108 case $CC_FOR_BUILD,$HOST_CC,$CC in
109 ,,) echo "int x;" > $dummy.c ;
110 for c in cc gcc c89 c99 ; do
111 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
112 CC_FOR_BUILD="$c"; break ;
113 fi ;
114 done ;
115 if test x"$CC_FOR_BUILD" = x ; then
116 CC_FOR_BUILD=no_compiler_found ;
117 fi
118 ;;
119 ,,*) CC_FOR_BUILD=$CC ;;
120 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
121 esac ; set_cc_for_build= ;'
96 tmp=
97 # shellcheck disable=SC2172
98 trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15
99 trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0
100
101 set_cc_for_build() {
102 : "${TMPDIR=/tmp}"
103 # shellcheck disable=SC2039
104 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
105 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
106 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } ||
107 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; }
108 dummy=$tmp/dummy
109 case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
110 ,,) echo "int x;" > "$dummy.c"
111 for driver in cc gcc c89 c99 ; do
112 if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
113 CC_FOR_BUILD="$driver"
114 break
115 fi
116 done
117 if test x"$CC_FOR_BUILD" = x ; then
118 CC_FOR_BUILD=no_compiler_found
119 fi
120 ;;
121 ,,*) CC_FOR_BUILD=$CC ;;
122 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
123 esac
124 }
122125
123126 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
124127 # (ghazi@noc.rutgers.edu 1994-08-24)
125 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
128 if test -f /.attbin/uname ; then
126129 PATH=$PATH:/.attbin ; export PATH
127130 fi
128131
131134 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
132135 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
133136
134 case "${UNAME_SYSTEM}" in
137 case "$UNAME_SYSTEM" in
135138 Linux|GNU|GNU/*)
136139 # If the system lacks a compiler, then just pick glibc.
137140 # We could probably try harder.
138141 LIBC=gnu
139142
140 eval $set_cc_for_build
141 cat <<-EOF > $dummy.c
143 set_cc_for_build
144 cat <<-EOF > "$dummy.c"
142145 #include <features.h>
143146 #if defined(__UCLIBC__)
144147 LIBC=uclibc
148151 LIBC=gnu
149152 #endif
150153 EOF
151 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
154 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
155
156 # If ldd exists, use it to detect musl libc.
157 if command -v ldd >/dev/null && \
158 ldd --version 2>&1 | grep -q ^musl
159 then
160 LIBC=musl
161 fi
152162 ;;
153163 esac
154164
155165 # Note: order is significant - the case branches are not exclusive.
156166
157 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
167 case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
158168 *:NetBSD:*:*)
159169 # NetBSD (nbsd) targets should (where applicable) match one or
160170 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
168178 # portion of the name. We always set it to "unknown".
169179 sysctl="sysctl -n hw.machine_arch"
170180 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
171 /sbin/$sysctl 2>/dev/null || \
172 /usr/sbin/$sysctl 2>/dev/null || \
181 "/sbin/$sysctl" 2>/dev/null || \
182 "/usr/sbin/$sysctl" 2>/dev/null || \
173183 echo unknown)`
174 case "${UNAME_MACHINE_ARCH}" in
184 case "$UNAME_MACHINE_ARCH" in
175185 armeb) machine=armeb-unknown ;;
176186 arm*) machine=arm-unknown ;;
177187 sh3el) machine=shl-unknown ;;
178188 sh3eb) machine=sh-unknown ;;
179189 sh5el) machine=sh5le-unknown ;;
180190 earmv*)
181 arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
182 endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
183 machine=${arch}${endian}-unknown
191 arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
192 endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
193 machine="${arch}${endian}"-unknown
184194 ;;
185 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
195 *) machine="$UNAME_MACHINE_ARCH"-unknown ;;
186196 esac
187197 # The Operating System including object format, if it has switched
188198 # to ELF recently (or will in the future) and ABI.
189 case "${UNAME_MACHINE_ARCH}" in
199 case "$UNAME_MACHINE_ARCH" in
190200 earm*)
191201 os=netbsdelf
192202 ;;
193203 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
194 eval $set_cc_for_build
204 set_cc_for_build
195205 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
196206 | grep -q __ELF__
197207 then
207217 ;;
208218 esac
209219 # Determine ABI tags.
210 case "${UNAME_MACHINE_ARCH}" in
220 case "$UNAME_MACHINE_ARCH" in
211221 earm*)
212222 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
213 abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
214224 ;;
215225 esac
216226 # The OS release
218228 # thus, need a distinct triplet. However, they do not need
219229 # kernel version information, so it can be replaced with a
220230 # suitable tag, in the style of linux-gnu.
221 case "${UNAME_VERSION}" in
231 case "$UNAME_VERSION" in
222232 Debian*)
223233 release='-gnu'
224234 ;;
225235 *)
226 release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
236 release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
227237 ;;
228238 esac
229239 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
230240 # contains redundant information, the shorter form:
231241 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
232 echo "${machine}-${os}${release}${abi}"
242 echo "$machine-${os}${release}${abi-}"
233243 exit ;;
234244 *:Bitrig:*:*)
235245 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
236 echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
246 echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE"
237247 exit ;;
238248 *:OpenBSD:*:*)
239249 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
240 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
250 echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
241251 exit ;;
242252 *:LibertyBSD:*:*)
243253 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
244 echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
254 echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE"
255 exit ;;
256 *:MidnightBSD:*:*)
257 echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE"
245258 exit ;;
246259 *:ekkoBSD:*:*)
247 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
260 echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE"
248261 exit ;;
249262 *:SolidBSD:*:*)
250 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
263 echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
251264 exit ;;
252265 macppc:MirBSD:*:*)
253 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
266 echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
254267 exit ;;
255268 *:MirBSD:*:*)
256 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
269 echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE"
257270 exit ;;
258271 *:Sortix:*:*)
259 echo ${UNAME_MACHINE}-unknown-sortix
272 echo "$UNAME_MACHINE"-unknown-sortix
260273 exit ;;
261274 *:Redox:*:*)
262 echo ${UNAME_MACHINE}-unknown-redox
263 exit ;;
275 echo "$UNAME_MACHINE"-unknown-redox
276 exit ;;
277 mips:OSF1:*.*)
278 echo mips-dec-osf1
279 exit ;;
264280 alpha:OSF1:*:*)
265281 case $UNAME_RELEASE in
266282 *4.0)
312328 # A Tn.n version is a released field test version.
313329 # A Xn.n version is an unreleased experimental baselevel.
314330 # 1.2 uses "1.2" for uname -r.
315 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
331 echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
316332 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
317333 exitcode=$?
318334 trap '' 0
319335 exit $exitcode ;;
320 Alpha\ *:Windows_NT*:*)
321 # How do we know it's Interix rather than the generic POSIX subsystem?
322 # Should we change UNAME_MACHINE based on the output of uname instead
323 # of the specific Alpha model?
324 echo alpha-pc-interix
325 exit ;;
326 21064:Windows_NT:50:3)
327 echo alpha-dec-winnt3.5
328 exit ;;
329336 Amiga*:UNIX_System_V:4.0:*)
330337 echo m68k-unknown-sysv4
331338 exit ;;
332339 *:[Aa]miga[Oo][Ss]:*:*)
333 echo ${UNAME_MACHINE}-unknown-amigaos
340 echo "$UNAME_MACHINE"-unknown-amigaos
334341 exit ;;
335342 *:[Mm]orph[Oo][Ss]:*:*)
336 echo ${UNAME_MACHINE}-unknown-morphos
343 echo "$UNAME_MACHINE"-unknown-morphos
337344 exit ;;
338345 *:OS/390:*:*)
339346 echo i370-ibm-openedition
345352 echo powerpc-ibm-os400
346353 exit ;;
347354 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
348 echo arm-acorn-riscix${UNAME_RELEASE}
355 echo arm-acorn-riscix"$UNAME_RELEASE"
349356 exit ;;
350357 arm*:riscos:*:*|arm*:RISCOS:*:*)
351358 echo arm-unknown-riscos
372379 sparc) echo sparc-icl-nx7; exit ;;
373380 esac ;;
374381 s390x:SunOS:*:*)
375 echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
382 echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
376383 exit ;;
377384 sun4H:SunOS:5.*:*)
378 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
385 echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
379386 exit ;;
380387 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
381 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
388 echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
382389 exit ;;
383390 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
384 echo i386-pc-auroraux${UNAME_RELEASE}
391 echo i386-pc-auroraux"$UNAME_RELEASE"
385392 exit ;;
386393 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
387 eval $set_cc_for_build
388 SUN_ARCH=i386
389 # If there is a compiler, see if it is configured for 64-bit objects.
390 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
391 # This test works for both compilers.
392 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
393 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
394 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
395 grep IS_64BIT_ARCH >/dev/null
396 then
397 SUN_ARCH=x86_64
398 fi
399 fi
400 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
394 UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
395 case `isainfo -b` in
396 32)
397 echo i386-pc-solaris2"$UNAME_REL"
398 ;;
399 64)
400 echo x86_64-pc-solaris2"$UNAME_REL"
401 ;;
402 esac
401403 exit ;;
402404 sun4*:SunOS:6*:*)
403405 # According to config.sub, this is the proper way to canonicalize
404406 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
405407 # it's likely to be more like Solaris than SunOS4.
406 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
408 echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
407409 exit ;;
408410 sun4*:SunOS:*:*)
409411 case "`/usr/bin/arch -k`" in
412414 ;;
413415 esac
414416 # Japanese Language versions have a version number like `4.1.3-JL'.
415 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
417 echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
416418 exit ;;
417419 sun3*:SunOS:*:*)
418 echo m68k-sun-sunos${UNAME_RELEASE}
420 echo m68k-sun-sunos"$UNAME_RELEASE"
419421 exit ;;
420422 sun*:*:4.2BSD:*)
421423 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
422 test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
424 test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
423425 case "`/bin/arch`" in
424426 sun3)
425 echo m68k-sun-sunos${UNAME_RELEASE}
427 echo m68k-sun-sunos"$UNAME_RELEASE"
426428 ;;
427429 sun4)
428 echo sparc-sun-sunos${UNAME_RELEASE}
430 echo sparc-sun-sunos"$UNAME_RELEASE"
429431 ;;
430432 esac
431433 exit ;;
432434 aushp:SunOS:*:*)
433 echo sparc-auspex-sunos${UNAME_RELEASE}
435 echo sparc-auspex-sunos"$UNAME_RELEASE"
434436 exit ;;
435437 # The situation for MiNT is a little confusing. The machine name
436438 # can be virtually everything (everything which is not
441443 # MiNT. But MiNT is downward compatible to TOS, so this should
442444 # be no problem.
443445 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
444 echo m68k-atari-mint${UNAME_RELEASE}
446 echo m68k-atari-mint"$UNAME_RELEASE"
445447 exit ;;
446448 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
447 echo m68k-atari-mint${UNAME_RELEASE}
449 echo m68k-atari-mint"$UNAME_RELEASE"
448450 exit ;;
449451 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
450 echo m68k-atari-mint${UNAME_RELEASE}
452 echo m68k-atari-mint"$UNAME_RELEASE"
451453 exit ;;
452454 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
453 echo m68k-milan-mint${UNAME_RELEASE}
455 echo m68k-milan-mint"$UNAME_RELEASE"
454456 exit ;;
455457 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
456 echo m68k-hades-mint${UNAME_RELEASE}
458 echo m68k-hades-mint"$UNAME_RELEASE"
457459 exit ;;
458460 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
459 echo m68k-unknown-mint${UNAME_RELEASE}
461 echo m68k-unknown-mint"$UNAME_RELEASE"
460462 exit ;;
461463 m68k:machten:*:*)
462 echo m68k-apple-machten${UNAME_RELEASE}
464 echo m68k-apple-machten"$UNAME_RELEASE"
463465 exit ;;
464466 powerpc:machten:*:*)
465 echo powerpc-apple-machten${UNAME_RELEASE}
467 echo powerpc-apple-machten"$UNAME_RELEASE"
466468 exit ;;
467469 RISC*:Mach:*:*)
468470 echo mips-dec-mach_bsd4.3
469471 exit ;;
470472 RISC*:ULTRIX:*:*)
471 echo mips-dec-ultrix${UNAME_RELEASE}
473 echo mips-dec-ultrix"$UNAME_RELEASE"
472474 exit ;;
473475 VAX*:ULTRIX*:*:*)
474 echo vax-dec-ultrix${UNAME_RELEASE}
476 echo vax-dec-ultrix"$UNAME_RELEASE"
475477 exit ;;
476478 2020:CLIX:*:* | 2430:CLIX:*:*)
477 echo clipper-intergraph-clix${UNAME_RELEASE}
479 echo clipper-intergraph-clix"$UNAME_RELEASE"
478480 exit ;;
479481 mips:*:*:UMIPS | mips:*:*:RISCos)
480 eval $set_cc_for_build
481 sed 's/^ //' << EOF >$dummy.c
482 set_cc_for_build
483 sed 's/^ //' << EOF > "$dummy.c"
482484 #ifdef __cplusplus
483485 #include <stdio.h> /* for printf() prototype */
484486 int main (int argc, char *argv[]) {
487489 #endif
488490 #if defined (host_mips) && defined (MIPSEB)
489491 #if defined (SYSTYPE_SYSV)
490 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
492 printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0);
491493 #endif
492494 #if defined (SYSTYPE_SVR4)
493 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
495 printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0);
494496 #endif
495497 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
496 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
498 printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0);
497499 #endif
498500 #endif
499501 exit (-1);
500502 }
501503 EOF
502 $CC_FOR_BUILD -o $dummy $dummy.c &&
503 dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
504 SYSTEM_NAME=`$dummy $dummyarg` &&
504 $CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
505 dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
506 SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
505507 { echo "$SYSTEM_NAME"; exit; }
506 echo mips-mips-riscos${UNAME_RELEASE}
508 echo mips-mips-riscos"$UNAME_RELEASE"
507509 exit ;;
508510 Motorola:PowerMAX_OS:*:*)
509511 echo powerpc-motorola-powermax
529531 AViiON:dgux:*:*)
530532 # DG/UX returns AViiON for all architectures
531533 UNAME_PROCESSOR=`/usr/bin/uname -p`
532 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
534 if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ]
533535 then
534 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
535 [ ${TARGET_BINARY_INTERFACE}x = x ]
536 if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \
537 [ "$TARGET_BINARY_INTERFACE"x = x ]
536538 then
537 echo m88k-dg-dgux${UNAME_RELEASE}
539 echo m88k-dg-dgux"$UNAME_RELEASE"
538540 else
539 echo m88k-dg-dguxbcs${UNAME_RELEASE}
541 echo m88k-dg-dguxbcs"$UNAME_RELEASE"
540542 fi
541543 else
542 echo i586-dg-dgux${UNAME_RELEASE}
544 echo i586-dg-dgux"$UNAME_RELEASE"
543545 fi
544546 exit ;;
545547 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
556558 echo m68k-tektronix-bsd
557559 exit ;;
558560 *:IRIX*:*:*)
559 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
561 echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
560562 exit ;;
561563 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
562564 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
568570 if [ -x /usr/bin/oslevel ] ; then
569571 IBM_REV=`/usr/bin/oslevel`
570572 else
571 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
572 fi
573 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
573 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
574 fi
575 echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV"
574576 exit ;;
575577 *:AIX:2:3)
576578 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
577 eval $set_cc_for_build
578 sed 's/^ //' << EOF >$dummy.c
579 set_cc_for_build
580 sed 's/^ //' << EOF > "$dummy.c"
579581 #include <sys/systemcfg.h>
580582
581583 main()
586588 exit(0);
587589 }
588590 EOF
589 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
591 if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
590592 then
591593 echo "$SYSTEM_NAME"
592594 else
600602 exit ;;
601603 *:AIX:*:[4567])
602604 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
603 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
605 if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
604606 IBM_ARCH=rs6000
605607 else
606608 IBM_ARCH=powerpc
609611 IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
610612 awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
611613 else
612 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
613 fi
614 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
614 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
615 fi
616 echo "$IBM_ARCH"-ibm-aix"$IBM_REV"
615617 exit ;;
616618 *:AIX:*:*)
617619 echo rs6000-ibm-aix
618620 exit ;;
619 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
621 ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)
620622 echo romp-ibm-bsd4.4
621623 exit ;;
622624 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
623 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
625 echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to
624626 exit ;; # report: romp-ibm BSD 4.3
625627 *:BOSX:*:*)
626628 echo rs6000-bull-bosx
635637 echo m68k-hp-bsd4.4
636638 exit ;;
637639 9000/[34678]??:HP-UX:*:*)
638 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
639 case "${UNAME_MACHINE}" in
640 9000/31? ) HP_ARCH=m68000 ;;
641 9000/[34]?? ) HP_ARCH=m68k ;;
640 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
641 case "$UNAME_MACHINE" in
642 9000/31?) HP_ARCH=m68000 ;;
643 9000/[34]??) HP_ARCH=m68k ;;
642644 9000/[678][0-9][0-9])
643645 if [ -x /usr/bin/getconf ]; then
644646 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
645647 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
646 case "${sc_cpu_version}" in
648 case "$sc_cpu_version" in
647649 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
648650 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
649651 532) # CPU_PA_RISC2_0
650 case "${sc_kernel_bits}" in
652 case "$sc_kernel_bits" in
651653 32) HP_ARCH=hppa2.0n ;;
652654 64) HP_ARCH=hppa2.0w ;;
653655 '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20
654656 esac ;;
655657 esac
656658 fi
657 if [ "${HP_ARCH}" = "" ]; then
658 eval $set_cc_for_build
659 sed 's/^ //' << EOF >$dummy.c
659 if [ "$HP_ARCH" = "" ]; then
660 set_cc_for_build
661 sed 's/^ //' << EOF > "$dummy.c"
660662
661663 #define _HPUX_SOURCE
662664 #include <stdlib.h>
689691 exit (0);
690692 }
691693 EOF
692 (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
694 (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
693695 test -z "$HP_ARCH" && HP_ARCH=hppa
694696 fi ;;
695697 esac
696 if [ ${HP_ARCH} = hppa2.0w ]
698 if [ "$HP_ARCH" = hppa2.0w ]
697699 then
698 eval $set_cc_for_build
700 set_cc_for_build
699701
700702 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
701703 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
714716 HP_ARCH=hppa64
715717 fi
716718 fi
717 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
719 echo "$HP_ARCH"-hp-hpux"$HPUX_REV"
718720 exit ;;
719721 ia64:HP-UX:*:*)
720 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
721 echo ia64-hp-hpux${HPUX_REV}
722 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
723 echo ia64-hp-hpux"$HPUX_REV"
722724 exit ;;
723725 3050*:HI-UX:*:*)
724 eval $set_cc_for_build
725 sed 's/^ //' << EOF >$dummy.c
726 set_cc_for_build
727 sed 's/^ //' << EOF > "$dummy.c"
726728 #include <unistd.h>
727729 int
728730 main ()
747749 exit (0);
748750 }
749751 EOF
750 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
752 $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
751753 { echo "$SYSTEM_NAME"; exit; }
752754 echo unknown-hitachi-hiuxwe2
753755 exit ;;
754 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
756 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)
755757 echo hppa1.1-hp-bsd
756758 exit ;;
757759 9000/8??:4.3bsd:*:*)
760762 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
761763 echo hppa1.0-hp-mpeix
762764 exit ;;
763 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
765 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)
764766 echo hppa1.1-hp-osf
765767 exit ;;
766768 hp8??:OSF1:*:*)
768770 exit ;;
769771 i*86:OSF1:*:*)
770772 if [ -x /usr/sbin/sysversion ] ; then
771 echo ${UNAME_MACHINE}-unknown-osf1mk
773 echo "$UNAME_MACHINE"-unknown-osf1mk
772774 else
773 echo ${UNAME_MACHINE}-unknown-osf1
775 echo "$UNAME_MACHINE"-unknown-osf1
774776 fi
775777 exit ;;
776778 parisc*:Lites*:*:*)
795797 echo c4-convex-bsd
796798 exit ;;
797799 CRAY*Y-MP:*:*:*)
798 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
800 echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
799801 exit ;;
800802 CRAY*[A-Z]90:*:*:*)
801 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
803 echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \
802804 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
803805 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
804806 -e 's/\.[^.]*$/.X/'
805807 exit ;;
806808 CRAY*TS:*:*:*)
807 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
809 echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
808810 exit ;;
809811 CRAY*T3E:*:*:*)
810 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
812 echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
811813 exit ;;
812814 CRAY*SV1:*:*:*)
813 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
815 echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
814816 exit ;;
815817 *:UNICOS/mp:*:*)
816 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
818 echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
817819 exit ;;
818820 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
819821 FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
820822 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
821 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
823 FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
822824 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
823825 exit ;;
824826 5000:UNIX_System_V:4.*:*)
825827 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
826 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
828 FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
827829 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
828830 exit ;;
829831 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
830 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
832 echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE"
831833 exit ;;
832834 sparc*:BSD/OS:*:*)
833 echo sparc-unknown-bsdi${UNAME_RELEASE}
835 echo sparc-unknown-bsdi"$UNAME_RELEASE"
834836 exit ;;
835837 *:BSD/OS:*:*)
836 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
838 echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE"
839 exit ;;
840 arm:FreeBSD:*:*)
841 UNAME_PROCESSOR=`uname -p`
842 set_cc_for_build
843 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
844 | grep -q __ARM_PCS_VFP
845 then
846 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
847 else
848 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
849 fi
837850 exit ;;
838851 *:FreeBSD:*:*)
839852 UNAME_PROCESSOR=`/usr/bin/uname -p`
840 case ${UNAME_PROCESSOR} in
853 case "$UNAME_PROCESSOR" in
841854 amd64)
842855 UNAME_PROCESSOR=x86_64 ;;
843856 i386)
844857 UNAME_PROCESSOR=i586 ;;
845858 esac
846 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
859 echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
847860 exit ;;
848861 i*:CYGWIN*:*)
849 echo ${UNAME_MACHINE}-pc-cygwin
862 echo "$UNAME_MACHINE"-pc-cygwin
850863 exit ;;
851864 *:MINGW64*:*)
852 echo ${UNAME_MACHINE}-pc-mingw64
865 echo "$UNAME_MACHINE"-pc-mingw64
853866 exit ;;
854867 *:MINGW*:*)
855 echo ${UNAME_MACHINE}-pc-mingw32
868 echo "$UNAME_MACHINE"-pc-mingw32
856869 exit ;;
857870 *:MSYS*:*)
858 echo ${UNAME_MACHINE}-pc-msys
859 exit ;;
860 i*:windows32*:*)
861 # uname -m includes "-pc" on this system.
862 echo ${UNAME_MACHINE}-mingw32
871 echo "$UNAME_MACHINE"-pc-msys
863872 exit ;;
864873 i*:PW*:*)
865 echo ${UNAME_MACHINE}-pc-pw32
874 echo "$UNAME_MACHINE"-pc-pw32
866875 exit ;;
867876 *:Interix*:*)
868 case ${UNAME_MACHINE} in
877 case "$UNAME_MACHINE" in
869878 x86)
870 echo i586-pc-interix${UNAME_RELEASE}
879 echo i586-pc-interix"$UNAME_RELEASE"
871880 exit ;;
872881 authenticamd | genuineintel | EM64T)
873 echo x86_64-unknown-interix${UNAME_RELEASE}
882 echo x86_64-unknown-interix"$UNAME_RELEASE"
874883 exit ;;
875884 IA64)
876 echo ia64-unknown-interix${UNAME_RELEASE}
885 echo ia64-unknown-interix"$UNAME_RELEASE"
877886 exit ;;
878887 esac ;;
879 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
880 echo i${UNAME_MACHINE}-pc-mks
881 exit ;;
882 8664:Windows_NT:*)
883 echo x86_64-pc-mks
884 exit ;;
885 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
886 # How do we know it's Interix rather than the generic POSIX subsystem?
887 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
888 # UNAME_MACHINE based on the output of uname instead of i386?
889 echo i586-pc-interix
890 exit ;;
891888 i*:UWIN*:*)
892 echo ${UNAME_MACHINE}-pc-uwin
889 echo "$UNAME_MACHINE"-pc-uwin
893890 exit ;;
894891 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
895892 echo x86_64-unknown-cygwin
896893 exit ;;
897 p*:CYGWIN*:*)
898 echo powerpcle-unknown-cygwin
899 exit ;;
900894 prep*:SunOS:5.*:*)
901 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
895 echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
902896 exit ;;
903897 *:GNU:*:*)
904898 # the GNU system
905 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
899 echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
906900 exit ;;
907901 *:GNU/*:*:*)
908902 # other systems with GNU libc and userland
909 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
910 exit ;;
911 i*86:Minix:*:*)
912 echo ${UNAME_MACHINE}-pc-minix
903 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
904 exit ;;
905 *:Minix:*:*)
906 echo "$UNAME_MACHINE"-unknown-minix
913907 exit ;;
914908 aarch64:Linux:*:*)
915 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
909 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
916910 exit ;;
917911 aarch64_be:Linux:*:*)
918912 UNAME_MACHINE=aarch64_be
919 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
913 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
920914 exit ;;
921915 alpha:Linux:*:*)
922916 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
930924 esac
931925 objdump --private-headers /bin/sh | grep -q ld.so.1
932926 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
933 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
927 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
934928 exit ;;
935929 arc:Linux:*:* | arceb:Linux:*:*)
936 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
930 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
937931 exit ;;
938932 arm*:Linux:*:*)
939 eval $set_cc_for_build
933 set_cc_for_build
940934 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
941935 | grep -q __ARM_EABI__
942936 then
943 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
937 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
944938 else
945939 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
946940 | grep -q __ARM_PCS_VFP
947941 then
948 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
942 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi
949943 else
950 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
944 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf
951945 fi
952946 fi
953947 exit ;;
954948 avr32*:Linux:*:*)
955 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
949 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
956950 exit ;;
957951 cris:Linux:*:*)
958 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
952 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
959953 exit ;;
960954 crisv32:Linux:*:*)
961 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
955 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
962956 exit ;;
963957 e2k:Linux:*:*)
964 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
958 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
965959 exit ;;
966960 frv:Linux:*:*)
967 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
961 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
968962 exit ;;
969963 hexagon:Linux:*:*)
970 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
964 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
971965 exit ;;
972966 i*86:Linux:*:*)
973 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
967 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
974968 exit ;;
975969 ia64:Linux:*:*)
976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
970 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
977971 exit ;;
978972 k1om:Linux:*:*)
979 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
973 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
980974 exit ;;
981975 m32r*:Linux:*:*)
982 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
976 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
983977 exit ;;
984978 m68*:Linux:*:*)
985 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
979 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
986980 exit ;;
987981 mips:Linux:*:* | mips64:Linux:*:*)
988 eval $set_cc_for_build
989 sed 's/^ //' << EOF >$dummy.c
982 set_cc_for_build
983 sed 's/^ //' << EOF > "$dummy.c"
990984 #undef CPU
991985 #undef ${UNAME_MACHINE}
992986 #undef ${UNAME_MACHINE}el
1000994 #endif
1001995 #endif
1002996 EOF
1003 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
1004 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
997 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
998 test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
1005999 ;;
10061000 mips64el:Linux:*:*)
1007 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1001 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10081002 exit ;;
10091003 openrisc*:Linux:*:*)
1010 echo or1k-unknown-linux-${LIBC}
1004 echo or1k-unknown-linux-"$LIBC"
10111005 exit ;;
10121006 or32:Linux:*:* | or1k*:Linux:*:*)
1013 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1007 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10141008 exit ;;
10151009 padre:Linux:*:*)
1016 echo sparc-unknown-linux-${LIBC}
1010 echo sparc-unknown-linux-"$LIBC"
10171011 exit ;;
10181012 parisc64:Linux:*:* | hppa64:Linux:*:*)
1019 echo hppa64-unknown-linux-${LIBC}
1013 echo hppa64-unknown-linux-"$LIBC"
10201014 exit ;;
10211015 parisc:Linux:*:* | hppa:Linux:*:*)
10221016 # Look for CPU level
10231017 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
1024 PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
1025 PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
1026 *) echo hppa-unknown-linux-${LIBC} ;;
1018 PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;;
1019 PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;;
1020 *) echo hppa-unknown-linux-"$LIBC" ;;
10271021 esac
10281022 exit ;;
10291023 ppc64:Linux:*:*)
1030 echo powerpc64-unknown-linux-${LIBC}
1024 echo powerpc64-unknown-linux-"$LIBC"
10311025 exit ;;
10321026 ppc:Linux:*:*)
1033 echo powerpc-unknown-linux-${LIBC}
1027 echo powerpc-unknown-linux-"$LIBC"
10341028 exit ;;
10351029 ppc64le:Linux:*:*)
1036 echo powerpc64le-unknown-linux-${LIBC}
1030 echo powerpc64le-unknown-linux-"$LIBC"
10371031 exit ;;
10381032 ppcle:Linux:*:*)
1039 echo powerpcle-unknown-linux-${LIBC}
1033 echo powerpcle-unknown-linux-"$LIBC"
10401034 exit ;;
10411035 riscv32:Linux:*:* | riscv64:Linux:*:*)
1042 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1036 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10431037 exit ;;
10441038 s390:Linux:*:* | s390x:Linux:*:*)
1045 echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
1039 echo "$UNAME_MACHINE"-ibm-linux-"$LIBC"
10461040 exit ;;
10471041 sh64*:Linux:*:*)
1048 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1042 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10491043 exit ;;
10501044 sh*:Linux:*:*)
1051 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1045 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10521046 exit ;;
10531047 sparc:Linux:*:* | sparc64:Linux:*:*)
1054 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1048 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10551049 exit ;;
10561050 tile*:Linux:*:*)
1057 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1051 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10581052 exit ;;
10591053 vax:Linux:*:*)
1060 echo ${UNAME_MACHINE}-dec-linux-${LIBC}
1054 echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
10611055 exit ;;
10621056 x86_64:Linux:*:*)
1063 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
1057 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
10641058 exit ;;
10651059 xtensa*:Linux:*:*)
1066 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1060 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10671061 exit ;;
10681062 i*86:DYNIX/ptx:4*:*)
10691063 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
10771071 # I am not positive that other SVR4 systems won't match this,
10781072 # I just have to hope. -- rms.
10791073 # Use sysv4.2uw... so that sysv4* matches it.
1080 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
1074 echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
10811075 exit ;;
10821076 i*86:OS/2:*:*)
10831077 # If we were able to find `uname', then EMX Unix compatibility
10841078 # is probably installed.
1085 echo ${UNAME_MACHINE}-pc-os2-emx
1079 echo "$UNAME_MACHINE"-pc-os2-emx
10861080 exit ;;
10871081 i*86:XTS-300:*:STOP)
1088 echo ${UNAME_MACHINE}-unknown-stop
1082 echo "$UNAME_MACHINE"-unknown-stop
10891083 exit ;;
10901084 i*86:atheos:*:*)
1091 echo ${UNAME_MACHINE}-unknown-atheos
1085 echo "$UNAME_MACHINE"-unknown-atheos
10921086 exit ;;
10931087 i*86:syllable:*:*)
1094 echo ${UNAME_MACHINE}-pc-syllable
1088 echo "$UNAME_MACHINE"-pc-syllable
10951089 exit ;;
10961090 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
1097 echo i386-unknown-lynxos${UNAME_RELEASE}
1091 echo i386-unknown-lynxos"$UNAME_RELEASE"
10981092 exit ;;
10991093 i*86:*DOS:*:*)
1100 echo ${UNAME_MACHINE}-pc-msdosdjgpp
1101 exit ;;
1102 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
1103 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1094 echo "$UNAME_MACHINE"-pc-msdosdjgpp
1095 exit ;;
1096 i*86:*:4.*:*)
1097 UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
11041098 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1105 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1099 echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL"
11061100 else
1107 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1101 echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL"
11081102 fi
11091103 exit ;;
11101104 i*86:*:5:[678]*)
11141108 *Pentium) UNAME_MACHINE=i586 ;;
11151109 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
11161110 esac
1117 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1111 echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
11181112 exit ;;
11191113 i*86:*:3.2:*)
11201114 if test -f /usr/options/cb.name; then
11211115 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1122 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1116 echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL"
11231117 elif /bin/uname -X 2>/dev/null >/dev/null ; then
11241118 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
11251119 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
11291123 && UNAME_MACHINE=i686
11301124 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
11311125 && UNAME_MACHINE=i686
1132 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1126 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL"
11331127 else
1134 echo ${UNAME_MACHINE}-pc-sysv32
1128 echo "$UNAME_MACHINE"-pc-sysv32
11351129 fi
11361130 exit ;;
11371131 pc:*:*:*)
11511145 exit ;;
11521146 i860:*:4.*:*) # i860-SVR4
11531147 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1154 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1148 echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4
11551149 else # Add other i860-SVR4 vendors below as they are discovered.
1156 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1150 echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4
11571151 fi
11581152 exit ;;
11591153 mini*:CTIX:SYS*5:*)
11731167 test -r /etc/.relid \
11741168 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11751169 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1176 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1170 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11771171 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1178 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1172 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11791173 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
11801174 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
11811175 && { echo i486-ncr-sysv4; exit; } ;;
11841178 test -r /etc/.relid \
11851179 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11861180 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1187 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1181 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11881182 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1189 && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
1183 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; }
11901184 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1191 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1185 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11921186 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1193 echo m68k-unknown-lynxos${UNAME_RELEASE}
1187 echo m68k-unknown-lynxos"$UNAME_RELEASE"
11941188 exit ;;
11951189 mc68030:UNIX_System_V:4.*:*)
11961190 echo m68k-atari-sysv4
11971191 exit ;;
11981192 TSUNAMI:LynxOS:2.*:*)
1199 echo sparc-unknown-lynxos${UNAME_RELEASE}
1193 echo sparc-unknown-lynxos"$UNAME_RELEASE"
12001194 exit ;;
12011195 rs6000:LynxOS:2.*:*)
1202 echo rs6000-unknown-lynxos${UNAME_RELEASE}
1196 echo rs6000-unknown-lynxos"$UNAME_RELEASE"
12031197 exit ;;
12041198 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
1205 echo powerpc-unknown-lynxos${UNAME_RELEASE}
1199 echo powerpc-unknown-lynxos"$UNAME_RELEASE"
12061200 exit ;;
12071201 SM[BE]S:UNIX_SV:*:*)
1208 echo mips-dde-sysv${UNAME_RELEASE}
1202 echo mips-dde-sysv"$UNAME_RELEASE"
12091203 exit ;;
12101204 RM*:ReliantUNIX-*:*:*)
12111205 echo mips-sni-sysv4
12161210 *:SINIX-*:*:*)
12171211 if uname -p 2>/dev/null >/dev/null ; then
12181212 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1219 echo ${UNAME_MACHINE}-sni-sysv4
1213 echo "$UNAME_MACHINE"-sni-sysv4
12201214 else
12211215 echo ns32k-sni-sysv
12221216 fi
12361230 exit ;;
12371231 i*86:VOS:*:*)
12381232 # From Paul.Green@stratus.com.
1239 echo ${UNAME_MACHINE}-stratus-vos
1233 echo "$UNAME_MACHINE"-stratus-vos
12401234 exit ;;
12411235 *:VOS:*:*)
12421236 # From Paul.Green@stratus.com.
12431237 echo hppa1.1-stratus-vos
12441238 exit ;;
12451239 mc68*:A/UX:*:*)
1246 echo m68k-apple-aux${UNAME_RELEASE}
1240 echo m68k-apple-aux"$UNAME_RELEASE"
12471241 exit ;;
12481242 news*:NEWS-OS:6*:*)
12491243 echo mips-sony-newsos6
12501244 exit ;;
12511245 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
12521246 if [ -d /usr/nec ]; then
1253 echo mips-nec-sysv${UNAME_RELEASE}
1247 echo mips-nec-sysv"$UNAME_RELEASE"
12541248 else
1255 echo mips-unknown-sysv${UNAME_RELEASE}
1249 echo mips-unknown-sysv"$UNAME_RELEASE"
12561250 fi
12571251 exit ;;
12581252 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
12711265 echo x86_64-unknown-haiku
12721266 exit ;;
12731267 SX-4:SUPER-UX:*:*)
1274 echo sx4-nec-superux${UNAME_RELEASE}
1268 echo sx4-nec-superux"$UNAME_RELEASE"
12751269 exit ;;
12761270 SX-5:SUPER-UX:*:*)
1277 echo sx5-nec-superux${UNAME_RELEASE}
1271 echo sx5-nec-superux"$UNAME_RELEASE"
12781272 exit ;;
12791273 SX-6:SUPER-UX:*:*)
1280 echo sx6-nec-superux${UNAME_RELEASE}
1274 echo sx6-nec-superux"$UNAME_RELEASE"
12811275 exit ;;
12821276 SX-7:SUPER-UX:*:*)
1283 echo sx7-nec-superux${UNAME_RELEASE}
1277 echo sx7-nec-superux"$UNAME_RELEASE"
12841278 exit ;;
12851279 SX-8:SUPER-UX:*:*)
1286 echo sx8-nec-superux${UNAME_RELEASE}
1280 echo sx8-nec-superux"$UNAME_RELEASE"
12871281 exit ;;
12881282 SX-8R:SUPER-UX:*:*)
1289 echo sx8r-nec-superux${UNAME_RELEASE}
1283 echo sx8r-nec-superux"$UNAME_RELEASE"
12901284 exit ;;
12911285 SX-ACE:SUPER-UX:*:*)
1292 echo sxace-nec-superux${UNAME_RELEASE}
1286 echo sxace-nec-superux"$UNAME_RELEASE"
12931287 exit ;;
12941288 Power*:Rhapsody:*:*)
1295 echo powerpc-apple-rhapsody${UNAME_RELEASE}
1289 echo powerpc-apple-rhapsody"$UNAME_RELEASE"
12961290 exit ;;
12971291 *:Rhapsody:*:*)
1298 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1292 echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
12991293 exit ;;
13001294 *:Darwin:*:*)
13011295 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1302 eval $set_cc_for_build
1296 set_cc_for_build
13031297 if test "$UNAME_PROCESSOR" = unknown ; then
13041298 UNAME_PROCESSOR=powerpc
13051299 fi
1306 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
1300 if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
13071301 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
13081302 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
13091303 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
13311325 # that Apple uses in portable devices.
13321326 UNAME_PROCESSOR=x86_64
13331327 fi
1334 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1328 echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
13351329 exit ;;
13361330 *:procnto*:*:* | *:QNX:[0123456789]*:*)
13371331 UNAME_PROCESSOR=`uname -p`
13391333 UNAME_PROCESSOR=i386
13401334 UNAME_MACHINE=pc
13411335 fi
1342 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1336 echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE"
13431337 exit ;;
13441338 *:QNX:*:4*)
13451339 echo i386-pc-qnx
13461340 exit ;;
13471341 NEO-*:NONSTOP_KERNEL:*:*)
1348 echo neo-tandem-nsk${UNAME_RELEASE}
1342 echo neo-tandem-nsk"$UNAME_RELEASE"
13491343 exit ;;
13501344 NSE-*:NONSTOP_KERNEL:*:*)
1351 echo nse-tandem-nsk${UNAME_RELEASE}
1345 echo nse-tandem-nsk"$UNAME_RELEASE"
13521346 exit ;;
13531347 NSR-*:NONSTOP_KERNEL:*:*)
1354 echo nsr-tandem-nsk${UNAME_RELEASE}
1348 echo nsr-tandem-nsk"$UNAME_RELEASE"
1349 exit ;;
1350 NSV-*:NONSTOP_KERNEL:*:*)
1351 echo nsv-tandem-nsk"$UNAME_RELEASE"
13551352 exit ;;
13561353 NSX-*:NONSTOP_KERNEL:*:*)
1357 echo nsx-tandem-nsk${UNAME_RELEASE}
1354 echo nsx-tandem-nsk"$UNAME_RELEASE"
13581355 exit ;;
13591356 *:NonStop-UX:*:*)
13601357 echo mips-compaq-nonstopux
13631360 echo bs2000-siemens-sysv
13641361 exit ;;
13651362 DS/*:UNIX_System_V:*:*)
1366 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1363 echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE"
13671364 exit ;;
13681365 *:Plan9:*:*)
13691366 # "uname -m" is not consistent, so use $cputype instead. 386
13701367 # is converted to i386 for consistency with other x86
13711368 # operating systems.
1369 # shellcheck disable=SC2154
13721370 if test "$cputype" = 386; then
13731371 UNAME_MACHINE=i386
13741372 else
13751373 UNAME_MACHINE="$cputype"
13761374 fi
1377 echo ${UNAME_MACHINE}-unknown-plan9
1375 echo "$UNAME_MACHINE"-unknown-plan9
13781376 exit ;;
13791377 *:TOPS-10:*:*)
13801378 echo pdp10-unknown-tops10
13951393 echo pdp10-unknown-its
13961394 exit ;;
13971395 SEI:*:*:SEIUX)
1398 echo mips-sei-seiux${UNAME_RELEASE}
1396 echo mips-sei-seiux"$UNAME_RELEASE"
13991397 exit ;;
14001398 *:DragonFly:*:*)
1401 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1399 echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
14021400 exit ;;
14031401 *:*VMS:*:*)
14041402 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1405 case "${UNAME_MACHINE}" in
1403 case "$UNAME_MACHINE" in
14061404 A*) echo alpha-dec-vms ; exit ;;
14071405 I*) echo ia64-dec-vms ; exit ;;
14081406 V*) echo vax-dec-vms ; exit ;;
14111409 echo i386-pc-xenix
14121410 exit ;;
14131411 i*86:skyos:*:*)
1414 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
1412 echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
14151413 exit ;;
14161414 i*86:rdos:*:*)
1417 echo ${UNAME_MACHINE}-pc-rdos
1415 echo "$UNAME_MACHINE"-pc-rdos
14181416 exit ;;
14191417 i*86:AROS:*:*)
1420 echo ${UNAME_MACHINE}-pc-aros
1418 echo "$UNAME_MACHINE"-pc-aros
14211419 exit ;;
14221420 x86_64:VMkernel:*:*)
1423 echo ${UNAME_MACHINE}-unknown-esx
1421 echo "$UNAME_MACHINE"-unknown-esx
14241422 exit ;;
14251423 amd64:Isilon\ OneFS:*:*)
14261424 echo x86_64-unknown-onefs
14271425 exit ;;
14281426 esac
14291427
1428 echo "$0: unable to guess system type" >&2
1429
1430 case "$UNAME_MACHINE:$UNAME_SYSTEM" in
1431 mips:Linux | mips64:Linux)
1432 # If we got here on MIPS GNU/Linux, output extra information.
1433 cat >&2 <<EOF
1434
1435 NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize
1436 the system type. Please install a C compiler and try again.
1437 EOF
1438 ;;
1439 esac
1440
14301441 cat >&2 <<EOF
1431 $0: unable to guess system type
14321442
14331443 This script (version $timestamp), has failed to recognize the
14341444 operating system you are using. If your script is old, overwrite *all*
14351445 copies of config.guess and config.sub with the latest versions from:
14361446
1437 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
1447 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
14381448 and
1439 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
1449 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
14401450
14411451 If $0 has already been updated, send the following data and any
14421452 information you think might be pertinent to config-patches@gnu.org to
14591469 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
14601470 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
14611471
1462 UNAME_MACHINE = ${UNAME_MACHINE}
1463 UNAME_RELEASE = ${UNAME_RELEASE}
1464 UNAME_SYSTEM = ${UNAME_SYSTEM}
1465 UNAME_VERSION = ${UNAME_VERSION}
1472 UNAME_MACHINE = "$UNAME_MACHINE"
1473 UNAME_RELEASE = "$UNAME_RELEASE"
1474 UNAME_SYSTEM = "$UNAME_SYSTEM"
1475 UNAME_VERSION = "$UNAME_VERSION"
14661476 EOF
14671477
14681478 exit 1
14691479
14701480 # Local variables:
1471 # eval: (add-hook 'write-file-hooks 'time-stamp)
1481 # eval: (add-hook 'before-save-hook 'time-stamp)
14721482 # time-stamp-start: "timestamp='"
14731483 # time-stamp-format: "%:y-%02m-%02d"
14741484 # time-stamp-end: "'"
+1474
-1520
config.sub less more
0 #!/bin/sh
0 #! /bin/sh
11 # Configuration validation subroutine script.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-04-02'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
3232 # Otherwise, we print the canonical config type on stdout and succeed.
3333
3434 # You can get the latest version of this script from:
35 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
35 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
3636
3737 # This file is supposed to be the same for all GNU packages
3838 # and recognize all the CPU types, system types and aliases
5656
5757 Canonicalize a configuration name.
5858
59 Operation modes:
59 Options:
6060 -h, --help print this help, then exit
6161 -t, --time-stamp print date of last modification, then exit
6262 -v, --version print version number, then exit
6666 version="\
6767 GNU config.sub ($timestamp)
6868
69 Copyright 1992-2017 Free Software Foundation, Inc.
69 Copyright 1992-2018 Free Software Foundation, Inc.
7070
7171 This is free software; see the source for copying conditions. There is NO
7272 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
9393
9494 *local*)
9595 # First pass through any local machine types.
96 echo $1
96 echo "$1"
9797 exit ;;
9898
9999 * )
109109 exit 1;;
110110 esac
111111
112 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
113 # Here we must recognize all the valid KERNEL-OS combinations.
114 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
115 case $maybe_os in
116 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
117 linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
118 knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
119 kopensolaris*-gnu* | cloudabi*-eabi* | \
120 storm-chaos* | os2-emx* | rtmk-nova*)
121 os=-$maybe_os
122 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
123 ;;
124 android-linux)
125 os=-linux-android
126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
127 ;;
128 *)
129 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
130 if [ $basic_machine != $1 ]
131 then os=`echo $1 | sed 's/.*-/-/'`
132 else os=; fi
133 ;;
112 # Split fields of configuration type
113 IFS="-" read -r field1 field2 field3 field4 <<EOF
114 $1
115 EOF
116
117 # Separate into logical components for further validation
118 case $1 in
119 *-*-*-*-*)
120 echo Invalid configuration \`"$1"\': more than four components >&2
121 exit 1
122 ;;
123 *-*-*-*)
124 basic_machine=$field1-$field2
125 os=$field3-$field4
126 ;;
127 *-*-*)
128 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
129 # parts
130 maybe_os=$field2-$field3
131 case $maybe_os in
132 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
133 | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
134 | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
135 | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
136 | storm-chaos* | os2-emx* | rtmk-nova*)
137 basic_machine=$field1
138 os=$maybe_os
139 ;;
140 android-linux)
141 basic_machine=$field1-unknown
142 os=linux-android
143 ;;
144 *)
145 basic_machine=$field1-$field2
146 os=$field3
147 ;;
148 esac
149 ;;
150 *-*)
151 # A lone config we happen to match not fitting any patern
152 case $field1-$field2 in
153 decstation-3100)
154 basic_machine=mips-dec
155 os=
156 ;;
157 *-*)
158 # Second component is usually, but not always the OS
159 case $field2 in
160 # Prevent following clause from handling this valid os
161 sun*os*)
162 basic_machine=$field1
163 os=$field2
164 ;;
165 # Manufacturers
166 dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \
167 | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \
168 | unicom* | ibm* | next | hp | isi* | apollo | altos* \
169 | convergent* | ncr* | news | 32* | 3600* | 3100* \
170 | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \
171 | ultra | tti* | harris | dolphin | highlevel | gould \
172 | cbm | ns | masscomp | apple | axis | knuth | cray \
173 | microblaze* | sim | cisco \
174 | oki | wec | wrs | winbond)
175 basic_machine=$field1-$field2
176 os=
177 ;;
178 *)
179 basic_machine=$field1
180 os=$field2
181 ;;
182 esac
183 ;;
184 esac
185 ;;
186 *)
187 # Convert single-component short-hands not valid as part of
188 # multi-component configurations.
189 case $field1 in
190 386bsd)
191 basic_machine=i386-pc
192 os=bsd
193 ;;
194 a29khif)
195 basic_machine=a29k-amd
196 os=udi
197 ;;
198 adobe68k)
199 basic_machine=m68010-adobe
200 os=scout
201 ;;
202 alliant)
203 basic_machine=fx80-alliant
204 os=
205 ;;
206 altos | altos3068)
207 basic_machine=m68k-altos
208 os=
209 ;;
210 am29k)
211 basic_machine=a29k-none
212 os=bsd
213 ;;
214 amdahl)
215 basic_machine=580-amdahl
216 os=sysv
217 ;;
218 amiga)
219 basic_machine=m68k-unknown
220 os=
221 ;;
222 amigaos | amigados)
223 basic_machine=m68k-unknown
224 os=amigaos
225 ;;
226 amigaunix | amix)
227 basic_machine=m68k-unknown
228 os=sysv4
229 ;;
230 apollo68)
231 basic_machine=m68k-apollo
232 os=sysv
233 ;;
234 apollo68bsd)
235 basic_machine=m68k-apollo
236 os=bsd
237 ;;
238 aros)
239 basic_machine=i386-pc
240 os=aros
241 ;;
242 aux)
243 basic_machine=m68k-apple
244 os=aux
245 ;;
246 balance)
247 basic_machine=ns32k-sequent
248 os=dynix
249 ;;
250 blackfin)
251 basic_machine=bfin-unknown
252 os=linux
253 ;;
254 cegcc)
255 basic_machine=arm-unknown
256 os=cegcc
257 ;;
258 convex-c1)
259 basic_machine=c1-convex
260 os=bsd
261 ;;
262 convex-c2)
263 basic_machine=c2-convex
264 os=bsd
265 ;;
266 convex-c32)
267 basic_machine=c32-convex
268 os=bsd
269 ;;
270 convex-c34)
271 basic_machine=c34-convex
272 os=bsd
273 ;;
274 convex-c38)
275 basic_machine=c38-convex
276 os=bsd
277 ;;
278 cray)
279 basic_machine=j90-cray
280 os=unicos
281 ;;
282 crds | unos)
283 basic_machine=m68k-crds
284 os=
285 ;;
286 da30)
287 basic_machine=m68k-da30
288 os=
289 ;;
290 decstation | pmax | pmin | dec3100 | decstatn)
291 basic_machine=mips-dec
292 os=
293 ;;
294 delta88)
295 basic_machine=m88k-motorola
296 os=sysv3
297 ;;
298 dicos)
299 basic_machine=i686-pc
300 os=dicos
301 ;;
302 djgpp)
303 basic_machine=i586-pc
304 os=msdosdjgpp
305 ;;
306 ebmon29k)
307 basic_machine=a29k-amd
308 os=ebmon
309 ;;
310 es1800 | OSE68k | ose68k | ose | OSE)
311 basic_machine=m68k-ericsson
312 os=ose
313 ;;
314 gmicro)
315 basic_machine=tron-gmicro
316 os=sysv
317 ;;
318 go32)
319 basic_machine=i386-pc
320 os=go32
321 ;;
322 h8300hms)
323 basic_machine=h8300-hitachi
324 os=hms
325 ;;
326 h8300xray)
327 basic_machine=h8300-hitachi
328 os=xray
329 ;;
330 h8500hms)
331 basic_machine=h8500-hitachi
332 os=hms
333 ;;
334 harris)
335 basic_machine=m88k-harris
336 os=sysv3
337 ;;
338 hp300)
339 basic_machine=m68k-hp
340 ;;
341 hp300bsd)
342 basic_machine=m68k-hp
343 os=bsd
344 ;;
345 hp300hpux)
346 basic_machine=m68k-hp
347 os=hpux
348 ;;
349 hppaosf)
350 basic_machine=hppa1.1-hp
351 os=osf
352 ;;
353 hppro)
354 basic_machine=hppa1.1-hp
355 os=proelf
356 ;;
357 i386mach)
358 basic_machine=i386-mach
359 os=mach
360 ;;
361 vsta)
362 basic_machine=i386-pc
363 os=vsta
364 ;;
365 isi68 | isi)
366 basic_machine=m68k-isi
367 os=sysv
368 ;;
369 m68knommu)
370 basic_machine=m68k-unknown
371 os=linux
372 ;;
373 magnum | m3230)
374 basic_machine=mips-mips
375 os=sysv
376 ;;
377 merlin)
378 basic_machine=ns32k-utek
379 os=sysv
380 ;;
381 mingw64)
382 basic_machine=x86_64-pc
383 os=mingw64
384 ;;
385 mingw32)
386 basic_machine=i686-pc
387 os=mingw32
388 ;;
389 mingw32ce)
390 basic_machine=arm-unknown
391 os=mingw32ce
392 ;;
393 monitor)
394 basic_machine=m68k-rom68k
395 os=coff
396 ;;
397 morphos)
398 basic_machine=powerpc-unknown
399 os=morphos
400 ;;
401 moxiebox)
402 basic_machine=moxie-unknown
403 os=moxiebox
404 ;;
405 msdos)
406 basic_machine=i386-pc
407 os=msdos
408 ;;
409 msys)
410 basic_machine=i686-pc
411 os=msys
412 ;;
413 mvs)
414 basic_machine=i370-ibm
415 os=mvs
416 ;;
417 nacl)
418 basic_machine=le32-unknown
419 os=nacl
420 ;;
421 ncr3000)
422 basic_machine=i486-ncr
423 os=sysv4
424 ;;
425 netbsd386)
426 basic_machine=i386-pc
427 os=netbsd
428 ;;
429 netwinder)
430 basic_machine=armv4l-rebel
431 os=linux
432 ;;
433 news | news700 | news800 | news900)
434 basic_machine=m68k-sony
435 os=newsos
436 ;;
437 news1000)
438 basic_machine=m68030-sony
439 os=newsos
440 ;;
441 necv70)
442 basic_machine=v70-nec
443 os=sysv
444 ;;
445 nh3000)
446 basic_machine=m68k-harris
447 os=cxux
448 ;;
449 nh[45]000)
450 basic_machine=m88k-harris
451 os=cxux
452 ;;
453 nindy960)
454 basic_machine=i960-intel
455 os=nindy
456 ;;
457 mon960)
458 basic_machine=i960-intel
459 os=mon960
460 ;;
461 nonstopux)
462 basic_machine=mips-compaq
463 os=nonstopux
464 ;;
465 os400)
466 basic_machine=powerpc-ibm
467 os=os400
468 ;;
469 OSE68000 | ose68000)
470 basic_machine=m68000-ericsson
471 os=ose
472 ;;
473 os68k)
474 basic_machine=m68k-none
475 os=os68k
476 ;;
477 paragon)
478 basic_machine=i860-intel
479 os=osf
480 ;;
481 parisc)
482 basic_machine=hppa-unknown
483 os=linux
484 ;;
485 pw32)
486 basic_machine=i586-unknown
487 os=pw32
488 ;;
489 rdos | rdos64)
490 basic_machine=x86_64-pc
491 os=rdos
492 ;;
493 rdos32)
494 basic_machine=i386-pc
495 os=rdos
496 ;;
497 rom68k)
498 basic_machine=m68k-rom68k
499 os=coff
500 ;;
501 sa29200)
502 basic_machine=a29k-amd
503 os=udi
504 ;;
505 sei)
506 basic_machine=mips-sei
507 os=seiux
508 ;;
509 sequent)
510 basic_machine=i386-sequent
511 os=
512 ;;
513 sps7)
514 basic_machine=m68k-bull
515 os=sysv2
516 ;;
517 st2000)
518 basic_machine=m68k-tandem
519 os=
520 ;;
521 stratus)
522 basic_machine=i860-stratus
523 os=sysv4
524 ;;
525 sun2)
526 basic_machine=m68000-sun
527 os=
528 ;;
529 sun2os3)
530 basic_machine=m68000-sun
531 os=sunos3
532 ;;
533 sun2os4)
534 basic_machine=m68000-sun
535 os=sunos4
536 ;;
537 sun3)
538 basic_machine=m68k-sun
539 os=
540 ;;
541 sun3os3)
542 basic_machine=m68k-sun
543 os=sunos3
544 ;;
545 sun3os4)
546 basic_machine=m68k-sun
547 os=sunos4
548 ;;
549 sun4)
550 basic_machine=sparc-sun
551 os=
552 ;;
553 sun4os3)
554 basic_machine=sparc-sun
555 os=sunos3
556 ;;
557 sun4os4)
558 basic_machine=sparc-sun
559 os=sunos4
560 ;;
561 sun4sol2)
562 basic_machine=sparc-sun
563 os=solaris2
564 ;;
565 sun386 | sun386i | roadrunner)
566 basic_machine=i386-sun
567 os=
568 ;;
569 sv1)
570 basic_machine=sv1-cray
571 os=unicos
572 ;;
573 symmetry)
574 basic_machine=i386-sequent
575 os=dynix
576 ;;
577 t3e)
578 basic_machine=alphaev5-cray
579 os=unicos
580 ;;
581 t90)
582 basic_machine=t90-cray
583 os=unicos
584 ;;
585 toad1)
586 basic_machine=pdp10-xkl
587 os=tops20
588 ;;
589 tpf)
590 basic_machine=s390x-ibm
591 os=tpf
592 ;;
593 udi29k)
594 basic_machine=a29k-amd
595 os=udi
596 ;;
597 ultra3)
598 basic_machine=a29k-nyu
599 os=sym1
600 ;;
601 v810 | necv810)
602 basic_machine=v810-nec
603 os=none
604 ;;
605 vaxv)
606 basic_machine=vax-dec
607 os=sysv
608 ;;
609 vms)
610 basic_machine=vax-dec
611 os=vms
612 ;;
613 vxworks960)
614 basic_machine=i960-wrs
615 os=vxworks
616 ;;
617 vxworks68)
618 basic_machine=m68k-wrs
619 os=vxworks
620 ;;
621 vxworks29k)
622 basic_machine=a29k-wrs
623 os=vxworks
624 ;;
625 xbox)
626 basic_machine=i686-pc
627 os=mingw32
628 ;;
629 ymp)
630 basic_machine=ymp-cray
631 os=unicos
632 ;;
633 *)
634 basic_machine=$1
635 os=
636 ;;
637 esac
638 ;;
134639 esac
135640
136 ### Let's recognize common machines as not being operating systems so
137 ### that things like config.sub decstation-3100 work. We also
138 ### recognize some manufacturers as not being operating systems, so we
139 ### can provide default operating systems below.
140 case $os in
141 -sun*os*)
142 # Prevent following clause from handling this invalid input.
143 ;;
144 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
145 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
146 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
147 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
148 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
149 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
150 -apple | -axis | -knuth | -cray | -microblaze*)
151 os=
152 basic_machine=$1
153 ;;
154 -bluegene*)
155 os=-cnk
156 ;;
157 -sim | -cisco | -oki | -wec | -winbond)
158 os=
159 basic_machine=$1
160 ;;
161 -scout)
162 ;;
163 -wrs)
164 os=-vxworks
165 basic_machine=$1
166 ;;
167 -chorusos*)
168 os=-chorusos
169 basic_machine=$1
170 ;;
171 -chorusrdb)
172 os=-chorusrdb
173 basic_machine=$1
174 ;;
175 -hiux*)
176 os=-hiuxwe2
177 ;;
178 -sco6)
179 os=-sco5v6
180 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
181 ;;
182 -sco5)
183 os=-sco3.2v5
184 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
185 ;;
186 -sco4)
187 os=-sco3.2v4
188 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
189 ;;
190 -sco3.2.[4-9]*)
191 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
193 ;;
194 -sco3.2v[4-9]*)
195 # Don't forget version if it is 3.2v4 or newer.
196 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
197 ;;
198 -sco5v6*)
199 # Don't forget version if it is 3.2v4 or newer.
200 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
201 ;;
202 -sco*)
203 os=-sco3.2v2
204 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
205 ;;
206 -udk*)
207 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
208 ;;
209 -isc)
210 os=-isc2.2
211 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
212 ;;
213 -clix*)
214 basic_machine=clipper-intergraph
215 ;;
216 -isc*)
217 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
218 ;;
219 -lynx*178)
220 os=-lynxos178
221 ;;
222 -lynx*5)
223 os=-lynxos5
224 ;;
225 -lynx*)
226 os=-lynxos
227 ;;
228 -ptx*)
229 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
230 ;;
231 -windowsnt*)
232 os=`echo $os | sed -e 's/windowsnt/winnt/'`
233 ;;
234 -psos*)
235 os=-psos
236 ;;
237 -mint | -mint[0-9]*)
238 basic_machine=m68k-atari
239 os=-mint
240 ;;
241 esac
242
243 # Decode aliases for certain CPU-COMPANY combinations.
641 # Decode 1-component or ad-hoc basic machines
244642 case $basic_machine in
245 # Recognize the basic CPU types without company name.
246 # Some are omitted here because they have special meanings below.
247 1750a | 580 \
248 | a29k \
249 | aarch64 | aarch64_be \
250 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
251 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
252 | am33_2.0 \
253 | arc | arceb \
254 | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
255 | avr | avr32 \
256 | ba \
257 | be32 | be64 \
258 | bfin \
259 | c4x | c8051 | clipper \
260 | d10v | d30v | dlx | dsp16xx \
261 | e2k | epiphany \
262 | fido | fr30 | frv | ft32 \
263 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264 | hexagon \
265 | i370 | i860 | i960 | ia16 | ia64 \
266 | ip2k | iq2000 \
267 | k1om \
268 | le32 | le64 \
269 | lm32 \
270 | m32c | m32r | m32rle | m68000 | m68k | m88k \
271 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
272 | mips | mipsbe | mipseb | mipsel | mipsle \
273 | mips16 \
274 | mips64 | mips64el \
275 | mips64octeon | mips64octeonel \
276 | mips64orion | mips64orionel \
277 | mips64r5900 | mips64r5900el \
278 | mips64vr | mips64vrel \
279 | mips64vr4100 | mips64vr4100el \
280 | mips64vr4300 | mips64vr4300el \
281 | mips64vr5000 | mips64vr5000el \
282 | mips64vr5900 | mips64vr5900el \
283 | mipsisa32 | mipsisa32el \
284 | mipsisa32r2 | mipsisa32r2el \
285 | mipsisa32r6 | mipsisa32r6el \
286 | mipsisa64 | mipsisa64el \
287 | mipsisa64r2 | mipsisa64r2el \
288 | mipsisa64r6 | mipsisa64r6el \
289 | mipsisa64sb1 | mipsisa64sb1el \
290 | mipsisa64sr71k | mipsisa64sr71kel \
291 | mipsr5900 | mipsr5900el \
292 | mipstx39 | mipstx39el \
293 | mn10200 | mn10300 \
294 | moxie \
295 | mt \
296 | msp430 \
297 | nds32 | nds32le | nds32be \
298 | nios | nios2 | nios2eb | nios2el \
299 | ns16k | ns32k \
300 | open8 | or1k | or1knd | or32 \
301 | pdp10 | pdp11 | pj | pjl \
302 | powerpc | powerpc64 | powerpc64le | powerpcle \
303 | pru \
304 | pyramid \
305 | riscv32 | riscv64 \
306 | rl78 | rx \
307 | score \
308 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
309 | sh64 | sh64le \
310 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
311 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
312 | spu \
313 | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
314 | ubicom32 \
315 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
316 | visium \
317 | wasm32 \
318 | we32k \
319 | x86 | xc16x | xstormy16 | xtensa \
320 | z8k | z80)
321 basic_machine=$basic_machine-unknown
322 ;;
323 c54x)
324 basic_machine=tic54x-unknown
325 ;;
326 c55x)
327 basic_machine=tic55x-unknown
328 ;;
329 c6x)
330 basic_machine=tic6x-unknown
643 # Here we handle the default manufacturer of certain CPU types. It is in
644 # some cases the only manufacturer, in others, it is the most popular.
645 w89k)
646 cpu=hppa1.1
647 vendor=winbond
648 ;;
649 op50n)
650 cpu=hppa1.1
651 vendor=oki
652 ;;
653 op60c)
654 cpu=hppa1.1
655 vendor=oki
656 ;;
657 ibm*)
658 cpu=i370
659 vendor=ibm
660 ;;
661 orion105)
662 cpu=clipper
663 vendor=highlevel
664 ;;
665 mac | mpw | mac-mpw)
666 cpu=m68k
667 vendor=apple
668 ;;
669 pmac | pmac-mpw)
670 cpu=powerpc
671 vendor=apple
672 ;;
673
674 # Recognize the various machine names and aliases which stand
675 # for a CPU type and a company and sometimes even an OS.
676 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
677 cpu=m68000
678 vendor=att
679 ;;
680 3b*)
681 cpu=we32k
682 vendor=att
683 ;;
684 bluegene*)
685 cpu=powerpc
686 vendor=ibm
687 os=cnk
688 ;;
689 decsystem10* | dec10*)
690 cpu=pdp10
691 vendor=dec
692 os=tops10
693 ;;
694 decsystem20* | dec20*)
695 cpu=pdp10
696 vendor=dec
697 os=tops20
698 ;;
699 delta | 3300 | motorola-3300 | motorola-delta \
700 | 3300-motorola | delta-motorola)
701 cpu=m68k
702 vendor=motorola
703 ;;
704 dpx2*)
705 cpu=m68k
706 vendor=bull
707 os=sysv3
708 ;;
709 encore | umax | mmax)
710 cpu=ns32k
711 vendor=encore
712 ;;
713 elxsi)
714 cpu=elxsi
715 vendor=elxsi
716 os=${os:-bsd}
717 ;;
718 fx2800)
719 cpu=i860
720 vendor=alliant
721 ;;
722 genix)
723 cpu=ns32k
724 vendor=ns
725 ;;
726 h3050r* | hiux*)
727 cpu=hppa1.1
728 vendor=hitachi
729 os=hiuxwe2
730 ;;
731 hp3k9[0-9][0-9] | hp9[0-9][0-9])
732 cpu=hppa1.0
733 vendor=hp
734 ;;
735 hp9k2[0-9][0-9] | hp9k31[0-9])
736 cpu=m68000
737 vendor=hp
738 ;;
739 hp9k3[2-9][0-9])
740 cpu=m68k
741 vendor=hp
742 ;;
743 hp9k6[0-9][0-9] | hp6[0-9][0-9])
744 cpu=hppa1.0
745 vendor=hp
746 ;;
747 hp9k7[0-79][0-9] | hp7[0-79][0-9])
748 cpu=hppa1.1
749 vendor=hp
750 ;;
751 hp9k78[0-9] | hp78[0-9])
752 # FIXME: really hppa2.0-hp
753 cpu=hppa1.1
754 vendor=hp
755 ;;
756 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
757 # FIXME: really hppa2.0-hp
758 cpu=hppa1.1
759 vendor=hp
760 ;;
761 hp9k8[0-9][13679] | hp8[0-9][13679])
762 cpu=hppa1.1
763 vendor=hp
764 ;;
765 hp9k8[0-9][0-9] | hp8[0-9][0-9])
766 cpu=hppa1.0
767 vendor=hp
768 ;;
769 i*86v32)
770 cpu=`echo "$1" | sed -e 's/86.*/86/'`
771 vendor=pc
772 os=sysv32
773 ;;
774 i*86v4*)
775 cpu=`echo "$1" | sed -e 's/86.*/86/'`
776 vendor=pc
777 os=sysv4
778 ;;
779 i*86v)
780 cpu=`echo "$1" | sed -e 's/86.*/86/'`
781 vendor=pc
782 os=sysv
783 ;;
784 i*86sol2)
785 cpu=`echo "$1" | sed -e 's/86.*/86/'`
786 vendor=pc
787 os=solaris2
788 ;;
789 j90 | j90-cray)
790 cpu=j90
791 vendor=cray
792 os=${os:-unicos}
793 ;;
794 iris | iris4d)
795 cpu=mips
796 vendor=sgi
797 case $os in
798 irix*)
799 ;;
800 *)
801 os=irix4
802 ;;
803 esac
804 ;;
805 miniframe)
806 cpu=m68000
807 vendor=convergent
808 ;;
809 *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*)
810 cpu=m68k
811 vendor=atari
812 os=mint
813 ;;
814 news-3600 | risc-news)
815 cpu=mips
816 vendor=sony
817 os=newsos
818 ;;
819 next | m*-next)
820 cpu=m68k
821 vendor=next
822 case $os in
823 nextstep* )
824 ;;
825 ns2*)
826 os=nextstep2
827 ;;
828 *)
829 os=nextstep3
830 ;;
831 esac
832 ;;
833 np1)
834 cpu=np1
835 vendor=gould
836 ;;
837 op50n-* | op60c-*)
838 cpu=hppa1.1
839 vendor=oki
840 os=proelf
841 ;;
842 pa-hitachi)
843 cpu=hppa1.1
844 vendor=hitachi
845 os=hiuxwe2
846 ;;
847 pbd)
848 cpu=sparc
849 vendor=tti
850 ;;
851 pbb)
852 cpu=m68k
853 vendor=tti
854 ;;
855 pc532)
856 cpu=ns32k
857 vendor=pc532
858 ;;
859 pn)
860 cpu=pn
861 vendor=gould
862 ;;
863 power)
864 cpu=power
865 vendor=ibm
866 ;;
867 ps2)
868 cpu=i386
869 vendor=ibm
870 ;;
871 rm[46]00)
872 cpu=mips
873 vendor=siemens
874 ;;
875 rtpc | rtpc-*)
876 cpu=romp
877 vendor=ibm
878 ;;
879 sde)
880 cpu=mipsisa32
881 vendor=sde
882 os=${os:-elf}
883 ;;
884 simso-wrs)
885 cpu=sparclite
886 vendor=wrs
887 os=vxworks
888 ;;
889 tower | tower-32)
890 cpu=m68k
891 vendor=ncr
892 ;;
893 vpp*|vx|vx-*)
894 cpu=f301
895 vendor=fujitsu
896 ;;
897 w65)
898 cpu=w65
899 vendor=wdc
900 ;;
901 w89k-*)
902 cpu=hppa1.1
903 vendor=winbond
904 os=proelf
905 ;;
906 none)
907 cpu=none
908 vendor=none
331909 ;;
332910 leon|leon[3-9])
333 basic_machine=sparc-$basic_machine
334 ;;
335 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
336 basic_machine=$basic_machine-unknown
337 os=-none
338 ;;
339 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
340 ;;
341 ms1)
342 basic_machine=mt-unknown
343 ;;
344
345 strongarm | thumb | xscale)
346 basic_machine=arm-unknown
347 ;;
348 xgate)
349 basic_machine=$basic_machine-unknown
350 os=-none
351 ;;
352 xscaleeb)
353 basic_machine=armeb-unknown
354 ;;
355
356 xscaleel)
357 basic_machine=armel-unknown
358 ;;
359
911 cpu=sparc
912 vendor=$basic_machine
913 ;;
914 leon-*|leon[3-9]-*)
915 cpu=sparc
916 vendor=`echo "$basic_machine" | sed 's/-.*//'`
917 ;;
918
919 *-*)
920 IFS="-" read -r cpu vendor <<EOF
921 $basic_machine
922 EOF
923 ;;
360924 # We use `pc' rather than `unknown'
361925 # because (1) that's what they normally are, and
362926 # (2) the word "unknown" tends to confuse beginning users.
363927 i*86 | x86_64)
364 basic_machine=$basic_machine-pc
365 ;;
366 # Object if more than one company name word.
367 *-*-*)
368 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
369 exit 1
370 ;;
371 # Recognize the basic CPU types with company name.
372 580-* \
373 | a29k-* \
374 | aarch64-* | aarch64_be-* \
375 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
376 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
377 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
378 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
379 | avr-* | avr32-* \
380 | ba-* \
381 | be32-* | be64-* \
382 | bfin-* | bs2000-* \
383 | c[123]* | c30-* | [cjt]90-* | c4x-* \
384 | c8051-* | clipper-* | craynv-* | cydra-* \
385 | d10v-* | d30v-* | dlx-* \
386 | e2k-* | elxsi-* \
387 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
388 | h8300-* | h8500-* \
389 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
390 | hexagon-* \
391 | i*86-* | i860-* | i960-* | ia16-* | ia64-* \
392 | ip2k-* | iq2000-* \
393 | k1om-* \
394 | le32-* | le64-* \
395 | lm32-* \
396 | m32c-* | m32r-* | m32rle-* \
397 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
398 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
399 | microblaze-* | microblazeel-* \
400 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
401 | mips16-* \
402 | mips64-* | mips64el-* \
403 | mips64octeon-* | mips64octeonel-* \
404 | mips64orion-* | mips64orionel-* \
405 | mips64r5900-* | mips64r5900el-* \
406 | mips64vr-* | mips64vrel-* \
407 | mips64vr4100-* | mips64vr4100el-* \
408 | mips64vr4300-* | mips64vr4300el-* \
409 | mips64vr5000-* | mips64vr5000el-* \
410 | mips64vr5900-* | mips64vr5900el-* \
411 | mipsisa32-* | mipsisa32el-* \
412 | mipsisa32r2-* | mipsisa32r2el-* \
413 | mipsisa32r6-* | mipsisa32r6el-* \
414 | mipsisa64-* | mipsisa64el-* \
415 | mipsisa64r2-* | mipsisa64r2el-* \
416 | mipsisa64r6-* | mipsisa64r6el-* \
417 | mipsisa64sb1-* | mipsisa64sb1el-* \
418 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
419 | mipsr5900-* | mipsr5900el-* \
420 | mipstx39-* | mipstx39el-* \
421 | mmix-* \
422 | mt-* \
423 | msp430-* \
424 | nds32-* | nds32le-* | nds32be-* \
425 | nios-* | nios2-* | nios2eb-* | nios2el-* \
426 | none-* | np1-* | ns16k-* | ns32k-* \
427 | open8-* \
428 | or1k*-* \
429 | orion-* \
430 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
431 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
432 | pru-* \
433 | pyramid-* \
434 | riscv32-* | riscv64-* \
435 | rl78-* | romp-* | rs6000-* | rx-* \
436 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
437 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
438 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
439 | sparclite-* \
440 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \
441 | tahoe-* \
442 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
443 | tile*-* \
444 | tron-* \
445 | ubicom32-* \
446 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
447 | vax-* \
448 | visium-* \
449 | wasm32-* \
450 | we32k-* \
451 | x86-* | x86_64-* | xc16x-* | xps100-* \
452 | xstormy16-* | xtensa*-* \
453 | ymp-* \
454 | z8k-* | z80-*)
455 ;;
456 # Recognize the basic CPU types without company name, with glob match.
457 xtensa*)
458 basic_machine=$basic_machine-unknown
459 ;;
460 # Recognize the various machine names and aliases which stand
461 # for a CPU type and a company and sometimes even an OS.
462 386bsd)
463 basic_machine=i386-unknown
464 os=-bsd
465 ;;
466 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
467 basic_machine=m68000-att
468 ;;
469 3b*)
470 basic_machine=we32k-att
471 ;;
472 a29khif)
473 basic_machine=a29k-amd
474 os=-udi
475 ;;
476 abacus)
477 basic_machine=abacus-unknown
478 ;;
479 adobe68k)
480 basic_machine=m68010-adobe
481 os=-scout
482 ;;
483 alliant | fx80)
484 basic_machine=fx80-alliant
485 ;;
486 altos | altos3068)
487 basic_machine=m68k-altos
488 ;;
489 am29k)
490 basic_machine=a29k-none
491 os=-bsd
492 ;;
493 amd64)
494 basic_machine=x86_64-pc
495 ;;
928 cpu=$basic_machine
929 vendor=pc
930 ;;
931 # These rules are duplicated from below for sake of the special case above;
932 # i.e. things that normalized to x86 arches should also default to "pc"
933 pc98)
934 cpu=i386
935 vendor=pc
936 ;;
937 x64 | amd64)
938 cpu=x86_64
939 vendor=pc
940 ;;
941 # Recognize the basic CPU types without company name.
942 *)
943 cpu=$basic_machine
944 vendor=unknown
945 ;;
946 esac
947
948 unset -v basic_machine
949
950 # Decode basic machines in the full and proper CPU-Company form.
951 case $cpu-$vendor in
952 # Here we handle the default manufacturer of certain CPU types in cannonical form. It is in
953 # some cases the only manufacturer, in others, it is the most popular.
954 craynv-unknown)
955 vendor=cray
956 os=${os:-unicosmp}
957 ;;
958 c90-unknown | c90-cray)
959 vendor=cray
960 os=${os:-unicos}
961 ;;
962 fx80-unknown)
963 vendor=alliant
964 ;;
965 romp-unknown)
966 vendor=ibm
967 ;;
968 mmix-unknown)
969 vendor=knuth
970 ;;
971 microblaze-unknown | microblazeel-unknown)
972 vendor=xilinx
973 ;;
974 rs6000-unknown)
975 vendor=ibm
976 ;;
977 vax-unknown)
978 vendor=dec
979 ;;
980 pdp11-unknown)
981 vendor=dec
982 ;;
983 we32k-unknown)
984 vendor=att
985 ;;
986 cydra-unknown)
987 vendor=cydrome
988 ;;
989 i370-ibm*)
990 vendor=ibm
991 ;;
992 orion-unknown)
993 vendor=highlevel
994 ;;
995 xps-unknown | xps100-unknown)
996 cpu=xps100
997 vendor=honeywell
998 ;;
999
1000 # Here we normalize CPU types with a missing or matching vendor
1001 dpx20-unknown | dpx20-bull)
1002 cpu=rs6000
1003 vendor=bull
1004 os=${os:-bosx}
1005 ;;
1006
1007 # Here we normalize CPU types irrespective of the vendor
4961008 amd64-*)
497 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
498 ;;
499 amdahl)
500 basic_machine=580-amdahl
501 os=-sysv
502 ;;
503 amiga | amiga-*)
504 basic_machine=m68k-unknown
505 ;;
506 amigaos | amigados)
507 basic_machine=m68k-unknown
508 os=-amigaos
509 ;;
510 amigaunix | amix)
511 basic_machine=m68k-unknown
512 os=-sysv4
513 ;;
514 apollo68)
515 basic_machine=m68k-apollo
516 os=-sysv
517 ;;
518 apollo68bsd)
519 basic_machine=m68k-apollo
520 os=-bsd
521 ;;
522 aros)
523 basic_machine=i386-pc
524 os=-aros
525 ;;
526 asmjs)
527 basic_machine=asmjs-unknown
528 ;;
529 aux)
530 basic_machine=m68k-apple
531 os=-aux
532 ;;
533 balance)
534 basic_machine=ns32k-sequent
535 os=-dynix
536 ;;
537 blackfin)
538 basic_machine=bfin-unknown
539 os=-linux
1009 cpu=x86_64
5401010 ;;
5411011 blackfin-*)
542 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
543 os=-linux
1012 cpu=bfin
1013 os=linux
1014 ;;
1015 c54x-*)
1016 cpu=tic54x
1017 ;;
1018 c55x-*)
1019 cpu=tic55x
1020 ;;
1021 c6x-*)
1022 cpu=tic6x
1023 ;;
1024 e500v[12]-*)
1025 cpu=powerpc
1026 os=$os"spe"
1027 ;;
1028 mips3*-*)
1029 cpu=mips64
1030 ;;
1031 ms1-*)
1032 cpu=mt
1033 ;;
1034 m68knommu-*)
1035 cpu=m68k
1036 os=linux
1037 ;;
1038 m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)
1039 cpu=s12z
1040 ;;
1041 openrisc-*)
1042 cpu=or32
1043 ;;
1044 parisc-*)
1045 cpu=hppa
1046 os=linux
1047 ;;
1048 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1049 cpu=i586
1050 ;;
1051 pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)
1052 cpu=i686
1053 ;;
1054 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1055 cpu=i686
1056 ;;
1057 pentium4-*)
1058 cpu=i786
1059 ;;
1060 pc98-*)
1061 cpu=i386
1062 ;;
1063 ppc-* | ppcbe-*)
1064 cpu=powerpc
1065 ;;
1066 ppcle-* | powerpclittle-*)
1067 cpu=powerpcle
1068 ;;
1069 ppc64-*)
1070 cpu=powerpc64
1071 ;;
1072 ppc64le-* | powerpc64little-*)
1073 cpu=powerpc64le
1074 ;;
1075 sb1-*)
1076 cpu=mipsisa64sb1
1077 ;;
1078 sb1el-*)
1079 cpu=mipsisa64sb1el
1080 ;;
1081 sh5e[lb]-*)
1082 cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
1083 ;;
1084 spur-*)
1085 cpu=spur
1086 ;;
1087 strongarm-* | thumb-*)
1088 cpu=arm
1089 ;;
1090 tx39-*)
1091 cpu=mipstx39
1092 ;;
1093 tx39el-*)
1094 cpu=mipstx39el
1095 ;;
1096 x64-*)
1097 cpu=x86_64
1098 ;;
1099 xscale-* | xscalee[bl]-*)
1100 cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
1101 ;;
1102
1103 # Recognize the cannonical CPU Types that limit and/or modify the
1104 # company names they are paired with.
1105 cr16-*)
1106 os=${os:-elf}
1107 ;;
1108 crisv32-* | etraxfs*-*)
1109 cpu=crisv32
1110 vendor=axis
1111 ;;
1112 cris-* | etrax*-*)
1113 cpu=cris
1114 vendor=axis
1115 ;;
1116 crx-*)
1117 os=${os:-elf}
1118 ;;
1119 neo-tandem)
1120 cpu=neo
1121 vendor=tandem
1122 ;;
1123 nse-tandem)
1124 cpu=nse
1125 vendor=tandem
1126 ;;
1127 nsr-tandem)
1128 cpu=nsr
1129 vendor=tandem
1130 ;;
1131 nsv-tandem)
1132 cpu=nsv
1133 vendor=tandem
1134 ;;
1135 nsx-tandem)
1136 cpu=nsx
1137 vendor=tandem
1138 ;;
1139 s390-*)
1140 cpu=s390
1141 vendor=ibm
1142 ;;
1143 s390x-*)
1144 cpu=s390x
1145 vendor=ibm
1146 ;;
1147 tile*-*)
1148 os=${os:-linux-gnu}
1149 ;;
1150
1151 *)
1152 # Recognize the cannonical CPU types that are allowed with any
1153 # company name.
1154 case $cpu in
1155 1750a | 580 \
1156 | a29k \
1157 | aarch64 | aarch64_be \
1158 | abacus \
1159 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
1160 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
1161 | alphapca5[67] | alpha64pca5[67] \
1162 | am33_2.0 \
1163 | arc | arceb \
1164 | arm | arm[lb]e | arme[lb] | armv* \
1165 | avr | avr32 \
1166 | asmjs \
1167 | ba \
1168 | be32 | be64 \
1169 | bfin | bs2000 \
1170 | c[123]* | c30 | [cjt]90 | c4x \
1171 | c8051 | clipper | craynv | csky | cydra \
1172 | d10v | d30v | dlx | dsp16xx \
1173 | e2k | elxsi | epiphany \
1174 | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \
1175 | h8300 | h8500 \
1176 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
1177 | hexagon \
1178 | i370 | i*86 | i860 | i960 | ia16 | ia64 \
1179 | ip2k | iq2000 \
1180 | k1om \
1181 | le32 | le64 \
1182 | lm32 \
1183 | m32c | m32r | m32rle \
1184 | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k | v70 | w65 \
1185 | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip \
1186 | m88110 | m88k | maxq | mb | mcore | mep | metag \
1187 | microblaze | microblazeel \
1188 | mips | mipsbe | mipseb | mipsel | mipsle \
1189 | mips16 \
1190 | mips64 | mips64el \
1191 | mips64octeon | mips64octeonel \
1192 | mips64orion | mips64orionel \
1193 | mips64r5900 | mips64r5900el \
1194 | mips64vr | mips64vrel \
1195 | mips64vr4100 | mips64vr4100el \
1196 | mips64vr4300 | mips64vr4300el \
1197 | mips64vr5000 | mips64vr5000el \
1198 | mips64vr5900 | mips64vr5900el \
1199 | mipsisa32 | mipsisa32el \
1200 | mipsisa32r2 | mipsisa32r2el \
1201 | mipsisa32r6 | mipsisa32r6el \
1202 | mipsisa64 | mipsisa64el \
1203 | mipsisa64r2 | mipsisa64r2el \
1204 | mipsisa64r6 | mipsisa64r6el \
1205 | mipsisa64sb1 | mipsisa64sb1el \
1206 | mipsisa64sr71k | mipsisa64sr71kel \
1207 | mipsr5900 | mipsr5900el \
1208 | mipstx39 | mipstx39el \
1209 | mmix \
1210 | mn10200 | mn10300 \
1211 | moxie \
1212 | mt \
1213 | msp430 \
1214 | nds32 | nds32le | nds32be \
1215 | nfp \
1216 | nios | nios2 | nios2eb | nios2el \
1217 | none | np1 | ns16k | ns32k \
1218 | open8 \
1219 | or1k* \
1220 | or32 \
1221 | orion \
1222 | pdp10 | pdp11 | pj | pjl | pn | power \
1223 | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \
1224 | pru \
1225 | pyramid \
1226 | riscv | riscv32 | riscv64 \
1227 | rl78 | romp | rs6000 | rx \
1228 | score \
1229 | sh | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \
1230 | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \
1231 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \
1232 | sparclite \
1233 | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \
1234 | spu \
1235 | tahoe \
1236 | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
1237 | tron \
1238 | ubicom32 \
1239 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
1240 | vax \
1241 | visium \
1242 | wasm32 \
1243 | we32k \
1244 | x86 | x86_64 | xc16x | xgate | xps100 \
1245 | xstormy16 | xtensa* \
1246 | ymp \
1247 | z8k | z80)
1248 ;;
1249
1250 *)
1251 echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
1252 exit 1
1253 ;;
1254 esac
1255 ;;
1256 esac
1257
1258 # Here we canonicalize certain aliases for manufacturers.
1259 case $vendor in
1260 digital*)
1261 vendor=dec
1262 ;;
1263 commodore*)
1264 vendor=cbm
1265 ;;
1266 *)
1267 ;;
1268 esac
1269
1270 # Decode manufacturer-specific aliases for certain operating systems.
1271
1272 if [ x$os != x ]
1273 then
1274 case $os in
1275 # First match some system type aliases that might get confused
1276 # with valid system types.
1277 # solaris* is a basic system type, with this one exception.
1278 auroraux)
1279 os=auroraux
5441280 ;;
5451281 bluegene*)
546 basic_machine=powerpc-ibm
547 os=-cnk
548 ;;
549 c54x-*)
550 basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
551 ;;
552 c55x-*)
553 basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
554 ;;
555 c6x-*)
556 basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
557 ;;
558 c90)
559 basic_machine=c90-cray
560 os=-unicos
561 ;;
562 cegcc)
563 basic_machine=arm-unknown
564 os=-cegcc
565 ;;
566 convex-c1)
567 basic_machine=c1-convex
568 os=-bsd
569 ;;
570 convex-c2)
571 basic_machine=c2-convex
572 os=-bsd
573 ;;
574 convex-c32)
575 basic_machine=c32-convex
576 os=-bsd
577 ;;
578 convex-c34)
579 basic_machine=c34-convex
580 os=-bsd
581 ;;
582 convex-c38)
583 basic_machine=c38-convex
584 os=-bsd
585 ;;
586 cray | j90)
587 basic_machine=j90-cray
588 os=-unicos
589 ;;
590 craynv)
591 basic_machine=craynv-cray
592 os=-unicosmp
593 ;;
594 cr16 | cr16-*)
595 basic_machine=cr16-unknown
596 os=-elf
597 ;;
598 crds | unos)
599 basic_machine=m68k-crds
600 ;;
601 crisv32 | crisv32-* | etraxfs*)
602 basic_machine=crisv32-axis
603 ;;
604 cris | cris-* | etrax*)
605 basic_machine=cris-axis
606 ;;
607 crx)
608 basic_machine=crx-unknown
609 os=-elf
610 ;;
611 da30 | da30-*)
612 basic_machine=m68k-da30
613 ;;
614 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
615 basic_machine=mips-dec
616 ;;
617 decsystem10* | dec10*)
618 basic_machine=pdp10-dec
619 os=-tops10
620 ;;
621 decsystem20* | dec20*)
622 basic_machine=pdp10-dec
623 os=-tops20
624 ;;
625 delta | 3300 | motorola-3300 | motorola-delta \
626 | 3300-motorola | delta-motorola)
627 basic_machine=m68k-motorola
628 ;;
629 delta88)
630 basic_machine=m88k-motorola
631 os=-sysv3
632 ;;
633 dicos)
634 basic_machine=i686-pc
635 os=-dicos
636 ;;
637 djgpp)
638 basic_machine=i586-pc
639 os=-msdosdjgpp
640 ;;
641 dpx20 | dpx20-*)
642 basic_machine=rs6000-bull
643 os=-bosx
644 ;;
645 dpx2* | dpx2*-bull)
646 basic_machine=m68k-bull
647 os=-sysv3
648 ;;
649 e500v[12])
650 basic_machine=powerpc-unknown
651 os=$os"spe"
652 ;;
653 e500v[12]-*)
654 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
655 os=$os"spe"
656 ;;
657 ebmon29k)
658 basic_machine=a29k-amd
659 os=-ebmon
660 ;;
661 elxsi)
662 basic_machine=elxsi-elxsi
663 os=-bsd
664 ;;
665 encore | umax | mmax)
666 basic_machine=ns32k-encore
667 ;;
668 es1800 | OSE68k | ose68k | ose | OSE)
669 basic_machine=m68k-ericsson
670 os=-ose
671 ;;
672 fx2800)
673 basic_machine=i860-alliant
674 ;;
675 genix)
676 basic_machine=ns32k-ns
677 ;;
678 gmicro)
679 basic_machine=tron-gmicro
680 os=-sysv
681 ;;
682 go32)
683 basic_machine=i386-pc
684 os=-go32
685 ;;
686 h3050r* | hiux*)
687 basic_machine=hppa1.1-hitachi
688 os=-hiuxwe2
689 ;;
690 h8300hms)
691 basic_machine=h8300-hitachi
692 os=-hms
693 ;;
694 h8300xray)
695 basic_machine=h8300-hitachi
696 os=-xray
697 ;;
698 h8500hms)
699 basic_machine=h8500-hitachi
700 os=-hms
701 ;;
702 harris)
703 basic_machine=m88k-harris
704 os=-sysv3
705 ;;
706 hp300-*)
707 basic_machine=m68k-hp
708 ;;
709 hp300bsd)
710 basic_machine=m68k-hp
711 os=-bsd
712 ;;
713 hp300hpux)
714 basic_machine=m68k-hp
715 os=-hpux
716 ;;
717 hp3k9[0-9][0-9] | hp9[0-9][0-9])
718 basic_machine=hppa1.0-hp
719 ;;
720 hp9k2[0-9][0-9] | hp9k31[0-9])
721 basic_machine=m68000-hp
722 ;;
723 hp9k3[2-9][0-9])
724 basic_machine=m68k-hp
725 ;;
726 hp9k6[0-9][0-9] | hp6[0-9][0-9])
727 basic_machine=hppa1.0-hp
728 ;;
729 hp9k7[0-79][0-9] | hp7[0-79][0-9])
730 basic_machine=hppa1.1-hp
731 ;;
732 hp9k78[0-9] | hp78[0-9])
733 # FIXME: really hppa2.0-hp
734 basic_machine=hppa1.1-hp
735 ;;
736 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
737 # FIXME: really hppa2.0-hp
738 basic_machine=hppa1.1-hp
739 ;;
740 hp9k8[0-9][13679] | hp8[0-9][13679])
741 basic_machine=hppa1.1-hp
742 ;;
743 hp9k8[0-9][0-9] | hp8[0-9][0-9])
744 basic_machine=hppa1.0-hp
745 ;;
746 hppa-next)
747 os=-nextstep3
748 ;;
749 hppaosf)
750 basic_machine=hppa1.1-hp
751 os=-osf
752 ;;
753 hppro)
754 basic_machine=hppa1.1-hp
755 os=-proelf
756 ;;
757 i370-ibm* | ibm*)
758 basic_machine=i370-ibm
759 ;;
760 i*86v32)
761 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
762 os=-sysv32
763 ;;
764 i*86v4*)
765 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
766 os=-sysv4
767 ;;
768 i*86v)
769 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
770 os=-sysv
771 ;;
772 i*86sol2)
773 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
774 os=-solaris2
775 ;;
776 i386mach)
777 basic_machine=i386-mach
778 os=-mach
779 ;;
780 i386-vsta | vsta)
781 basic_machine=i386-unknown
782 os=-vsta
783 ;;
784 iris | iris4d)
785 basic_machine=mips-sgi
786 case $os in
787 -irix*)
1282 os=cnk
1283 ;;
1284 solaris1 | solaris1.*)
1285 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1286 ;;
1287 solaris)
1288 os=solaris2
1289 ;;
1290 unixware*)
1291 os=sysv4.2uw
1292 ;;
1293 gnu/linux*)
1294 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1295 ;;
1296 # es1800 is here to avoid being matched by es* (a different OS)
1297 es1800*)
1298 os=ose
1299 ;;
1300 # Some version numbers need modification
1301 chorusos*)
1302 os=chorusos
1303 ;;
1304 isc)
1305 os=isc2.2
1306 ;;
1307 sco6)
1308 os=sco5v6
1309 ;;
1310 sco5)
1311 os=sco3.2v5
1312 ;;
1313 sco4)
1314 os=sco3.2v4
1315 ;;
1316 sco3.2.[4-9]*)
1317 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
1318 ;;
1319 sco3.2v[4-9]* | sco5v6*)
1320 # Don't forget version if it is 3.2v4 or newer.
1321 ;;
1322 scout)
1323 # Don't match below
1324 ;;
1325 sco*)
1326 os=sco3.2v2
1327 ;;
1328 psos*)
1329 os=psos
1330 ;;
1331 # Now accept the basic system types.
1332 # The portable systems comes first.
1333 # Each alternative MUST end in a * to match a version number.
1334 # sysv* is not here because it comes later, after sysvr4.
1335 gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \
1336 | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\
1337 | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
1338 | sym* | kopensolaris* | plan9* \
1339 | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
1340 | aos* | aros* | cloudabi* | sortix* \
1341 | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \
1342 | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \
1343 | knetbsd* | mirbsd* | netbsd* \
1344 | bitrig* | openbsd* | solidbsd* | libertybsd* \
1345 | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \
1346 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
1347 | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \
1348 | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \
1349 | chorusrdb* | cegcc* | glidix* \
1350 | cygwin* | msys* | pe* | moss* | proelf* | rtems* \
1351 | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \
1352 | linux-newlib* | linux-musl* | linux-uclibc* \
1353 | uxpv* | beos* | mpeix* | udk* | moxiebox* \
1354 | interix* | uwin* | mks* | rhapsody* | darwin* \
1355 | openstep* | oskit* | conix* | pw32* | nonstopux* \
1356 | storm-chaos* | tops10* | tenex* | tops20* | its* \
1357 | os2* | vos* | palmos* | uclinux* | nucleus* \
1358 | morphos* | superux* | rtmk* | windiss* \
1359 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
1360 | skyos* | haiku* | rdos* | toppers* | drops* | es* \
1361 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
1362 | midnightbsd*)
1363 # Remember, each alternative MUST END IN *, to match a version number.
1364 ;;
1365 qnx*)
1366 case $cpu in
1367 x86 | i*86)
7881368 ;;
7891369 *)
790 os=-irix4
1370 os=nto-$os
7911371 ;;
7921372 esac
7931373 ;;
794 isi68 | isi)
795 basic_machine=m68k-isi
796 os=-sysv
797 ;;
798 leon-*|leon[3-9]-*)
799 basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
800 ;;
801 m68knommu)
802 basic_machine=m68k-unknown
803 os=-linux
804 ;;
805 m68knommu-*)
806 basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
807 os=-linux
808 ;;
809 m88k-omron*)
810 basic_machine=m88k-omron
811 ;;
812 magnum | m3230)
813 basic_machine=mips-mips
814 os=-sysv
815 ;;
816 merlin)
817 basic_machine=ns32k-utek
818 os=-sysv
819 ;;
820 microblaze*)
821 basic_machine=microblaze-xilinx
822 ;;
823 mingw64)
824 basic_machine=x86_64-pc
825 os=-mingw64
826 ;;
827 mingw32)
828 basic_machine=i686-pc
829 os=-mingw32
830 ;;
831 mingw32ce)
832 basic_machine=arm-unknown
833 os=-mingw32ce
834 ;;
835 miniframe)
836 basic_machine=m68000-convergent
837 ;;
838 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
839 basic_machine=m68k-atari
840 os=-mint
841 ;;
842 mips3*-*)
843 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
844 ;;
845 mips3*)
846 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
847 ;;
848 monitor)
849 basic_machine=m68k-rom68k
850 os=-coff
851 ;;
852 morphos)
853 basic_machine=powerpc-unknown
854 os=-morphos
855 ;;
856 moxiebox)
857 basic_machine=moxie-unknown
858 os=-moxiebox
859 ;;
860 msdos)
861 basic_machine=i386-pc
862 os=-msdos
863 ;;
864 ms1-*)
865 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
866 ;;
867 msys)
868 basic_machine=i686-pc
869 os=-msys
870 ;;
871 mvs)
872 basic_machine=i370-ibm
873 os=-mvs
874 ;;
875 nacl)
876 basic_machine=le32-unknown
877 os=-nacl
878 ;;
879 ncr3000)
880 basic_machine=i486-ncr
881 os=-sysv4
882 ;;
883 netbsd386)
884 basic_machine=i386-unknown
885 os=-netbsd
886 ;;
887 netwinder)
888 basic_machine=armv4l-rebel
889 os=-linux
890 ;;
891 news | news700 | news800 | news900)
892 basic_machine=m68k-sony
893 os=-newsos
894 ;;
895 news1000)
896 basic_machine=m68030-sony
897 os=-newsos
898 ;;
899 news-3600 | risc-news)
900 basic_machine=mips-sony
901 os=-newsos
902 ;;
903 necv70)
904 basic_machine=v70-nec
905 os=-sysv
906 ;;
907 next | m*-next )
908 basic_machine=m68k-next
909 case $os in
910 -nextstep* )
911 ;;
912 -ns2*)
913 os=-nextstep2
1374 hiux*)
1375 os=hiuxwe2
1376 ;;
1377 nto-qnx*)
1378 ;;
1379 nto*)
1380 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1381 ;;
1382 sim | xray | os68k* | v88r* \
1383 | windows* | osx | abug | netware* | os9* \
1384 | macos* | mpw* | magic* | mmixware* | mon960* | lnews*)
1385 ;;
1386 linux-dietlibc)
1387 os=linux-dietlibc
1388 ;;
1389 linux*)
1390 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1391 ;;
1392 lynx*178)
1393 os=lynxos178
1394 ;;
1395 lynx*5)
1396 os=lynxos5
1397 ;;
1398 lynx*)
1399 os=lynxos
1400 ;;
1401 mac*)
1402 os=`echo "$os" | sed -e 's|mac|macos|'`
1403 ;;
1404 opened*)
1405 os=openedition
1406 ;;
1407 os400*)
1408 os=os400
1409 ;;
1410 sunos5*)
1411 os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
1412 ;;
1413 sunos6*)
1414 os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
1415 ;;
1416 wince*)
1417 os=wince
1418 ;;
1419 utek*)
1420 os=bsd
1421 ;;
1422 dynix*)
1423 os=bsd
1424 ;;
1425 acis*)
1426 os=aos
1427 ;;
1428 atheos*)
1429 os=atheos
1430 ;;
1431 syllable*)
1432 os=syllable
1433 ;;
1434 386bsd)
1435 os=bsd
1436 ;;
1437 ctix* | uts*)
1438 os=sysv
1439 ;;
1440 nova*)
1441 os=rtmk-nova
1442 ;;
1443 ns2)
1444 os=nextstep2
1445 ;;
1446 nsk*)
1447 os=nsk
1448 ;;
1449 # Preserve the version number of sinix5.
1450 sinix5.*)
1451 os=`echo $os | sed -e 's|sinix|sysv|'`
1452 ;;
1453 sinix*)
1454 os=sysv4
1455 ;;
1456 tpf*)
1457 os=tpf
1458 ;;
1459 triton*)
1460 os=sysv3
1461 ;;
1462 oss*)
1463 os=sysv3
1464 ;;
1465 svr4*)
1466 os=sysv4
1467 ;;
1468 svr3)
1469 os=sysv3
1470 ;;
1471 sysvr4)
1472 os=sysv4
1473 ;;
1474 # This must come after sysvr4.
1475 sysv*)
1476 ;;
1477 ose*)
1478 os=ose
1479 ;;
1480 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
1481 os=mint
1482 ;;
1483 zvmoe)
1484 os=zvmoe
1485 ;;
1486 dicos*)
1487 os=dicos
1488 ;;
1489 pikeos*)
1490 # Until real need of OS specific support for
1491 # particular features comes up, bare metal
1492 # configurations are quite functional.
1493 case $cpu in
1494 arm*)
1495 os=eabi
9141496 ;;
9151497 *)
916 os=-nextstep3
1498 os=elf
9171499 ;;
9181500 esac
9191501 ;;
920 nh3000)
921 basic_machine=m68k-harris
922 os=-cxux
923 ;;
924 nh[45]000)
925 basic_machine=m88k-harris
926 os=-cxux
927 ;;
928 nindy960)
929 basic_machine=i960-intel
930 os=-nindy
931 ;;
932 mon960)
933 basic_machine=i960-intel
934 os=-mon960
935 ;;
936 nonstopux)
937 basic_machine=mips-compaq
938 os=-nonstopux
939 ;;
940 np1)
941 basic_machine=np1-gould
942 ;;
943 neo-tandem)
944 basic_machine=neo-tandem
945 ;;
946 nse-tandem)
947 basic_machine=nse-tandem
948 ;;
949 nsr-tandem)
950 basic_machine=nsr-tandem
951 ;;
952 nsx-tandem)
953 basic_machine=nsx-tandem
954 ;;
955 op50n-* | op60c-*)
956 basic_machine=hppa1.1-oki
957 os=-proelf
958 ;;
959 openrisc | openrisc-*)
960 basic_machine=or32-unknown
961 ;;
962 os400)
963 basic_machine=powerpc-ibm
964 os=-os400
965 ;;
966 OSE68000 | ose68000)
967 basic_machine=m68000-ericsson
968 os=-ose
969 ;;
970 os68k)
971 basic_machine=m68k-none
972 os=-os68k
973 ;;
974 pa-hitachi)
975 basic_machine=hppa1.1-hitachi
976 os=-hiuxwe2
977 ;;
978 paragon)
979 basic_machine=i860-intel
980 os=-osf
981 ;;
982 parisc)
983 basic_machine=hppa-unknown
984 os=-linux
985 ;;
986 parisc-*)
987 basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
988 os=-linux
989 ;;
990 pbd)
991 basic_machine=sparc-tti
992 ;;
993 pbb)
994 basic_machine=m68k-tti
995 ;;
996 pc532 | pc532-*)
997 basic_machine=ns32k-pc532
998 ;;
999 pc98)
1000 basic_machine=i386-pc
1001 ;;
1002 pc98-*)
1003 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
1004 ;;
1005 pentium | p5 | k5 | k6 | nexgen | viac3)
1006 basic_machine=i586-pc
1007 ;;
1008 pentiumpro | p6 | 6x86 | athlon | athlon_*)
1009 basic_machine=i686-pc
1010 ;;
1011 pentiumii | pentium2 | pentiumiii | pentium3)
1012 basic_machine=i686-pc
1013 ;;
1014 pentium4)
1015 basic_machine=i786-pc
1016 ;;
1017 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1018 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
1019 ;;
1020 pentiumpro-* | p6-* | 6x86-* | athlon-*)
1021 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1022 ;;
1023 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1024 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1025 ;;
1026 pentium4-*)
1027 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
1028 ;;
1029 pn)
1030 basic_machine=pn-gould
1031 ;;
1032 power) basic_machine=power-ibm
1033 ;;
1034 ppc | ppcbe) basic_machine=powerpc-unknown
1035 ;;
1036 ppc-* | ppcbe-*)
1037 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
1038 ;;
1039 ppcle | powerpclittle)
1040 basic_machine=powerpcle-unknown
1041 ;;
1042 ppcle-* | powerpclittle-*)
1043 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
1044 ;;
1045 ppc64) basic_machine=powerpc64-unknown
1046 ;;
1047 ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
1048 ;;
1049 ppc64le | powerpc64little)
1050 basic_machine=powerpc64le-unknown
1051 ;;
1052 ppc64le-* | powerpc64little-*)
1053 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
1054 ;;
1055 ps2)
1056 basic_machine=i386-ibm
1057 ;;
1058 pw32)
1059 basic_machine=i586-unknown
1060 os=-pw32
1061 ;;
1062 rdos | rdos64)
1063 basic_machine=x86_64-pc
1064 os=-rdos
1065 ;;
1066 rdos32)
1067 basic_machine=i386-pc
1068 os=-rdos
1069 ;;
1070 rom68k)
1071 basic_machine=m68k-rom68k
1072 os=-coff
1073 ;;
1074 rm[46]00)
1075 basic_machine=mips-siemens
1076 ;;
1077 rtpc | rtpc-*)
1078 basic_machine=romp-ibm
1079 ;;
1080 s390 | s390-*)
1081 basic_machine=s390-ibm
1082 ;;
1083 s390x | s390x-*)
1084 basic_machine=s390x-ibm
1085 ;;
1086 sa29200)
1087 basic_machine=a29k-amd
1088 os=-udi
1089 ;;
1090 sb1)
1091 basic_machine=mipsisa64sb1-unknown
1092 ;;
1093 sb1el)
1094 basic_machine=mipsisa64sb1el-unknown
1095 ;;
1096 sde)
1097 basic_machine=mipsisa32-sde
1098 os=-elf
1099 ;;
1100 sei)
1101 basic_machine=mips-sei
1102 os=-seiux
1103 ;;
1104 sequent)
1105 basic_machine=i386-sequent
1106 ;;
1107 sh)
1108 basic_machine=sh-hitachi
1109 os=-hms
1110 ;;
1111 sh5el)
1112 basic_machine=sh5le-unknown
1113 ;;
1114 sh64)
1115 basic_machine=sh64-unknown
1116 ;;
1117 sparclite-wrs | simso-wrs)
1118 basic_machine=sparclite-wrs
1119 os=-vxworks
1120 ;;
1121 sps7)
1122 basic_machine=m68k-bull
1123 os=-sysv2
1124 ;;
1125 spur)
1126 basic_machine=spur-unknown
1127 ;;
1128 st2000)
1129 basic_machine=m68k-tandem
1130 ;;
1131 stratus)
1132 basic_machine=i860-stratus
1133 os=-sysv4
1134 ;;
1135 strongarm-* | thumb-*)
1136 basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
1137 ;;
1138 sun2)
1139 basic_machine=m68000-sun
1140 ;;
1141 sun2os3)
1142 basic_machine=m68000-sun
1143 os=-sunos3
1144 ;;
1145 sun2os4)
1146 basic_machine=m68000-sun
1147 os=-sunos4
1148 ;;
1149 sun3os3)
1150 basic_machine=m68k-sun
1151 os=-sunos3
1152 ;;
1153 sun3os4)
1154 basic_machine=m68k-sun
1155 os=-sunos4
1156 ;;
1157 sun4os3)
1158 basic_machine=sparc-sun
1159 os=-sunos3
1160 ;;
1161 sun4os4)
1162 basic_machine=sparc-sun
1163 os=-sunos4
1164 ;;
1165 sun4sol2)
1166 basic_machine=sparc-sun
1167 os=-solaris2
1168 ;;
1169 sun3 | sun3-*)
1170 basic_machine=m68k-sun
1171 ;;
1172 sun4)
1173 basic_machine=sparc-sun
1174 ;;
1175 sun386 | sun386i | roadrunner)
1176 basic_machine=i386-sun
1177 ;;
1178 sv1)
1179 basic_machine=sv1-cray
1180 os=-unicos
1181 ;;
1182 symmetry)
1183 basic_machine=i386-sequent
1184 os=-dynix
1185 ;;
1186 t3e)
1187 basic_machine=alphaev5-cray
1188 os=-unicos
1189 ;;
1190 t90)
1191 basic_machine=t90-cray
1192 os=-unicos
1193 ;;
1194 tile*)
1195 basic_machine=$basic_machine-unknown
1196 os=-linux-gnu
1197 ;;
1198 tx39)
1199 basic_machine=mipstx39-unknown
1200 ;;
1201 tx39el)
1202 basic_machine=mipstx39el-unknown
1203 ;;
1204 toad1)
1205 basic_machine=pdp10-xkl
1206 os=-tops20
1207 ;;
1208 tower | tower-32)
1209 basic_machine=m68k-ncr
1210 ;;
1211 tpf)
1212 basic_machine=s390x-ibm
1213 os=-tpf
1214 ;;
1215 udi29k)
1216 basic_machine=a29k-amd
1217 os=-udi
1218 ;;
1219 ultra3)
1220 basic_machine=a29k-nyu
1221 os=-sym1
1222 ;;
1223 v810 | necv810)
1224 basic_machine=v810-nec
1225 os=-none
1226 ;;
1227 vaxv)
1228 basic_machine=vax-dec
1229 os=-sysv
1230 ;;
1231 vms)
1232 basic_machine=vax-dec
1233 os=-vms
1234 ;;
1235 vpp*|vx|vx-*)
1236 basic_machine=f301-fujitsu
1237 ;;
1238 vxworks960)
1239 basic_machine=i960-wrs
1240 os=-vxworks
1241 ;;
1242 vxworks68)
1243 basic_machine=m68k-wrs
1244 os=-vxworks
1245 ;;
1246 vxworks29k)
1247 basic_machine=a29k-wrs
1248 os=-vxworks
1249 ;;
1250 wasm32)
1251 basic_machine=wasm32-unknown
1252 ;;
1253 w65*)
1254 basic_machine=w65-wdc
1255 os=-none
1256 ;;
1257 w89k-*)
1258 basic_machine=hppa1.1-winbond
1259 os=-proelf
1260 ;;
1261 xbox)
1262 basic_machine=i686-pc
1263 os=-mingw32
1264 ;;
1265 xps | xps100)
1266 basic_machine=xps100-honeywell
1267 ;;
1268 xscale-* | xscalee[bl]-*)
1269 basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
1270 ;;
1271 ymp)
1272 basic_machine=ymp-cray
1273 os=-unicos
1274 ;;
1275 z8k-*-coff)
1276 basic_machine=z8k-unknown
1277 os=-sim
1278 ;;
1279 z80-*-coff)
1280 basic_machine=z80-unknown
1281 os=-sim
1502 nacl*)
1503 ;;
1504 ios)
12821505 ;;
12831506 none)
1284 basic_machine=none-none
1285 os=-none
1286 ;;
1287
1288 # Here we handle the default manufacturer of certain CPU types. It is in
1289 # some cases the only manufacturer, in others, it is the most popular.
1290 w89k)
1291 basic_machine=hppa1.1-winbond
1292 ;;
1293 op50n)
1294 basic_machine=hppa1.1-oki
1295 ;;
1296 op60c)
1297 basic_machine=hppa1.1-oki
1298 ;;
1299 romp)
1300 basic_machine=romp-ibm
1301 ;;
1302 mmix)
1303 basic_machine=mmix-knuth
1304 ;;
1305 rs6000)
1306 basic_machine=rs6000-ibm
1307 ;;
1308 vax)
1309 basic_machine=vax-dec
1310 ;;
1311 pdp10)
1312 # there are many clones, so DEC is not a safe bet
1313 basic_machine=pdp10-unknown
1314 ;;
1315 pdp11)
1316 basic_machine=pdp11-dec
1317 ;;
1318 we32k)
1319 basic_machine=we32k-att
1320 ;;
1321 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
1322 basic_machine=sh-unknown
1323 ;;
1324 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
1325 basic_machine=sparc-sun
1326 ;;
1327 cydra)
1328 basic_machine=cydra-cydrome
1329 ;;
1330 orion)
1331 basic_machine=orion-highlevel
1332 ;;
1333 orion105)
1334 basic_machine=clipper-highlevel
1335 ;;
1336 mac | mpw | mac-mpw)
1337 basic_machine=m68k-apple
1338 ;;
1339 pmac | pmac-mpw)
1340 basic_machine=powerpc-apple
1341 ;;
1342 *-unknown)
1343 # Make sure to match an already-canonicalized machine name.
1507 ;;
1508 *-eabi)
13441509 ;;
13451510 *)
1346 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1347 exit 1
1348 ;;
1349 esac
1350
1351 # Here we canonicalize certain aliases for manufacturers.
1352 case $basic_machine in
1353 *-digital*)
1354 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1355 ;;
1356 *-commodore*)
1357 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1358 ;;
1359 *)
1360 ;;
1361 esac
1362
1363 # Decode manufacturer-specific aliases for certain operating systems.
1364
1365 if [ x"$os" != x"" ]
1366 then
1367 case $os in
1368 # First match some system type aliases
1369 # that might get confused with valid system types.
1370 # -solaris* is a basic system type, with this one exception.
1371 -auroraux)
1372 os=-auroraux
1373 ;;
1374 -solaris1 | -solaris1.*)
1375 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1376 ;;
1377 -solaris)
1378 os=-solaris2
1379 ;;
1380 -svr4*)
1381 os=-sysv4
1382 ;;
1383 -unixware*)
1384 os=-sysv4.2uw
1385 ;;
1386 -gnu/linux*)
1387 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1388 ;;
1389 # First accept the basic system types.
1390 # The portable systems comes first.
1391 # Each alternative MUST END IN A *, to match a version number.
1392 # -sysv* is not here because it comes later, after sysvr4.
1393 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1394 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
1395 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1396 | -sym* | -kopensolaris* | -plan9* \
1397 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1398 | -aos* | -aros* | -cloudabi* | -sortix* \
1399 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1400 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1401 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1402 | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \
1403 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1404 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1405 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1406 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1407 | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \
1408 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1409 | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
1410 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
1411 | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
1412 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1413 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1414 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1415 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1416 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1417 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1418 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
1419 | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)
1420 # Remember, each alternative MUST END IN *, to match a version number.
1421 ;;
1422 -qnx*)
1423 case $basic_machine in
1424 x86-* | i*86-*)
1425 ;;
1426 *)
1427 os=-nto$os
1428 ;;
1429 esac
1430 ;;
1431 -nto-qnx*)
1432 ;;
1433 -nto*)
1434 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1435 ;;
1436 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1437 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
1438 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1439 ;;
1440 -mac*)
1441 os=`echo $os | sed -e 's|mac|macos|'`
1442 ;;
1443 -linux-dietlibc)
1444 os=-linux-dietlibc
1445 ;;
1446 -linux*)
1447 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1448 ;;
1449 -sunos5*)
1450 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1451 ;;
1452 -sunos6*)
1453 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1454 ;;
1455 -opened*)
1456 os=-openedition
1457 ;;
1458 -os400*)
1459 os=-os400
1460 ;;
1461 -wince*)
1462 os=-wince
1463 ;;
1464 -osfrose*)
1465 os=-osfrose
1466 ;;
1467 -osf*)
1468 os=-osf
1469 ;;
1470 -utek*)
1471 os=-bsd
1472 ;;
1473 -dynix*)
1474 os=-bsd
1475 ;;
1476 -acis*)
1477 os=-aos
1478 ;;
1479 -atheos*)
1480 os=-atheos
1481 ;;
1482 -syllable*)
1483 os=-syllable
1484 ;;
1485 -386bsd)
1486 os=-bsd
1487 ;;
1488 -ctix* | -uts*)
1489 os=-sysv
1490 ;;
1491 -nova*)
1492 os=-rtmk-nova
1493 ;;
1494 -ns2 )
1495 os=-nextstep2
1496 ;;
1497 -nsk*)
1498 os=-nsk
1499 ;;
1500 # Preserve the version number of sinix5.
1501 -sinix5.*)
1502 os=`echo $os | sed -e 's|sinix|sysv|'`
1503 ;;
1504 -sinix*)
1505 os=-sysv4
1506 ;;
1507 -tpf*)
1508 os=-tpf
1509 ;;
1510 -triton*)
1511 os=-sysv3
1512 ;;
1513 -oss*)
1514 os=-sysv3
1515 ;;
1516 -svr4)
1517 os=-sysv4
1518 ;;
1519 -svr3)
1520 os=-sysv3
1521 ;;
1522 -sysvr4)
1523 os=-sysv4
1524 ;;
1525 # This must come after -sysvr4.
1526 -sysv*)
1527 ;;
1528 -ose*)
1529 os=-ose
1530 ;;
1531 -es1800*)
1532 os=-ose
1533 ;;
1534 -xenix)
1535 os=-xenix
1536 ;;
1537 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1538 os=-mint
1539 ;;
1540 -aros*)
1541 os=-aros
1542 ;;
1543 -zvmoe)
1544 os=-zvmoe
1545 ;;
1546 -dicos*)
1547 os=-dicos
1548 ;;
1549 -nacl*)
1550 ;;
1551 -ios)
1552 ;;
1553 -none)
1554 ;;
1555 *)
1556 # Get rid of the `-' at the beginning of $os.
1557 os=`echo $os | sed 's/[^-]*-//'`
1558 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1511 echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
15591512 exit 1
15601513 ;;
15611514 esac
15711524 # will signal an error saying that MANUFACTURER isn't an operating
15721525 # system, and we'll never get to this point.
15731526
1574 case $basic_machine in
1527 case $cpu-$vendor in
15751528 score-*)
1576 os=-elf
1529 os=elf
15771530 ;;
15781531 spu-*)
1579 os=-elf
1532 os=elf
15801533 ;;
15811534 *-acorn)
1582 os=-riscix1.2
1535 os=riscix1.2
15831536 ;;
15841537 arm*-rebel)
1585 os=-linux
1538 os=linux
15861539 ;;
15871540 arm*-semi)
1588 os=-aout
1541 os=aout
15891542 ;;
15901543 c4x-* | tic4x-*)
1591 os=-coff
1544 os=coff
15921545 ;;
15931546 c8051-*)
1594 os=-elf
1547 os=elf
1548 ;;
1549 clipper-intergraph)
1550 os=clix
15951551 ;;
15961552 hexagon-*)
1597 os=-elf
1553 os=elf
15981554 ;;
15991555 tic54x-*)
1600 os=-coff
1556 os=coff
16011557 ;;
16021558 tic55x-*)
1603 os=-coff
1559 os=coff
16041560 ;;
16051561 tic6x-*)
1606 os=-coff
1562 os=coff
16071563 ;;
16081564 # This must come before the *-dec entry.
16091565 pdp10-*)
1610 os=-tops20
1566 os=tops20
16111567 ;;
16121568 pdp11-*)
1613 os=-none
1569 os=none
16141570 ;;
16151571 *-dec | vax-*)
1616 os=-ultrix4.2
1572 os=ultrix4.2
16171573 ;;
16181574 m68*-apollo)
1619 os=-domain
1575 os=domain
16201576 ;;
16211577 i386-sun)
1622 os=-sunos4.0.2
1578 os=sunos4.0.2
16231579 ;;
16241580 m68000-sun)
1625 os=-sunos3
1581 os=sunos3
16261582 ;;
16271583 m68*-cisco)
1628 os=-aout
1584 os=aout
16291585 ;;
16301586 mep-*)
1631 os=-elf
1587 os=elf
16321588 ;;
16331589 mips*-cisco)
1634 os=-elf
1590 os=elf
16351591 ;;
16361592 mips*-*)
1637 os=-elf
1593 os=elf
16381594 ;;
16391595 or32-*)
1640 os=-coff
1596 os=coff
16411597 ;;
16421598 *-tti) # must be before sparc entry or we get the wrong os.
1643 os=-sysv3
1599 os=sysv3
16441600 ;;
16451601 sparc-* | *-sun)
1646 os=-sunos4.1.1
1602 os=sunos4.1.1
16471603 ;;
16481604 pru-*)
1649 os=-elf
1605 os=elf
16501606 ;;
16511607 *-be)
1652 os=-beos
1653 ;;
1654 *-haiku)
1655 os=-haiku
1608 os=beos
16561609 ;;
16571610 *-ibm)
1658 os=-aix
1611 os=aix
16591612 ;;
16601613 *-knuth)
1661 os=-mmixware
1614 os=mmixware
16621615 ;;
16631616 *-wec)
1664 os=-proelf
1617 os=proelf
16651618 ;;
16661619 *-winbond)
1667 os=-proelf
1620 os=proelf
16681621 ;;
16691622 *-oki)
1670 os=-proelf
1623 os=proelf
16711624 ;;
16721625 *-hp)
1673 os=-hpux
1626 os=hpux
16741627 ;;
16751628 *-hitachi)
1676 os=-hiux
1629 os=hiux
16771630 ;;
16781631 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1679 os=-sysv
1632 os=sysv
16801633 ;;
16811634 *-cbm)
1682 os=-amigaos
1635 os=amigaos
16831636 ;;
16841637 *-dg)
1685 os=-dgux
1638 os=dgux
16861639 ;;
16871640 *-dolphin)
1688 os=-sysv3
1641 os=sysv3
16891642 ;;
16901643 m68k-ccur)
1691 os=-rtu
1644 os=rtu
16921645 ;;
16931646 m88k-omron*)
1694 os=-luna
1695 ;;
1696 *-next )
1697 os=-nextstep
1647 os=luna
1648 ;;
1649 *-next)
1650 os=nextstep
16981651 ;;
16991652 *-sequent)
1700 os=-ptx
1653 os=ptx
17011654 ;;
17021655 *-crds)
1703 os=-unos
1656 os=unos
17041657 ;;
17051658 *-ns)
1706 os=-genix
1659 os=genix
17071660 ;;
17081661 i370-*)
1709 os=-mvs
1710 ;;
1711 *-next)
1712 os=-nextstep3
1662 os=mvs
17131663 ;;
17141664 *-gould)
1715 os=-sysv
1665 os=sysv
17161666 ;;
17171667 *-highlevel)
1718 os=-bsd
1668 os=bsd
17191669 ;;
17201670 *-encore)
1721 os=-bsd
1671 os=bsd
17221672 ;;
17231673 *-sgi)
1724 os=-irix
1674 os=irix
17251675 ;;
17261676 *-siemens)
1727 os=-sysv4
1677 os=sysv4
17281678 ;;
17291679 *-masscomp)
1730 os=-rtu
1680 os=rtu
17311681 ;;
17321682 f30[01]-fujitsu | f700-fujitsu)
1733 os=-uxpv
1683 os=uxpv
17341684 ;;
17351685 *-rom68k)
1736 os=-coff
1686 os=coff
17371687 ;;
17381688 *-*bug)
1739 os=-coff
1689 os=coff
17401690 ;;
17411691 *-apple)
1742 os=-macos
1692 os=macos
17431693 ;;
17441694 *-atari*)
1745 os=-mint
1695 os=mint
1696 ;;
1697 *-wrs)
1698 os=vxworks
17461699 ;;
17471700 *)
1748 os=-none
1701 os=none
17491702 ;;
17501703 esac
17511704 fi
17521705
17531706 # Here we handle the case where we know the os, and the CPU type, but not the
17541707 # manufacturer. We pick the logical manufacturer.
1755 vendor=unknown
1756 case $basic_machine in
1757 *-unknown)
1708 case $vendor in
1709 unknown)
17581710 case $os in
1759 -riscix*)
1711 riscix*)
17601712 vendor=acorn
17611713 ;;
1762 -sunos*)
1714 sunos*)
17631715 vendor=sun
17641716 ;;
1765 -cnk*|-aix*)
1717 cnk*|-aix*)
17661718 vendor=ibm
17671719 ;;
1768 -beos*)
1720 beos*)
17691721 vendor=be
17701722 ;;
1771 -hpux*)
1723 hpux*)
17721724 vendor=hp
17731725 ;;
1774 -mpeix*)
1726 mpeix*)
17751727 vendor=hp
17761728 ;;
1777 -hiux*)
1729 hiux*)
17781730 vendor=hitachi
17791731 ;;
1780 -unos*)
1732 unos*)
17811733 vendor=crds
17821734 ;;
1783 -dgux*)
1735 dgux*)
17841736 vendor=dg
17851737 ;;
1786 -luna*)
1738 luna*)
17871739 vendor=omron
17881740 ;;
1789 -genix*)
1741 genix*)
17901742 vendor=ns
17911743 ;;
1792 -mvs* | -opened*)
1744 clix*)
1745 vendor=intergraph
1746 ;;
1747 mvs* | opened*)
17931748 vendor=ibm
17941749 ;;
1795 -os400*)
1750 os400*)
17961751 vendor=ibm
17971752 ;;
1798 -ptx*)
1753 ptx*)
17991754 vendor=sequent
18001755 ;;
1801 -tpf*)
1756 tpf*)
18021757 vendor=ibm
18031758 ;;
1804 -vxsim* | -vxworks* | -windiss*)
1759 vxsim* | vxworks* | windiss*)
18051760 vendor=wrs
18061761 ;;
1807 -aux*)
1762 aux*)
18081763 vendor=apple
18091764 ;;
1810 -hms*)
1765 hms*)
18111766 vendor=hitachi
18121767 ;;
1813 -mpw* | -macos*)
1768 mpw* | macos*)
18141769 vendor=apple
18151770 ;;
1816 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1771 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
18171772 vendor=atari
18181773 ;;
1819 -vos*)
1774 vos*)
18201775 vendor=stratus
18211776 ;;
18221777 esac
1823 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
18241778 ;;
18251779 esac
18261780
1827 echo $basic_machine$os
1781 echo "$cpu-$vendor-$os"
18281782 exit
18291783
18301784 # Local variables:
1831 # eval: (add-hook 'write-file-hooks 'time-stamp)
1785 # eval: (add-hook 'before-save-hook 'time-stamp)
18321786 # time-stamp-start: "timestamp='"
18331787 # time-stamp-format: "%:y-%02m-%02d"
18341788 # time-stamp-end: "'"
699699 AMDEPBACKSLASH
700700 AMDEP_FALSE
701701 AMDEP_TRUE
702 am__quote
703702 am__include
704703 DEPDIR
705704 OBJEXT
778777 PACKAGE_TARNAME
779778 PACKAGE_NAME
780779 PATH_SEPARATOR
781 SHELL'
780 SHELL
781 am__quote'
782782 ac_subst_files=''
783783 ac_user_opts='
784784 enable_option_checking
23352335
23362336
23372337
2338 am__api_version='1.15'
2338 am__api_version='1.16'
23392339
23402340 ac_aux_dir=
23412341 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
28412841
28422842 # For better backward compatibility. To be removed once Automake 1.9.x
28432843 # dies out for good. For more background, see:
2844 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2845 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2844 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2845 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
28462846 mkdir_p='$(MKDIR_P)'
28472847
28482848 # We need awk for the "check" target (and possibly the TAP driver). The
28932893 Aborting the configuration process, to ensure you take notice of the issue.
28942894
28952895 You can download and install GNU coreutils to get an 'rm' implementation
2896 that behaves properly: <http://www.gnu.org/software/coreutils/>.
2896 that behaves properly: <https://www.gnu.org/software/coreutils/>.
28972897
28982898 If you want to complete the configuration process using your problematic
28992899 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
29132913
29142914 ac_config_commands="$ac_config_commands depfiles"
29152915
2916
2917 am_make=${MAKE-make}
2918 cat > confinc << 'END'
2916 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
2917 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
2918 cat > confinc.mk << 'END'
29192919 am__doit:
2920 @echo this is the am__doit target
2920 @echo this is the am__doit target >confinc.out
29212921 .PHONY: am__doit
29222922 END
2923 # If we don't find an include directive, just comment out the code.
2924 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
2925 $as_echo_n "checking for style of include used by $am_make... " >&6; }
29262923 am__include="#"
29272924 am__quote=
2928 _am_result=none
2929 # First try GNU make style include.
2930 echo "include confinc" > confmf
2931 # Ignore all kinds of additional output from 'make'.
2932 case `$am_make -s -f confmf 2> /dev/null` in #(
2933 *the\ am__doit\ target*)
2934 am__include=include
2935 am__quote=
2936 _am_result=GNU
2937 ;;
2925 # BSD make does it like this.
2926 echo '.include "confinc.mk" # ignored' > confmf.BSD
2927 # Other make implementations (GNU, Solaris 10, AIX) do it like this.
2928 echo 'include confinc.mk # ignored' > confmf.GNU
2929 _am_result=no
2930 for s in GNU BSD; do
2931 { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
2932 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
2933 ac_status=$?
2934 echo "$as_me:$LINENO: \$? = $ac_status" >&5
2935 (exit $ac_status); }
2936 case $?:`cat confinc.out 2>/dev/null` in #(
2937 '0:this is the am__doit target') :
2938 case $s in #(
2939 BSD) :
2940 am__include='.include' am__quote='"' ;; #(
2941 *) :
2942 am__include='include' am__quote='' ;;
2943 esac ;; #(
2944 *) :
2945 ;;
29382946 esac
2939 # Now try BSD make style include.
2940 if test "$am__include" = "#"; then
2941 echo '.include "confinc"' > confmf
2942 case `$am_make -s -f confmf 2> /dev/null` in #(
2943 *the\ am__doit\ target*)
2944 am__include=.include
2945 am__quote="\""
2946 _am_result=BSD
2947 ;;
2948 esac
2949 fi
2950
2951
2952 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
2953 $as_echo "$_am_result" >&6; }
2954 rm -f confinc confmf
2947 if test "$am__include" != "#"; then
2948 _am_result="yes ($s style)"
2949 break
2950 fi
2951 done
2952 rm -f confinc.* confmf.*
2953 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
2954 $as_echo "${_am_result}" >&6; }
29552955
29562956 # Check whether --enable-dependency-tracking was given.
29572957 if test "${enable_dependency_tracking+set}" = set; then :
78237823 #
78247824 # INIT-COMMANDS
78257825 #
7826 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
7826 AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
78277827 abs_top_srcdir=$abs_top_srcdir
78287828
78297829 abs_top_srcdir=$abs_top_srcdir
83258325 # Older Autoconf quotes --file arguments for eval, but not when files
83268326 # are listed without --file. Let's play safe and only enable the eval
83278327 # if we detect the quoting.
8328 case $CONFIG_FILES in
8329 *\'*) eval set x "$CONFIG_FILES" ;;
8330 *) set x $CONFIG_FILES ;;
8331 esac
8328 # TODO: see whether this extra hack can be removed once we start
8329 # requiring Autoconf 2.70 or later.
8330 case $CONFIG_FILES in #(
8331 *\'*) :
8332 eval set x "$CONFIG_FILES" ;; #(
8333 *) :
8334 set x $CONFIG_FILES ;; #(
8335 *) :
8336 ;;
8337 esac
83328338 shift
8333 for mf
8339 # Used to flag and report bootstrapping failures.
8340 am_rc=0
8341 for am_mf
83348342 do
83358343 # Strip MF so we end up with the name of the file.
8336 mf=`echo "$mf" | sed -e 's/:.*$//'`
8337 # Check whether this is an Automake generated Makefile or not.
8338 # We used to match only the files named 'Makefile.in', but
8339 # some people rename them; so instead we look at the file content.
8340 # Grep'ing the first line is not enough: some people post-process
8341 # each Makefile.in and add a new line on top of each file to say so.
8342 # Grep'ing the whole file is not good either: AIX grep has a line
8344 am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
8345 # Check whether this is an Automake generated Makefile which includes
8346 # dependency-tracking related rules and includes.
8347 # Grep'ing the whole file directly is not great: AIX grep has a line
83438348 # limit of 2048, but all sed's we know have understand at least 4000.
8344 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
8345 dirpart=`$as_dirname -- "$mf" ||
8346 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8347 X"$mf" : 'X\(//\)[^/]' \| \
8348 X"$mf" : 'X\(//\)$' \| \
8349 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
8350 $as_echo X"$mf" |
8349 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
8350 || continue
8351 am_dirpart=`$as_dirname -- "$am_mf" ||
8352 $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8353 X"$am_mf" : 'X\(//\)[^/]' \| \
8354 X"$am_mf" : 'X\(//\)$' \| \
8355 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
8356 $as_echo X"$am_mf" |
83518357 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
83528358 s//\1/
83538359 q
83658371 q
83668372 }
83678373 s/.*/./; q'`
8368 else
8369 continue
8370 fi
8371 # Extract the definition of DEPDIR, am__include, and am__quote
8372 # from the Makefile without running 'make'.
8373 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
8374 test -z "$DEPDIR" && continue
8375 am__include=`sed -n 's/^am__include = //p' < "$mf"`
8376 test -z "$am__include" && continue
8377 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
8378 # Find all dependency output files, they are included files with
8379 # $(DEPDIR) in their names. We invoke sed twice because it is the
8380 # simplest approach to changing $(DEPDIR) to its actual value in the
8381 # expansion.
8382 for file in `sed -n "
8383 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
8384 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
8385 # Make sure the directory exists.
8386 test -f "$dirpart/$file" && continue
8387 fdir=`$as_dirname -- "$file" ||
8388 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
8389 X"$file" : 'X\(//\)[^/]' \| \
8390 X"$file" : 'X\(//\)$' \| \
8391 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
8392 $as_echo X"$file" |
8393 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
8374 am_filepart=`$as_basename -- "$am_mf" ||
8375 $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
8376 X"$am_mf" : 'X\(//\)$' \| \
8377 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
8378 $as_echo X/"$am_mf" |
8379 sed '/^.*\/\([^/][^/]*\)\/*$/{
83948380 s//\1/
83958381 q
83968382 }
8397 /^X\(\/\/\)[^/].*/{
8383 /^X\/\(\/\/\)$/{
83988384 s//\1/
83998385 q
84008386 }
8401 /^X\(\/\/\)$/{
8402 s//\1/
8403 q
8404 }
8405 /^X\(\/\).*/{
8387 /^X\/\(\/\).*/{
84068388 s//\1/
84078389 q
84088390 }
84098391 s/.*/./; q'`
8410 as_dir=$dirpart/$fdir; as_fn_mkdir_p
8411 # echo "creating $dirpart/$file"
8412 echo '# dummy' > "$dirpart/$file"
8413 done
8392 { echo "$as_me:$LINENO: cd "$am_dirpart" \
8393 && sed -e '/# am--include-marker/d' "$am_filepart" \
8394 | $MAKE -f - am--depfiles" >&5
8395 (cd "$am_dirpart" \
8396 && sed -e '/# am--include-marker/d' "$am_filepart" \
8397 | $MAKE -f - am--depfiles) >&5 2>&5
8398 ac_status=$?
8399 echo "$as_me:$LINENO: \$? = $ac_status" >&5
8400 (exit $ac_status); } || am_rc=$?
84148401 done
8402 if test $am_rc -ne 0; then
8403 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
8404 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
8405 as_fn_error $? "Something went wrong bootstrapping makefile fragments
8406 for automatic dependency tracking. Try re-running configure with the
8407 '--disable-dependency-tracking' option to at least be able to build
8408 the package (albeit without support for automatic dependency tracking).
8409 See \`config.log' for more details" "$LINENO" 5; }
8410 fi
8411 { am_dirpart=; unset am_dirpart;}
8412 { am_filepart=; unset am_filepart;}
8413 { am_mf=; unset am_mf;}
8414 { am_rc=; unset am_rc;}
8415 rm -f conftest-deps.mk
84158416 }
84168417 ;;
84178418 "configure.hpp":C) cp include/cppad/configure.hpp \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
118118 am__v_at_1 =
119119 DEFAULT_INCLUDES =
120120 depcomp = $(SHELL) $(top_srcdir)/depcomp
121 am__depfiles_maybe = depfiles
121 am__maybe_remake_depfiles = depfiles
122 am__depfiles_remade = ./$(DEPDIR)/example.Po \
123 ./$(DEPDIR)/get_started.Po ./$(DEPDIR)/ode_check.Po \
124 ./$(DEPDIR)/ode_fast_check.Po ./$(DEPDIR)/ode_simple_check.Po
122125 am__mv = mv -f
123126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
124127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
402405 *config.status*) \
403406 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
404407 *) \
405 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
406 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
408 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
409 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
407410 esac;
408411
409412 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
430433 distclean-compile:
431434 -rm -f *.tab.c
432435
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_check.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_fast_check.Po@am__quote@
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_simple_check.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example.Po@am__quote@ # am--include-marker
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_check.Po@am__quote@ # am--include-marker
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_fast_check.Po@am__quote@ # am--include-marker
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_simple_check.Po@am__quote@ # am--include-marker
441
442 $(am__depfiles_remade):
443 @$(MKDIR_P) $(@D)
444 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
445
446 am--depfiles: $(am__depfiles_remade)
438447
439448 .cpp.o:
440449 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
504513 distclean-tags:
505514 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
506515
507 distdir: $(DISTFILES)
516 distdir: $(BUILT_SOURCES)
517 $(MAKE) $(AM_MAKEFLAGS) distdir-am
518
519 distdir-am: $(DISTFILES)
508520 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
509521 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
510522 list='$(DISTFILES)'; \
574586 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
575587
576588 distclean: distclean-am
577 -rm -rf ./$(DEPDIR)
589 -rm -f ./$(DEPDIR)/example.Po
590 -rm -f ./$(DEPDIR)/get_started.Po
591 -rm -f ./$(DEPDIR)/ode_check.Po
592 -rm -f ./$(DEPDIR)/ode_fast_check.Po
593 -rm -f ./$(DEPDIR)/ode_simple_check.Po
578594 -rm -f makefile
579595 distclean-am: clean-am distclean-compile distclean-generic \
580596 distclean-tags
620636 installcheck-am:
621637
622638 maintainer-clean: maintainer-clean-am
623 -rm -rf ./$(DEPDIR)
639 -rm -f ./$(DEPDIR)/example.Po
640 -rm -f ./$(DEPDIR)/get_started.Po
641 -rm -f ./$(DEPDIR)/ode_check.Po
642 -rm -f ./$(DEPDIR)/ode_fast_check.Po
643 -rm -f ./$(DEPDIR)/ode_simple_check.Po
624644 -rm -f makefile
625645 maintainer-clean-am: distclean-am maintainer-clean-generic
626646
640660
641661 .MAKE: check-am install-am install-strip
642662
643 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
663 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
644664 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
645665 distclean distclean-compile distclean-generic distclean-tags \
646666 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
120120 am__v_at_1 =
121121 DEFAULT_INCLUDES =
122122 depcomp = $(SHELL) $(top_srcdir)/depcomp
123 am__depfiles_maybe = depfiles
123 am__maybe_remake_depfiles = depfiles
124 am__depfiles_remade = ../src/$(DEPDIR)/cppad_ipopt_nlp.Po \
125 ../src/$(DEPDIR)/hes_fg_map.Po ../src/$(DEPDIR)/jac_g_map.Po \
126 ../src/$(DEPDIR)/sparse_map2vec.Po \
127 ../src/$(DEPDIR)/vec_fun_pattern.Po ./$(DEPDIR)/ode_speed.Po \
128 ./$(DEPDIR)/speed.Po
124129 am__mv = mv -f
125130 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
126131 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
416421 *config.status*) \
417422 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
418423 *) \
419 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
420 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
424 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
425 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
421426 esac;
422427
423428 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
461466 distclean-compile:
462467 -rm -f *.tab.c
463468
464 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/cppad_ipopt_nlp.Po@am__quote@
465 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/hes_fg_map.Po@am__quote@
466 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/jac_g_map.Po@am__quote@
467 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/sparse_map2vec.Po@am__quote@
468 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/vec_fun_pattern.Po@am__quote@
469 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_speed.Po@am__quote@
470 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/speed.Po@am__quote@
469 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/cppad_ipopt_nlp.Po@am__quote@ # am--include-marker
470 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/hes_fg_map.Po@am__quote@ # am--include-marker
471 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/jac_g_map.Po@am__quote@ # am--include-marker
472 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/sparse_map2vec.Po@am__quote@ # am--include-marker
473 @AMDEP_TRUE@@am__include@ @am__quote@../src/$(DEPDIR)/vec_fun_pattern.Po@am__quote@ # am--include-marker
474 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_speed.Po@am__quote@ # am--include-marker
475 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/speed.Po@am__quote@ # am--include-marker
476
477 $(am__depfiles_remade):
478 @$(MKDIR_P) $(@D)
479 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
480
481 am--depfiles: $(am__depfiles_remade)
471482
472483 .cpp.o:
473484 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
537548 distclean-tags:
538549 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
539550
540 distdir: $(DISTFILES)
551 distdir: $(BUILT_SOURCES)
552 $(MAKE) $(AM_MAKEFLAGS) distdir-am
553
554 distdir-am: $(DISTFILES)
541555 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
542556 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
543557 list='$(DISTFILES)'; \
609623 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
610624
611625 distclean: distclean-am
612 -rm -rf ../src/$(DEPDIR) ./$(DEPDIR)
626 -rm -f ../src/$(DEPDIR)/cppad_ipopt_nlp.Po
627 -rm -f ../src/$(DEPDIR)/hes_fg_map.Po
628 -rm -f ../src/$(DEPDIR)/jac_g_map.Po
629 -rm -f ../src/$(DEPDIR)/sparse_map2vec.Po
630 -rm -f ../src/$(DEPDIR)/vec_fun_pattern.Po
631 -rm -f ./$(DEPDIR)/ode_speed.Po
632 -rm -f ./$(DEPDIR)/speed.Po
613633 -rm -f makefile
614634 distclean-am: clean-am distclean-compile distclean-generic \
615635 distclean-tags
655675 installcheck-am:
656676
657677 maintainer-clean: maintainer-clean-am
658 -rm -rf ../src/$(DEPDIR) ./$(DEPDIR)
678 -rm -f ../src/$(DEPDIR)/cppad_ipopt_nlp.Po
679 -rm -f ../src/$(DEPDIR)/hes_fg_map.Po
680 -rm -f ../src/$(DEPDIR)/jac_g_map.Po
681 -rm -f ../src/$(DEPDIR)/sparse_map2vec.Po
682 -rm -f ../src/$(DEPDIR)/vec_fun_pattern.Po
683 -rm -f ./$(DEPDIR)/ode_speed.Po
684 -rm -f ./$(DEPDIR)/speed.Po
659685 -rm -f makefile
660686 maintainer-clean-am: distclean-am maintainer-clean-generic
661687
675701
676702 .MAKE: check-am install-am install-strip
677703
678 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
704 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
679705 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
680706 distclean distclean-compile distclean-generic distclean-tags \
681707 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
156156 am__v_at_1 =
157157 DEFAULT_INCLUDES =
158158 depcomp = $(SHELL) $(top_srcdir)/depcomp
159 am__depfiles_maybe = depfiles
159 am__maybe_remake_depfiles = depfiles
160 am__depfiles_remade = ./$(DEPDIR)/cppad_ipopt_nlp.Po \
161 ./$(DEPDIR)/hes_fg_map.Po ./$(DEPDIR)/jac_g_map.Po \
162 ./$(DEPDIR)/sparse_map2vec.Po ./$(DEPDIR)/vec_fun_pattern.Po
160163 am__mv = mv -f
161164 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
162165 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
433436 *config.status*) \
434437 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
435438 *) \
436 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
437 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
439 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
440 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
438441 esac;
439442
440443 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
488491 distclean-compile:
489492 -rm -f *.tab.c
490493
491 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_ipopt_nlp.Po@am__quote@
492 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_fg_map.Po@am__quote@
493 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_g_map.Po@am__quote@
494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_map2vec.Po@am__quote@
495 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_fun_pattern.Po@am__quote@
494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_ipopt_nlp.Po@am__quote@ # am--include-marker
495 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_fg_map.Po@am__quote@ # am--include-marker
496 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_g_map.Po@am__quote@ # am--include-marker
497 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_map2vec.Po@am__quote@ # am--include-marker
498 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_fun_pattern.Po@am__quote@ # am--include-marker
499
500 $(am__depfiles_remade):
501 @$(MKDIR_P) $(@D)
502 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
503
504 am--depfiles: $(am__depfiles_remade)
496505
497506 .cpp.o:
498507 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
562571 distclean-tags:
563572 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
564573
565 distdir: $(DISTFILES)
574 distdir: $(BUILT_SOURCES)
575 $(MAKE) $(AM_MAKEFLAGS) distdir-am
576
577 distdir-am: $(DISTFILES)
566578 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
567579 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
568580 list='$(DISTFILES)'; \
634646 clean-am: clean-generic clean-libLIBRARIES mostlyclean-am
635647
636648 distclean: distclean-am
637 -rm -rf ./$(DEPDIR)
649 -rm -f ./$(DEPDIR)/cppad_ipopt_nlp.Po
650 -rm -f ./$(DEPDIR)/hes_fg_map.Po
651 -rm -f ./$(DEPDIR)/jac_g_map.Po
652 -rm -f ./$(DEPDIR)/sparse_map2vec.Po
653 -rm -f ./$(DEPDIR)/vec_fun_pattern.Po
638654 -rm -f makefile
639655 distclean-am: clean-am distclean-compile distclean-generic \
640656 distclean-tags
680696 installcheck-am:
681697
682698 maintainer-clean: maintainer-clean-am
683 -rm -rf ./$(DEPDIR)
699 -rm -f ./$(DEPDIR)/cppad_ipopt_nlp.Po
700 -rm -f ./$(DEPDIR)/hes_fg_map.Po
701 -rm -f ./$(DEPDIR)/jac_g_map.Po
702 -rm -f ./$(DEPDIR)/sparse_map2vec.Po
703 -rm -f ./$(DEPDIR)/vec_fun_pattern.Po
684704 -rm -f makefile
685705 maintainer-clean-am: distclean-am maintainer-clean-generic
686706
700720
701721 .MAKE: install-am install-strip
702722
703 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
704 clean-libLIBRARIES cscopelist-am ctags ctags-am distclean \
705 distclean-compile distclean-generic distclean-tags distdir dvi \
706 dvi-am html html-am info info-am install install-am \
707 install-data install-data-am install-dvi install-dvi-am \
708 install-exec install-exec-am install-html install-html-am \
709 install-info install-info-am install-libLIBRARIES install-man \
710 install-pdf install-pdf-am install-ps install-ps-am \
711 install-strip installcheck installcheck-am installdirs \
712 maintainer-clean maintainer-clean-generic mostlyclean \
713 mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
714 tags tags-am uninstall uninstall-am uninstall-libLIBRARIES
723 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
724 clean-generic clean-libLIBRARIES cscopelist-am ctags ctags-am \
725 distclean distclean-compile distclean-generic distclean-tags \
726 distdir dvi dvi-am html html-am info info-am install \
727 install-am install-data install-data-am install-dvi \
728 install-dvi-am install-exec install-exec-am install-html \
729 install-html-am install-info install-info-am \
730 install-libLIBRARIES install-man install-pdf install-pdf-am \
731 install-ps install-ps-am install-strip installcheck \
732 installcheck-am installdirs maintainer-clean \
733 maintainer-clean-generic mostlyclean mostlyclean-compile \
734 mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
735 uninstall-am uninstall-libLIBRARIES
715736
716737 .PRECIOUS: makefile
717738
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
118118 am__v_at_1 =
119119 DEFAULT_INCLUDES =
120120 depcomp = $(SHELL) $(top_srcdir)/depcomp
121 am__depfiles_maybe = depfiles
121 am__maybe_remake_depfiles = depfiles
122 am__depfiles_remade = ./$(DEPDIR)/k_gt_one.Po \
123 ./$(DEPDIR)/multiple_solution.Po ./$(DEPDIR)/retape_k1_l1.Po \
124 ./$(DEPDIR)/retape_k1_l2.Po ./$(DEPDIR)/test_more.Po
122125 am__mv = mv -f
123126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
124127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
385388 *config.status*) \
386389 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
387390 *) \
388 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
389 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
390393 esac;
391394
392395 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
413416 distclean-compile:
414417 -rm -f *.tab.c
415418
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/k_gt_one.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_solution.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape_k1_l1.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape_k1_l2.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_more.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/k_gt_one.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_solution.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape_k1_l1.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape_k1_l2.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_more.Po@am__quote@ # am--include-marker
424
425 $(am__depfiles_remade):
426 @$(MKDIR_P) $(@D)
427 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
428
429 am--depfiles: $(am__depfiles_remade)
421430
422431 .cpp.o:
423432 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
487496 distclean-tags:
488497 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
489498
490 distdir: $(DISTFILES)
499 distdir: $(BUILT_SOURCES)
500 $(MAKE) $(AM_MAKEFLAGS) distdir-am
501
502 distdir-am: $(DISTFILES)
491503 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492504 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
493505 list='$(DISTFILES)'; \
557569 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
558570
559571 distclean: distclean-am
560 -rm -rf ./$(DEPDIR)
572 -rm -f ./$(DEPDIR)/k_gt_one.Po
573 -rm -f ./$(DEPDIR)/multiple_solution.Po
574 -rm -f ./$(DEPDIR)/retape_k1_l1.Po
575 -rm -f ./$(DEPDIR)/retape_k1_l2.Po
576 -rm -f ./$(DEPDIR)/test_more.Po
561577 -rm -f makefile
562578 distclean-am: clean-am distclean-compile distclean-generic \
563579 distclean-tags
603619 installcheck-am:
604620
605621 maintainer-clean: maintainer-clean-am
606 -rm -rf ./$(DEPDIR)
622 -rm -f ./$(DEPDIR)/k_gt_one.Po
623 -rm -f ./$(DEPDIR)/multiple_solution.Po
624 -rm -f ./$(DEPDIR)/retape_k1_l1.Po
625 -rm -f ./$(DEPDIR)/retape_k1_l2.Po
626 -rm -f ./$(DEPDIR)/test_more.Po
607627 -rm -f makefile
608628 maintainer-clean-am: distclean-am maintainer-clean-generic
609629
623643
624644 .MAKE: check-am install-am install-strip
625645
626 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
646 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
627647 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
628648 distclean distclean-compile distclean-generic distclean-tags \
629649 distdir dvi dvi-am html html-am info info-am install \
0 #!/bin/sh
0 #! /bin/sh
11 # depcomp - compile a program generating dependencies as side-effects
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
66
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
1515 # GNU General Public License for more details.
1616
1717 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
2020 # As a special exception to the GNU General Public License, if you
2121 # distribute this file as part of a program that contains a
782782 # Local Variables:
783783 # mode: shell-script
784784 # sh-indentation: 2
785 # eval: (add-hook 'write-file-hooks 'time-stamp)
785 # eval: (add-hook 'before-save-hook 'time-stamp)
786786 # time-stamp-start: "scriptversion="
787787 # time-stamp-format: "%:y-%02m-%02d.%02H"
788788 # time-stamp-time-zone: "UTC0"
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
118118 am__v_at_1 =
119119 DEFAULT_INCLUDES =
120120 depcomp = $(SHELL) $(top_srcdir)/depcomp
121 am__depfiles_maybe = depfiles
121 am__maybe_remake_depfiles = depfiles
122 am__depfiles_remade = ./$(DEPDIR)/abs_eval.Po \
123 ./$(DEPDIR)/abs_min_linear.Po ./$(DEPDIR)/abs_min_quad.Po \
124 ./$(DEPDIR)/abs_normal.Po ./$(DEPDIR)/get_started.Po \
125 ./$(DEPDIR)/lp_box.Po ./$(DEPDIR)/min_nso_linear.Po \
126 ./$(DEPDIR)/min_nso_quad.Po ./$(DEPDIR)/qp_box.Po \
127 ./$(DEPDIR)/qp_interior.Po ./$(DEPDIR)/simplex_method.Po
122128 am__mv = mv -f
123129 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
124130 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
413419 *config.status*) \
414420 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
415421 *) \
416 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
417 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
422 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
423 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
418424 esac;
419425
420426 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
439445 distclean-compile:
440446 -rm -f *.tab.c
441447
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_eval.Po@am__quote@
443 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_min_linear.Po@am__quote@
444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_min_quad.Po@am__quote@
445 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_normal.Po@am__quote@
446 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
447 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lp_box.Po@am__quote@
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/min_nso_linear.Po@am__quote@
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/min_nso_quad.Po@am__quote@
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qp_box.Po@am__quote@
451 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qp_interior.Po@am__quote@
452 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simplex_method.Po@am__quote@
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_eval.Po@am__quote@ # am--include-marker
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_min_linear.Po@am__quote@ # am--include-marker
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_min_quad.Po@am__quote@ # am--include-marker
451 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abs_normal.Po@am__quote@ # am--include-marker
452 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
453 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lp_box.Po@am__quote@ # am--include-marker
454 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/min_nso_linear.Po@am__quote@ # am--include-marker
455 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/min_nso_quad.Po@am__quote@ # am--include-marker
456 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qp_box.Po@am__quote@ # am--include-marker
457 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qp_interior.Po@am__quote@ # am--include-marker
458 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simplex_method.Po@am__quote@ # am--include-marker
459
460 $(am__depfiles_remade):
461 @$(MKDIR_P) $(@D)
462 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
463
464 am--depfiles: $(am__depfiles_remade)
453465
454466 .cpp.o:
455467 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
519531 distclean-tags:
520532 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
521533
522 distdir: $(DISTFILES)
534 distdir: $(BUILT_SOURCES)
535 $(MAKE) $(AM_MAKEFLAGS) distdir-am
536
537 distdir-am: $(DISTFILES)
523538 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
524539 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
525540 list='$(DISTFILES)'; \
589604 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
590605
591606 distclean: distclean-am
592 -rm -rf ./$(DEPDIR)
607 -rm -f ./$(DEPDIR)/abs_eval.Po
608 -rm -f ./$(DEPDIR)/abs_min_linear.Po
609 -rm -f ./$(DEPDIR)/abs_min_quad.Po
610 -rm -f ./$(DEPDIR)/abs_normal.Po
611 -rm -f ./$(DEPDIR)/get_started.Po
612 -rm -f ./$(DEPDIR)/lp_box.Po
613 -rm -f ./$(DEPDIR)/min_nso_linear.Po
614 -rm -f ./$(DEPDIR)/min_nso_quad.Po
615 -rm -f ./$(DEPDIR)/qp_box.Po
616 -rm -f ./$(DEPDIR)/qp_interior.Po
617 -rm -f ./$(DEPDIR)/simplex_method.Po
593618 -rm -f makefile
594619 distclean-am: clean-am distclean-compile distclean-generic \
595620 distclean-tags
635660 installcheck-am:
636661
637662 maintainer-clean: maintainer-clean-am
638 -rm -rf ./$(DEPDIR)
663 -rm -f ./$(DEPDIR)/abs_eval.Po
664 -rm -f ./$(DEPDIR)/abs_min_linear.Po
665 -rm -f ./$(DEPDIR)/abs_min_quad.Po
666 -rm -f ./$(DEPDIR)/abs_normal.Po
667 -rm -f ./$(DEPDIR)/get_started.Po
668 -rm -f ./$(DEPDIR)/lp_box.Po
669 -rm -f ./$(DEPDIR)/min_nso_linear.Po
670 -rm -f ./$(DEPDIR)/min_nso_quad.Po
671 -rm -f ./$(DEPDIR)/qp_box.Po
672 -rm -f ./$(DEPDIR)/qp_interior.Po
673 -rm -f ./$(DEPDIR)/simplex_method.Po
639674 -rm -f makefile
640675 maintainer-clean-am: distclean-am maintainer-clean-generic
641676
655690
656691 .MAKE: check-am install-am install-strip
657692
658 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
693 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
659694 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
660695 distclean distclean-compile distclean-generic distclean-tags \
661696 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/atomic_three.Po \
122 ./$(DEPDIR)/base2ad.Po ./$(DEPDIR)/dynamic.Po \
123 ./$(DEPDIR)/forward.Po ./$(DEPDIR)/get_started.Po \
124 ./$(DEPDIR)/hes_sparsity.Po ./$(DEPDIR)/jac_sparsity.Po \
125 ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/norm_sq.Po \
126 ./$(DEPDIR)/reciprocal.Po ./$(DEPDIR)/rev_depend.Po \
127 ./$(DEPDIR)/reverse.Po ./$(DEPDIR)/tangent.Po
121128 am__mv = mv -f
122129 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123130 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
381388 *config.status*) \
382389 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
383390 *) \
384 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
385 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
386393 esac;
387394
388395 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
407414 distclean-compile:
408415 -rm -f *.tab.c
409416
410 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_three.Po@am__quote@
411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dynamic.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_sparsity.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_sparsity.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm_sq.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reciprocal.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_depend.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tangent.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_three.Po@am__quote@ # am--include-marker
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@ # am--include-marker
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dynamic.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_sparsity.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_sparsity.Po@am__quote@ # am--include-marker
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm_sq.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reciprocal.Po@am__quote@ # am--include-marker
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_depend.Po@am__quote@ # am--include-marker
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@ # am--include-marker
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tangent.Po@am__quote@ # am--include-marker
430
431 $(am__depfiles_remade):
432 @$(MKDIR_P) $(@D)
433 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
434
435 am--depfiles: $(am__depfiles_remade)
423436
424437 .cpp.o:
425438 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
489502 distclean-tags:
490503 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
491504
492 distdir: $(DISTFILES)
505 distdir: $(BUILT_SOURCES)
506 $(MAKE) $(AM_MAKEFLAGS) distdir-am
507
508 distdir-am: $(DISTFILES)
493509 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
494510 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
495511 list='$(DISTFILES)'; \
559575 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
560576
561577 distclean: distclean-am
562 -rm -rf ./$(DEPDIR)
578 -rm -f ./$(DEPDIR)/atomic_three.Po
579 -rm -f ./$(DEPDIR)/base2ad.Po
580 -rm -f ./$(DEPDIR)/dynamic.Po
581 -rm -f ./$(DEPDIR)/forward.Po
582 -rm -f ./$(DEPDIR)/get_started.Po
583 -rm -f ./$(DEPDIR)/hes_sparsity.Po
584 -rm -f ./$(DEPDIR)/jac_sparsity.Po
585 -rm -f ./$(DEPDIR)/mat_mul.Po
586 -rm -f ./$(DEPDIR)/norm_sq.Po
587 -rm -f ./$(DEPDIR)/reciprocal.Po
588 -rm -f ./$(DEPDIR)/rev_depend.Po
589 -rm -f ./$(DEPDIR)/reverse.Po
590 -rm -f ./$(DEPDIR)/tangent.Po
563591 -rm -f makefile
564592 distclean-am: clean-am distclean-compile distclean-generic \
565593 distclean-tags
605633 installcheck-am:
606634
607635 maintainer-clean: maintainer-clean-am
608 -rm -rf ./$(DEPDIR)
636 -rm -f ./$(DEPDIR)/atomic_three.Po
637 -rm -f ./$(DEPDIR)/base2ad.Po
638 -rm -f ./$(DEPDIR)/dynamic.Po
639 -rm -f ./$(DEPDIR)/forward.Po
640 -rm -f ./$(DEPDIR)/get_started.Po
641 -rm -f ./$(DEPDIR)/hes_sparsity.Po
642 -rm -f ./$(DEPDIR)/jac_sparsity.Po
643 -rm -f ./$(DEPDIR)/mat_mul.Po
644 -rm -f ./$(DEPDIR)/norm_sq.Po
645 -rm -f ./$(DEPDIR)/reciprocal.Po
646 -rm -f ./$(DEPDIR)/rev_depend.Po
647 -rm -f ./$(DEPDIR)/reverse.Po
648 -rm -f ./$(DEPDIR)/tangent.Po
609649 -rm -f makefile
610650 maintainer-clean-am: distclean-am maintainer-clean-generic
611651
625665
626666 .MAKE: check-am install-am install-strip
627667
628 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
668 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
629669 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
630670 distclean distclean-compile distclean-generic distclean-tags \
631671 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
118118 am__v_at_1 =
119119 DEFAULT_INCLUDES =
120120 depcomp = $(SHELL) $(top_srcdir)/depcomp
121 am__depfiles_maybe = depfiles
121 am__maybe_remake_depfiles = depfiles
122 am__depfiles_remade = ./$(DEPDIR)/atomic_two.Po \
123 ./$(DEPDIR)/eigen_cholesky.Po ./$(DEPDIR)/eigen_mat_inv.Po \
124 ./$(DEPDIR)/eigen_mat_mul.Po
122125 am__mv = mv -f
123126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
124127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
374377 *config.status*) \
375378 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
376379 *) \
377 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
378 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
380 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
381 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
379382 esac;
380383
381384 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
400403 distclean-compile:
401404 -rm -f *.tab.c
402405
403 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_two.Po@am__quote@
404 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_cholesky.Po@am__quote@
405 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_inv.Po@am__quote@
406 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_mul.Po@am__quote@
406 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_two.Po@am__quote@ # am--include-marker
407 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_cholesky.Po@am__quote@ # am--include-marker
408 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_inv.Po@am__quote@ # am--include-marker
409 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_mul.Po@am__quote@ # am--include-marker
410
411 $(am__depfiles_remade):
412 @$(MKDIR_P) $(@D)
413 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
414
415 am--depfiles: $(am__depfiles_remade)
407416
408417 .cpp.o:
409418 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
473482 distclean-tags:
474483 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
475484
476 distdir: $(DISTFILES)
485 distdir: $(BUILT_SOURCES)
486 $(MAKE) $(AM_MAKEFLAGS) distdir-am
487
488 distdir-am: $(DISTFILES)
477489 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
478490 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
479491 list='$(DISTFILES)'; \
543555 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
544556
545557 distclean: distclean-am
546 -rm -rf ./$(DEPDIR)
558 -rm -f ./$(DEPDIR)/atomic_two.Po
559 -rm -f ./$(DEPDIR)/eigen_cholesky.Po
560 -rm -f ./$(DEPDIR)/eigen_mat_inv.Po
561 -rm -f ./$(DEPDIR)/eigen_mat_mul.Po
547562 -rm -f makefile
548563 distclean-am: clean-am distclean-compile distclean-generic \
549564 distclean-tags
589604 installcheck-am:
590605
591606 maintainer-clean: maintainer-clean-am
592 -rm -rf ./$(DEPDIR)
607 -rm -f ./$(DEPDIR)/atomic_two.Po
608 -rm -f ./$(DEPDIR)/eigen_cholesky.Po
609 -rm -f ./$(DEPDIR)/eigen_mat_inv.Po
610 -rm -f ./$(DEPDIR)/eigen_mat_mul.Po
593611 -rm -f makefile
594612 maintainer-clean-am: distclean-am maintainer-clean-generic
595613
609627
610628 .MAKE: check-am install-am install-strip
611629
612 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
630 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
613631 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
614632 distclean distclean-compile distclean-generic distclean-tags \
615633 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
115115 am__v_at_1 =
116116 DEFAULT_INCLUDES =
117117 depcomp = $(SHELL) $(top_srcdir)/depcomp
118 am__depfiles_maybe = depfiles
118 am__maybe_remake_depfiles = depfiles
119 am__depfiles_remade = ./$(DEPDIR)/base2ad.Po \
120 ./$(DEPDIR)/chkpoint_two.Po ./$(DEPDIR)/compare.Po \
121 ./$(DEPDIR)/dynamic.Po ./$(DEPDIR)/get_started.Po \
122 ./$(DEPDIR)/ode.Po
119123 am__mv = mv -f
120124 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
121125 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
371375 *config.status*) \
372376 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
373377 *) \
374 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
375 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
378 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
379 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
376380 esac;
377381
378382 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
397401 distclean-compile:
398402 -rm -f *.tab.c
399403
400 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@
401 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_two.Po@am__quote@
402 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@
403 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dynamic.Po@am__quote@
404 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
405 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
404 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@ # am--include-marker
405 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_two.Po@am__quote@ # am--include-marker
406 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@ # am--include-marker
407 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dynamic.Po@am__quote@ # am--include-marker
408 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
409 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
410
411 $(am__depfiles_remade):
412 @$(MKDIR_P) $(@D)
413 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
414
415 am--depfiles: $(am__depfiles_remade)
406416
407417 .cpp.o:
408418 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
472482 distclean-tags:
473483 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
474484
475 distdir: $(DISTFILES)
485 distdir: $(BUILT_SOURCES)
486 $(MAKE) $(AM_MAKEFLAGS) distdir-am
487
488 distdir-am: $(DISTFILES)
476489 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
477490 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
478491 list='$(DISTFILES)'; \
542555 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
543556
544557 distclean: distclean-am
545 -rm -rf ./$(DEPDIR)
558 -rm -f ./$(DEPDIR)/base2ad.Po
559 -rm -f ./$(DEPDIR)/chkpoint_two.Po
560 -rm -f ./$(DEPDIR)/compare.Po
561 -rm -f ./$(DEPDIR)/dynamic.Po
562 -rm -f ./$(DEPDIR)/get_started.Po
563 -rm -f ./$(DEPDIR)/ode.Po
546564 -rm -f makefile
547565 distclean-am: clean-am distclean-compile distclean-generic \
548566 distclean-tags
588606 installcheck-am:
589607
590608 maintainer-clean: maintainer-clean-am
591 -rm -rf ./$(DEPDIR)
609 -rm -f ./$(DEPDIR)/base2ad.Po
610 -rm -f ./$(DEPDIR)/chkpoint_two.Po
611 -rm -f ./$(DEPDIR)/compare.Po
612 -rm -f ./$(DEPDIR)/dynamic.Po
613 -rm -f ./$(DEPDIR)/get_started.Po
614 -rm -f ./$(DEPDIR)/ode.Po
592615 -rm -f makefile
593616 maintainer-clean-am: distclean-am maintainer-clean-generic
594617
608631
609632 .MAKE: check-am install-am install-strip
610633
611 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
634 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
612635 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
613636 distclean distclean-compile distclean-generic distclean-tags \
614637 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
187187 am__v_at_1 =
188188 DEFAULT_INCLUDES =
189189 depcomp = $(SHELL) $(top_srcdir)/depcomp
190 am__depfiles_maybe = depfiles
190 am__maybe_remake_depfiles = depfiles
191 am__depfiles_remade = ./$(DEPDIR)/abort_recording.Po \
192 ./$(DEPDIR)/acos.Po ./$(DEPDIR)/acosh.Po \
193 ./$(DEPDIR)/ad_assign.Po ./$(DEPDIR)/ad_ctor.Po \
194 ./$(DEPDIR)/ad_fun.Po ./$(DEPDIR)/ad_in_c.Po \
195 ./$(DEPDIR)/ad_input.Po ./$(DEPDIR)/ad_output.Po \
196 ./$(DEPDIR)/add.Po ./$(DEPDIR)/add_eq.Po ./$(DEPDIR)/asin.Po \
197 ./$(DEPDIR)/asinh.Po ./$(DEPDIR)/atan.Po ./$(DEPDIR)/atan2.Po \
198 ./$(DEPDIR)/atanh.Po ./$(DEPDIR)/azmul.Po \
199 ./$(DEPDIR)/base2ad.Po ./$(DEPDIR)/base_require.Po \
200 ./$(DEPDIR)/bender_quad.Po ./$(DEPDIR)/bool_fun.Po \
201 ./$(DEPDIR)/capacity_order.Po ./$(DEPDIR)/change_param.Po \
202 ./$(DEPDIR)/check_for_nan.Po ./$(DEPDIR)/compare.Po \
203 ./$(DEPDIR)/compare_change.Po ./$(DEPDIR)/complex_poly.Po \
204 ./$(DEPDIR)/con_dyn_var.Po ./$(DEPDIR)/cond_exp.Po \
205 ./$(DEPDIR)/cos.Po ./$(DEPDIR)/cosh.Po ./$(DEPDIR)/div.Po \
206 ./$(DEPDIR)/div_eq.Po ./$(DEPDIR)/eigen_array.Po \
207 ./$(DEPDIR)/eigen_det.Po ./$(DEPDIR)/equal_op_seq.Po \
208 ./$(DEPDIR)/erf.Po ./$(DEPDIR)/erfc.Po ./$(DEPDIR)/exp.Po \
209 ./$(DEPDIR)/expm1.Po ./$(DEPDIR)/fabs.Po \
210 ./$(DEPDIR)/for_one.Po ./$(DEPDIR)/for_two.Po \
211 ./$(DEPDIR)/forward.Po ./$(DEPDIR)/forward_dir.Po \
212 ./$(DEPDIR)/forward_order.Po ./$(DEPDIR)/fun_assign.Po \
213 ./$(DEPDIR)/fun_check.Po ./$(DEPDIR)/general.Po \
214 ./$(DEPDIR)/hes_lagrangian.Po ./$(DEPDIR)/hes_lu_det.Po \
215 ./$(DEPDIR)/hes_minor_det.Po ./$(DEPDIR)/hes_times_dir.Po \
216 ./$(DEPDIR)/hessian.Po ./$(DEPDIR)/independent.Po \
217 ./$(DEPDIR)/integer.Po ./$(DEPDIR)/interface2c.Po \
218 ./$(DEPDIR)/interp_onetape.Po ./$(DEPDIR)/interp_retape.Po \
219 ./$(DEPDIR)/jac_lu_det.Po ./$(DEPDIR)/jac_minor_det.Po \
220 ./$(DEPDIR)/jacobian.Po ./$(DEPDIR)/log.Po \
221 ./$(DEPDIR)/log10.Po ./$(DEPDIR)/log1p.Po \
222 ./$(DEPDIR)/lu_ratio.Po ./$(DEPDIR)/lu_vec_ad.Po \
223 ./$(DEPDIR)/lu_vec_ad_ok.Po ./$(DEPDIR)/mul.Po \
224 ./$(DEPDIR)/mul_eq.Po ./$(DEPDIR)/mul_level.Po \
225 ./$(DEPDIR)/mul_level_adolc.Po \
226 ./$(DEPDIR)/mul_level_adolc_ode.Po \
227 ./$(DEPDIR)/mul_level_ode.Po ./$(DEPDIR)/near_equal_ext.Po \
228 ./$(DEPDIR)/new_dynamic.Po ./$(DEPDIR)/num_limits.Po \
229 ./$(DEPDIR)/number_skip.Po ./$(DEPDIR)/numeric_type.Po \
230 ./$(DEPDIR)/ode_stiff.Po ./$(DEPDIR)/opt_val_hes.Po \
231 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/pow.Po ./$(DEPDIR)/pow_int.Po \
232 ./$(DEPDIR)/print_for.Po ./$(DEPDIR)/rev_one.Po \
233 ./$(DEPDIR)/rev_two.Po ./$(DEPDIR)/reverse_checkpoint.Po \
234 ./$(DEPDIR)/reverse_one.Po ./$(DEPDIR)/reverse_three.Po \
235 ./$(DEPDIR)/reverse_two.Po ./$(DEPDIR)/rosen_34.Po \
236 ./$(DEPDIR)/runge45_2.Po ./$(DEPDIR)/seq_property.Po \
237 ./$(DEPDIR)/sign.Po ./$(DEPDIR)/sin.Po ./$(DEPDIR)/sinh.Po \
238 ./$(DEPDIR)/sqrt.Po ./$(DEPDIR)/stack_machine.Po \
239 ./$(DEPDIR)/sub.Po ./$(DEPDIR)/sub_eq.Po ./$(DEPDIR)/tan.Po \
240 ./$(DEPDIR)/tanh.Po ./$(DEPDIR)/tape_index.Po \
241 ./$(DEPDIR)/taylor_ode.Po ./$(DEPDIR)/unary_minus.Po \
242 ./$(DEPDIR)/unary_plus.Po ./$(DEPDIR)/value.Po \
243 ./$(DEPDIR)/var2par.Po ./$(DEPDIR)/vec_ad.Po
191244 am__mv = mv -f
192245 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
193246 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
577630 *config.status*) \
578631 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
579632 *) \
580 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
581 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
633 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
634 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
582635 esac;
583636
584637 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
603656 distclean-compile:
604657 -rm -f *.tab.c
605658
606 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abort_recording.Po@am__quote@
607 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acos.Po@am__quote@
608 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acosh.Po@am__quote@
609 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_assign.Po@am__quote@
610 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_ctor.Po@am__quote@
611 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_fun.Po@am__quote@
612 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_in_c.Po@am__quote@
613 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_input.Po@am__quote@
614 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_output.Po@am__quote@
615 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add.Po@am__quote@
616 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_eq.Po@am__quote@
617 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asin.Po@am__quote@
618 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asinh.Po@am__quote@
619 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan.Po@am__quote@
620 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan2.Po@am__quote@
621 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atanh.Po@am__quote@
622 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/azmul.Po@am__quote@
623 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@
624 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_require.Po@am__quote@
625 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bender_quad.Po@am__quote@
626 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bool_fun.Po@am__quote@
627 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/capacity_order.Po@am__quote@
628 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/change_param.Po@am__quote@
629 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_for_nan.Po@am__quote@
630 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@
631 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_change.Po@am__quote@
632 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/complex_poly.Po@am__quote@
633 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/con_dyn_var.Po@am__quote@
634 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp.Po@am__quote@
635 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cos.Po@am__quote@
636 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cosh.Po@am__quote@
637 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div.Po@am__quote@
638 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_eq.Po@am__quote@
639 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_array.Po@am__quote@
640 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_det.Po@am__quote@
641 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/equal_op_seq.Po@am__quote@
642 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf.Po@am__quote@
643 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erfc.Po@am__quote@
644 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp.Po@am__quote@
645 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expm1.Po@am__quote@
646 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fabs.Po@am__quote@
647 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_one.Po@am__quote@
648 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_two.Po@am__quote@
649 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@
650 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_dir.Po@am__quote@
651 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_order.Po@am__quote@
652 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_assign.Po@am__quote@
653 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_check.Po@am__quote@
654 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/general.Po@am__quote@
655 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_lagrangian.Po@am__quote@
656 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_lu_det.Po@am__quote@
657 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_minor_det.Po@am__quote@
658 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_times_dir.Po@am__quote@
659 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hessian.Po@am__quote@
660 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/independent.Po@am__quote@
661 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integer.Po@am__quote@
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface2c.Po@am__quote@
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interp_onetape.Po@am__quote@
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interp_retape.Po@am__quote@
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_lu_det.Po@am__quote@
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_minor_det.Po@am__quote@
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jacobian.Po@am__quote@
668 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@
669 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log10.Po@am__quote@
670 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log1p.Po@am__quote@
671 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_ratio.Po@am__quote@
672 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_vec_ad.Po@am__quote@
673 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_vec_ad_ok.Po@am__quote@
674 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul.Po@am__quote@
675 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_eq.Po@am__quote@
676 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@
677 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_adolc.Po@am__quote@
678 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_adolc_ode.Po@am__quote@
679 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_ode.Po@am__quote@
680 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal_ext.Po@am__quote@
681 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new_dynamic.Po@am__quote@
682 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/num_limits.Po@am__quote@
683 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/number_skip.Po@am__quote@
684 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/numeric_type.Po@am__quote@
685 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_stiff.Po@am__quote@
686 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_val_hes.Po@am__quote@
687 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
688 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow.Po@am__quote@
689 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_int.Po@am__quote@
690 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@
691 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_one.Po@am__quote@
692 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_two.Po@am__quote@
693 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_checkpoint.Po@am__quote@
694 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_one.Po@am__quote@
695 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_three.Po@am__quote@
696 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_two.Po@am__quote@
697 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rosen_34.Po@am__quote@
698 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge45_2.Po@am__quote@
699 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/seq_property.Po@am__quote@
700 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sign.Po@am__quote@
701 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin.Po@am__quote@
702 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sinh.Po@am__quote@
703 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqrt.Po@am__quote@
704 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stack_machine.Po@am__quote@
705 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub.Po@am__quote@
706 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_eq.Po@am__quote@
707 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tan.Po@am__quote@
708 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tanh.Po@am__quote@
709 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tape_index.Po@am__quote@
710 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taylor_ode.Po@am__quote@
711 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unary_minus.Po@am__quote@
712 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unary_plus.Po@am__quote@
713 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@
714 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/var2par.Po@am__quote@
715 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad.Po@am__quote@
659 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/abort_recording.Po@am__quote@ # am--include-marker
660 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acos.Po@am__quote@ # am--include-marker
661 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acosh.Po@am__quote@ # am--include-marker
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_assign.Po@am__quote@ # am--include-marker
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_ctor.Po@am__quote@ # am--include-marker
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_fun.Po@am__quote@ # am--include-marker
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_in_c.Po@am__quote@ # am--include-marker
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_input.Po@am__quote@ # am--include-marker
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_output.Po@am__quote@ # am--include-marker
668 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add.Po@am__quote@ # am--include-marker
669 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_eq.Po@am__quote@ # am--include-marker
670 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asin.Po@am__quote@ # am--include-marker
671 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asinh.Po@am__quote@ # am--include-marker
672 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan.Po@am__quote@ # am--include-marker
673 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan2.Po@am__quote@ # am--include-marker
674 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atanh.Po@am__quote@ # am--include-marker
675 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/azmul.Po@am__quote@ # am--include-marker
676 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@ # am--include-marker
677 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_require.Po@am__quote@ # am--include-marker
678 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bender_quad.Po@am__quote@ # am--include-marker
679 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bool_fun.Po@am__quote@ # am--include-marker
680 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/capacity_order.Po@am__quote@ # am--include-marker
681 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/change_param.Po@am__quote@ # am--include-marker
682 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_for_nan.Po@am__quote@ # am--include-marker
683 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@ # am--include-marker
684 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_change.Po@am__quote@ # am--include-marker
685 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/complex_poly.Po@am__quote@ # am--include-marker
686 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/con_dyn_var.Po@am__quote@ # am--include-marker
687 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp.Po@am__quote@ # am--include-marker
688 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cos.Po@am__quote@ # am--include-marker
689 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cosh.Po@am__quote@ # am--include-marker
690 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div.Po@am__quote@ # am--include-marker
691 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_eq.Po@am__quote@ # am--include-marker
692 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_array.Po@am__quote@ # am--include-marker
693 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_det.Po@am__quote@ # am--include-marker
694 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/equal_op_seq.Po@am__quote@ # am--include-marker
695 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf.Po@am__quote@ # am--include-marker
696 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erfc.Po@am__quote@ # am--include-marker
697 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp.Po@am__quote@ # am--include-marker
698 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expm1.Po@am__quote@ # am--include-marker
699 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fabs.Po@am__quote@ # am--include-marker
700 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_one.Po@am__quote@ # am--include-marker
701 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_two.Po@am__quote@ # am--include-marker
702 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@ # am--include-marker
703 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_dir.Po@am__quote@ # am--include-marker
704 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_order.Po@am__quote@ # am--include-marker
705 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_assign.Po@am__quote@ # am--include-marker
706 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_check.Po@am__quote@ # am--include-marker
707 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/general.Po@am__quote@ # am--include-marker
708 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_lagrangian.Po@am__quote@ # am--include-marker
709 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_lu_det.Po@am__quote@ # am--include-marker
710 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_minor_det.Po@am__quote@ # am--include-marker
711 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_times_dir.Po@am__quote@ # am--include-marker
712 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hessian.Po@am__quote@ # am--include-marker
713 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/independent.Po@am__quote@ # am--include-marker
714 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integer.Po@am__quote@ # am--include-marker
715 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface2c.Po@am__quote@ # am--include-marker
716 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interp_onetape.Po@am__quote@ # am--include-marker
717 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interp_retape.Po@am__quote@ # am--include-marker
718 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_lu_det.Po@am__quote@ # am--include-marker
719 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jac_minor_det.Po@am__quote@ # am--include-marker
720 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jacobian.Po@am__quote@ # am--include-marker
721 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@ # am--include-marker
722 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log10.Po@am__quote@ # am--include-marker
723 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log1p.Po@am__quote@ # am--include-marker
724 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_ratio.Po@am__quote@ # am--include-marker
725 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_vec_ad.Po@am__quote@ # am--include-marker
726 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_vec_ad_ok.Po@am__quote@ # am--include-marker
727 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul.Po@am__quote@ # am--include-marker
728 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_eq.Po@am__quote@ # am--include-marker
729 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@ # am--include-marker
730 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_adolc.Po@am__quote@ # am--include-marker
731 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_adolc_ode.Po@am__quote@ # am--include-marker
732 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level_ode.Po@am__quote@ # am--include-marker
733 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal_ext.Po@am__quote@ # am--include-marker
734 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new_dynamic.Po@am__quote@ # am--include-marker
735 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/num_limits.Po@am__quote@ # am--include-marker
736 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/number_skip.Po@am__quote@ # am--include-marker
737 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/numeric_type.Po@am__quote@ # am--include-marker
738 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_stiff.Po@am__quote@ # am--include-marker
739 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opt_val_hes.Po@am__quote@ # am--include-marker
740 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
741 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow.Po@am__quote@ # am--include-marker
742 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_int.Po@am__quote@ # am--include-marker
743 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@ # am--include-marker
744 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_one.Po@am__quote@ # am--include-marker
745 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_two.Po@am__quote@ # am--include-marker
746 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_checkpoint.Po@am__quote@ # am--include-marker
747 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_one.Po@am__quote@ # am--include-marker
748 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_three.Po@am__quote@ # am--include-marker
749 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_two.Po@am__quote@ # am--include-marker
750 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rosen_34.Po@am__quote@ # am--include-marker
751 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge45_2.Po@am__quote@ # am--include-marker
752 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/seq_property.Po@am__quote@ # am--include-marker
753 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sign.Po@am__quote@ # am--include-marker
754 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin.Po@am__quote@ # am--include-marker
755 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sinh.Po@am__quote@ # am--include-marker
756 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqrt.Po@am__quote@ # am--include-marker
757 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stack_machine.Po@am__quote@ # am--include-marker
758 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub.Po@am__quote@ # am--include-marker
759 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_eq.Po@am__quote@ # am--include-marker
760 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tan.Po@am__quote@ # am--include-marker
761 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tanh.Po@am__quote@ # am--include-marker
762 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tape_index.Po@am__quote@ # am--include-marker
763 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taylor_ode.Po@am__quote@ # am--include-marker
764 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unary_minus.Po@am__quote@ # am--include-marker
765 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unary_plus.Po@am__quote@ # am--include-marker
766 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@ # am--include-marker
767 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/var2par.Po@am__quote@ # am--include-marker
768 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad.Po@am__quote@ # am--include-marker
769
770 $(am__depfiles_remade):
771 @$(MKDIR_P) $(@D)
772 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
773
774 am--depfiles: $(am__depfiles_remade)
716775
717776 .cpp.o:
718777 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
782841 distclean-tags:
783842 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
784843
785 distdir: $(DISTFILES)
844 distdir: $(BUILT_SOURCES)
845 $(MAKE) $(AM_MAKEFLAGS) distdir-am
846
847 distdir-am: $(DISTFILES)
786848 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
787849 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
788850 list='$(DISTFILES)'; \
852914 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
853915
854916 distclean: distclean-am
855 -rm -rf ./$(DEPDIR)
917 -rm -f ./$(DEPDIR)/abort_recording.Po
918 -rm -f ./$(DEPDIR)/acos.Po
919 -rm -f ./$(DEPDIR)/acosh.Po
920 -rm -f ./$(DEPDIR)/ad_assign.Po
921 -rm -f ./$(DEPDIR)/ad_ctor.Po
922 -rm -f ./$(DEPDIR)/ad_fun.Po
923 -rm -f ./$(DEPDIR)/ad_in_c.Po
924 -rm -f ./$(DEPDIR)/ad_input.Po
925 -rm -f ./$(DEPDIR)/ad_output.Po
926 -rm -f ./$(DEPDIR)/add.Po
927 -rm -f ./$(DEPDIR)/add_eq.Po
928 -rm -f ./$(DEPDIR)/asin.Po
929 -rm -f ./$(DEPDIR)/asinh.Po
930 -rm -f ./$(DEPDIR)/atan.Po
931 -rm -f ./$(DEPDIR)/atan2.Po
932 -rm -f ./$(DEPDIR)/atanh.Po
933 -rm -f ./$(DEPDIR)/azmul.Po
934 -rm -f ./$(DEPDIR)/base2ad.Po
935 -rm -f ./$(DEPDIR)/base_require.Po
936 -rm -f ./$(DEPDIR)/bender_quad.Po
937 -rm -f ./$(DEPDIR)/bool_fun.Po
938 -rm -f ./$(DEPDIR)/capacity_order.Po
939 -rm -f ./$(DEPDIR)/change_param.Po
940 -rm -f ./$(DEPDIR)/check_for_nan.Po
941 -rm -f ./$(DEPDIR)/compare.Po
942 -rm -f ./$(DEPDIR)/compare_change.Po
943 -rm -f ./$(DEPDIR)/complex_poly.Po
944 -rm -f ./$(DEPDIR)/con_dyn_var.Po
945 -rm -f ./$(DEPDIR)/cond_exp.Po
946 -rm -f ./$(DEPDIR)/cos.Po
947 -rm -f ./$(DEPDIR)/cosh.Po
948 -rm -f ./$(DEPDIR)/div.Po
949 -rm -f ./$(DEPDIR)/div_eq.Po
950 -rm -f ./$(DEPDIR)/eigen_array.Po
951 -rm -f ./$(DEPDIR)/eigen_det.Po
952 -rm -f ./$(DEPDIR)/equal_op_seq.Po
953 -rm -f ./$(DEPDIR)/erf.Po
954 -rm -f ./$(DEPDIR)/erfc.Po
955 -rm -f ./$(DEPDIR)/exp.Po
956 -rm -f ./$(DEPDIR)/expm1.Po
957 -rm -f ./$(DEPDIR)/fabs.Po
958 -rm -f ./$(DEPDIR)/for_one.Po
959 -rm -f ./$(DEPDIR)/for_two.Po
960 -rm -f ./$(DEPDIR)/forward.Po
961 -rm -f ./$(DEPDIR)/forward_dir.Po
962 -rm -f ./$(DEPDIR)/forward_order.Po
963 -rm -f ./$(DEPDIR)/fun_assign.Po
964 -rm -f ./$(DEPDIR)/fun_check.Po
965 -rm -f ./$(DEPDIR)/general.Po
966 -rm -f ./$(DEPDIR)/hes_lagrangian.Po
967 -rm -f ./$(DEPDIR)/hes_lu_det.Po
968 -rm -f ./$(DEPDIR)/hes_minor_det.Po
969 -rm -f ./$(DEPDIR)/hes_times_dir.Po
970 -rm -f ./$(DEPDIR)/hessian.Po
971 -rm -f ./$(DEPDIR)/independent.Po
972 -rm -f ./$(DEPDIR)/integer.Po
973 -rm -f ./$(DEPDIR)/interface2c.Po
974 -rm -f ./$(DEPDIR)/interp_onetape.Po
975 -rm -f ./$(DEPDIR)/interp_retape.Po
976 -rm -f ./$(DEPDIR)/jac_lu_det.Po
977 -rm -f ./$(DEPDIR)/jac_minor_det.Po
978 -rm -f ./$(DEPDIR)/jacobian.Po
979 -rm -f ./$(DEPDIR)/log.Po
980 -rm -f ./$(DEPDIR)/log10.Po
981 -rm -f ./$(DEPDIR)/log1p.Po
982 -rm -f ./$(DEPDIR)/lu_ratio.Po
983 -rm -f ./$(DEPDIR)/lu_vec_ad.Po
984 -rm -f ./$(DEPDIR)/lu_vec_ad_ok.Po
985 -rm -f ./$(DEPDIR)/mul.Po
986 -rm -f ./$(DEPDIR)/mul_eq.Po
987 -rm -f ./$(DEPDIR)/mul_level.Po
988 -rm -f ./$(DEPDIR)/mul_level_adolc.Po
989 -rm -f ./$(DEPDIR)/mul_level_adolc_ode.Po
990 -rm -f ./$(DEPDIR)/mul_level_ode.Po
991 -rm -f ./$(DEPDIR)/near_equal_ext.Po
992 -rm -f ./$(DEPDIR)/new_dynamic.Po
993 -rm -f ./$(DEPDIR)/num_limits.Po
994 -rm -f ./$(DEPDIR)/number_skip.Po
995 -rm -f ./$(DEPDIR)/numeric_type.Po
996 -rm -f ./$(DEPDIR)/ode_stiff.Po
997 -rm -f ./$(DEPDIR)/opt_val_hes.Po
998 -rm -f ./$(DEPDIR)/poly.Po
999 -rm -f ./$(DEPDIR)/pow.Po
1000 -rm -f ./$(DEPDIR)/pow_int.Po
1001 -rm -f ./$(DEPDIR)/print_for.Po
1002 -rm -f ./$(DEPDIR)/rev_one.Po
1003 -rm -f ./$(DEPDIR)/rev_two.Po
1004 -rm -f ./$(DEPDIR)/reverse_checkpoint.Po
1005 -rm -f ./$(DEPDIR)/reverse_one.Po
1006 -rm -f ./$(DEPDIR)/reverse_three.Po
1007 -rm -f ./$(DEPDIR)/reverse_two.Po
1008 -rm -f ./$(DEPDIR)/rosen_34.Po
1009 -rm -f ./$(DEPDIR)/runge45_2.Po
1010 -rm -f ./$(DEPDIR)/seq_property.Po
1011 -rm -f ./$(DEPDIR)/sign.Po
1012 -rm -f ./$(DEPDIR)/sin.Po
1013 -rm -f ./$(DEPDIR)/sinh.Po
1014 -rm -f ./$(DEPDIR)/sqrt.Po
1015 -rm -f ./$(DEPDIR)/stack_machine.Po
1016 -rm -f ./$(DEPDIR)/sub.Po
1017 -rm -f ./$(DEPDIR)/sub_eq.Po
1018 -rm -f ./$(DEPDIR)/tan.Po
1019 -rm -f ./$(DEPDIR)/tanh.Po
1020 -rm -f ./$(DEPDIR)/tape_index.Po
1021 -rm -f ./$(DEPDIR)/taylor_ode.Po
1022 -rm -f ./$(DEPDIR)/unary_minus.Po
1023 -rm -f ./$(DEPDIR)/unary_plus.Po
1024 -rm -f ./$(DEPDIR)/value.Po
1025 -rm -f ./$(DEPDIR)/var2par.Po
1026 -rm -f ./$(DEPDIR)/vec_ad.Po
8561027 -rm -f makefile
8571028 distclean-am: clean-am distclean-compile distclean-generic \
8581029 distclean-tags
8981069 installcheck-am:
8991070
9001071 maintainer-clean: maintainer-clean-am
901 -rm -rf ./$(DEPDIR)
1072 -rm -f ./$(DEPDIR)/abort_recording.Po
1073 -rm -f ./$(DEPDIR)/acos.Po
1074 -rm -f ./$(DEPDIR)/acosh.Po
1075 -rm -f ./$(DEPDIR)/ad_assign.Po
1076 -rm -f ./$(DEPDIR)/ad_ctor.Po
1077 -rm -f ./$(DEPDIR)/ad_fun.Po
1078 -rm -f ./$(DEPDIR)/ad_in_c.Po
1079 -rm -f ./$(DEPDIR)/ad_input.Po
1080 -rm -f ./$(DEPDIR)/ad_output.Po
1081 -rm -f ./$(DEPDIR)/add.Po
1082 -rm -f ./$(DEPDIR)/add_eq.Po
1083 -rm -f ./$(DEPDIR)/asin.Po
1084 -rm -f ./$(DEPDIR)/asinh.Po
1085 -rm -f ./$(DEPDIR)/atan.Po
1086 -rm -f ./$(DEPDIR)/atan2.Po
1087 -rm -f ./$(DEPDIR)/atanh.Po
1088 -rm -f ./$(DEPDIR)/azmul.Po
1089 -rm -f ./$(DEPDIR)/base2ad.Po
1090 -rm -f ./$(DEPDIR)/base_require.Po
1091 -rm -f ./$(DEPDIR)/bender_quad.Po
1092 -rm -f ./$(DEPDIR)/bool_fun.Po
1093 -rm -f ./$(DEPDIR)/capacity_order.Po
1094 -rm -f ./$(DEPDIR)/change_param.Po
1095 -rm -f ./$(DEPDIR)/check_for_nan.Po
1096 -rm -f ./$(DEPDIR)/compare.Po
1097 -rm -f ./$(DEPDIR)/compare_change.Po
1098 -rm -f ./$(DEPDIR)/complex_poly.Po
1099 -rm -f ./$(DEPDIR)/con_dyn_var.Po
1100 -rm -f ./$(DEPDIR)/cond_exp.Po
1101 -rm -f ./$(DEPDIR)/cos.Po
1102 -rm -f ./$(DEPDIR)/cosh.Po
1103 -rm -f ./$(DEPDIR)/div.Po
1104 -rm -f ./$(DEPDIR)/div_eq.Po
1105 -rm -f ./$(DEPDIR)/eigen_array.Po
1106 -rm -f ./$(DEPDIR)/eigen_det.Po
1107 -rm -f ./$(DEPDIR)/equal_op_seq.Po
1108 -rm -f ./$(DEPDIR)/erf.Po
1109 -rm -f ./$(DEPDIR)/erfc.Po
1110 -rm -f ./$(DEPDIR)/exp.Po
1111 -rm -f ./$(DEPDIR)/expm1.Po
1112 -rm -f ./$(DEPDIR)/fabs.Po
1113 -rm -f ./$(DEPDIR)/for_one.Po
1114 -rm -f ./$(DEPDIR)/for_two.Po
1115 -rm -f ./$(DEPDIR)/forward.Po
1116 -rm -f ./$(DEPDIR)/forward_dir.Po
1117 -rm -f ./$(DEPDIR)/forward_order.Po
1118 -rm -f ./$(DEPDIR)/fun_assign.Po
1119 -rm -f ./$(DEPDIR)/fun_check.Po
1120 -rm -f ./$(DEPDIR)/general.Po
1121 -rm -f ./$(DEPDIR)/hes_lagrangian.Po
1122 -rm -f ./$(DEPDIR)/hes_lu_det.Po
1123 -rm -f ./$(DEPDIR)/hes_minor_det.Po
1124 -rm -f ./$(DEPDIR)/hes_times_dir.Po
1125 -rm -f ./$(DEPDIR)/hessian.Po
1126 -rm -f ./$(DEPDIR)/independent.Po
1127 -rm -f ./$(DEPDIR)/integer.Po
1128 -rm -f ./$(DEPDIR)/interface2c.Po
1129 -rm -f ./$(DEPDIR)/interp_onetape.Po
1130 -rm -f ./$(DEPDIR)/interp_retape.Po
1131 -rm -f ./$(DEPDIR)/jac_lu_det.Po
1132 -rm -f ./$(DEPDIR)/jac_minor_det.Po
1133 -rm -f ./$(DEPDIR)/jacobian.Po
1134 -rm -f ./$(DEPDIR)/log.Po
1135 -rm -f ./$(DEPDIR)/log10.Po
1136 -rm -f ./$(DEPDIR)/log1p.Po
1137 -rm -f ./$(DEPDIR)/lu_ratio.Po
1138 -rm -f ./$(DEPDIR)/lu_vec_ad.Po
1139 -rm -f ./$(DEPDIR)/lu_vec_ad_ok.Po
1140 -rm -f ./$(DEPDIR)/mul.Po
1141 -rm -f ./$(DEPDIR)/mul_eq.Po
1142 -rm -f ./$(DEPDIR)/mul_level.Po
1143 -rm -f ./$(DEPDIR)/mul_level_adolc.Po
1144 -rm -f ./$(DEPDIR)/mul_level_adolc_ode.Po
1145 -rm -f ./$(DEPDIR)/mul_level_ode.Po
1146 -rm -f ./$(DEPDIR)/near_equal_ext.Po
1147 -rm -f ./$(DEPDIR)/new_dynamic.Po
1148 -rm -f ./$(DEPDIR)/num_limits.Po
1149 -rm -f ./$(DEPDIR)/number_skip.Po
1150 -rm -f ./$(DEPDIR)/numeric_type.Po
1151 -rm -f ./$(DEPDIR)/ode_stiff.Po
1152 -rm -f ./$(DEPDIR)/opt_val_hes.Po
1153 -rm -f ./$(DEPDIR)/poly.Po
1154 -rm -f ./$(DEPDIR)/pow.Po
1155 -rm -f ./$(DEPDIR)/pow_int.Po
1156 -rm -f ./$(DEPDIR)/print_for.Po
1157 -rm -f ./$(DEPDIR)/rev_one.Po
1158 -rm -f ./$(DEPDIR)/rev_two.Po
1159 -rm -f ./$(DEPDIR)/reverse_checkpoint.Po
1160 -rm -f ./$(DEPDIR)/reverse_one.Po
1161 -rm -f ./$(DEPDIR)/reverse_three.Po
1162 -rm -f ./$(DEPDIR)/reverse_two.Po
1163 -rm -f ./$(DEPDIR)/rosen_34.Po
1164 -rm -f ./$(DEPDIR)/runge45_2.Po
1165 -rm -f ./$(DEPDIR)/seq_property.Po
1166 -rm -f ./$(DEPDIR)/sign.Po
1167 -rm -f ./$(DEPDIR)/sin.Po
1168 -rm -f ./$(DEPDIR)/sinh.Po
1169 -rm -f ./$(DEPDIR)/sqrt.Po
1170 -rm -f ./$(DEPDIR)/stack_machine.Po
1171 -rm -f ./$(DEPDIR)/sub.Po
1172 -rm -f ./$(DEPDIR)/sub_eq.Po
1173 -rm -f ./$(DEPDIR)/tan.Po
1174 -rm -f ./$(DEPDIR)/tanh.Po
1175 -rm -f ./$(DEPDIR)/tape_index.Po
1176 -rm -f ./$(DEPDIR)/taylor_ode.Po
1177 -rm -f ./$(DEPDIR)/unary_minus.Po
1178 -rm -f ./$(DEPDIR)/unary_plus.Po
1179 -rm -f ./$(DEPDIR)/value.Po
1180 -rm -f ./$(DEPDIR)/var2par.Po
1181 -rm -f ./$(DEPDIR)/vec_ad.Po
9021182 -rm -f makefile
9031183 maintainer-clean-am: distclean-am maintainer-clean-generic
9041184
9181198
9191199 .MAKE: check-am install-am install-strip
9201200
921 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
1201 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
9221202 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
9231203 distclean distclean-compile distclean-generic distclean-tags \
9241204 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
113113 am__v_at_1 =
114114 DEFAULT_INCLUDES =
115115 depcomp = $(SHELL) $(top_srcdir)/depcomp
116 am__depfiles_maybe = depfiles
116 am__maybe_remake_depfiles = depfiles
117 am__depfiles_remade = ./$(DEPDIR)/get_started.Po
117118 am__mv = mv -f
118119 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
119120 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
362363 *config.status*) \
363364 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
364365 *) \
365 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
366 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
366 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
367 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
367368 esac;
368369
369370 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
388389 distclean-compile:
389390 -rm -f *.tab.c
390391
391 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
392 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
393
394 $(am__depfiles_remade):
395 @$(MKDIR_P) $(@D)
396 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
397
398 am--depfiles: $(am__depfiles_remade)
392399
393400 .cpp.o:
394401 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
458465 distclean-tags:
459466 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
460467
461 distdir: $(DISTFILES)
468 distdir: $(BUILT_SOURCES)
469 $(MAKE) $(AM_MAKEFLAGS) distdir-am
470
471 distdir-am: $(DISTFILES)
462472 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
463473 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
464474 list='$(DISTFILES)'; \
528538 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
529539
530540 distclean: distclean-am
531 -rm -rf ./$(DEPDIR)
541 -rm -f ./$(DEPDIR)/get_started.Po
532542 -rm -f makefile
533543 distclean-am: clean-am distclean-compile distclean-generic \
534544 distclean-tags
574584 installcheck-am:
575585
576586 maintainer-clean: maintainer-clean-am
577 -rm -rf ./$(DEPDIR)
587 -rm -f ./$(DEPDIR)/get_started.Po
578588 -rm -f makefile
579589 maintainer-clean-am: distclean-am maintainer-clean-generic
580590
594604
595605 .MAKE: check-am install-am install-strip
596606
597 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
607 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
598608 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
599609 distclean distclean-compile distclean-generic distclean-tags \
600610 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/get_started.Po \
122 ./$(DEPDIR)/ipopt_solve.Po ./$(DEPDIR)/ode_inverse.Po \
123 ./$(DEPDIR)/retape.Po
121124 am__mv = mv -f
122125 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123126 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
380383 *config.status*) \
381384 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
382385 *) \
383 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
384 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
385388 esac;
386389
387390 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
408411 distclean-compile:
409412 -rm -f *.tab.c
410413
411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipopt_solve.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_inverse.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipopt_solve.Po@am__quote@ # am--include-marker
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_inverse.Po@am__quote@ # am--include-marker
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/retape.Po@am__quote@ # am--include-marker
418
419 $(am__depfiles_remade):
420 @$(MKDIR_P) $(@D)
421 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
422
423 am--depfiles: $(am__depfiles_remade)
415424
416425 .cpp.o:
417426 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
481490 distclean-tags:
482491 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
483492
484 distdir: $(DISTFILES)
493 distdir: $(BUILT_SOURCES)
494 $(MAKE) $(AM_MAKEFLAGS) distdir-am
495
496 distdir-am: $(DISTFILES)
485497 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
486498 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
487499 list='$(DISTFILES)'; \
551563 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
552564
553565 distclean: distclean-am
554 -rm -rf ./$(DEPDIR)
566 -rm -f ./$(DEPDIR)/get_started.Po
567 -rm -f ./$(DEPDIR)/ipopt_solve.Po
568 -rm -f ./$(DEPDIR)/ode_inverse.Po
569 -rm -f ./$(DEPDIR)/retape.Po
555570 -rm -f makefile
556571 distclean-am: clean-am distclean-compile distclean-generic \
557572 distclean-tags
597612 installcheck-am:
598613
599614 maintainer-clean: maintainer-clean-am
600 -rm -rf ./$(DEPDIR)
615 -rm -f ./$(DEPDIR)/get_started.Po
616 -rm -f ./$(DEPDIR)/ipopt_solve.Po
617 -rm -f ./$(DEPDIR)/ode_inverse.Po
618 -rm -f ./$(DEPDIR)/retape.Po
601619 -rm -f makefile
602620 maintainer-clean-am: distclean-am maintainer-clean-generic
603621
617635
618636 .MAKE: check-am install-am install-strip
619637
620 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
638 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
621639 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
622640 distclean distclean-compile distclean-generic distclean-tags \
623641 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
141141 am__v_at_1 =
142142 DEFAULT_INCLUDES =
143143 depcomp = $(SHELL) $(top_srcdir)/depcomp
144 am__depfiles_maybe = depfiles
144 am__maybe_remake_depfiles = depfiles
145 am__depfiles_remade = ./$(DEPDIR)/harmonic.Po \
146 ./$(DEPDIR)/multi_atomic.Po ./$(DEPDIR)/multi_checkpoint.Po \
147 ./$(DEPDIR)/multi_newton.Po ./$(DEPDIR)/team_example.Po \
148 ./$(DEPDIR)/thread_test.Po bthread/$(DEPDIR)/a11c_bthread.Po \
149 bthread/$(DEPDIR)/simple_ad_bthread.Po \
150 bthread/$(DEPDIR)/team_bthread.Po \
151 openmp/$(DEPDIR)/a11c_openmp.Po \
152 openmp/$(DEPDIR)/simple_ad_openmp.Po \
153 openmp/$(DEPDIR)/team_openmp.Po \
154 pthread/$(DEPDIR)/a11c_pthread.Po \
155 pthread/$(DEPDIR)/simple_ad_pthread.Po \
156 pthread/$(DEPDIR)/team_pthread.Po
145157 am__mv = mv -f
146158 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
147159 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
453465 *config.status*) \
454466 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
455467 *) \
456 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
457 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
468 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
469 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
458470 esac;
459471
460472 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
526538 distclean-compile:
527539 -rm -f *.tab.c
528540
529 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/harmonic.Po@am__quote@
530 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_atomic.Po@am__quote@
531 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_checkpoint.Po@am__quote@
532 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_newton.Po@am__quote@
533 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/team_example.Po@am__quote@
534 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread_test.Po@am__quote@
535 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/a11c_bthread.Po@am__quote@
536 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/simple_ad_bthread.Po@am__quote@
537 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/team_bthread.Po@am__quote@
538 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/a11c_openmp.Po@am__quote@
539 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/simple_ad_openmp.Po@am__quote@
540 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/team_openmp.Po@am__quote@
541 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/a11c_pthread.Po@am__quote@
542 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/simple_ad_pthread.Po@am__quote@
543 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/team_pthread.Po@am__quote@
541 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/harmonic.Po@am__quote@ # am--include-marker
542 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_atomic.Po@am__quote@ # am--include-marker
543 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_checkpoint.Po@am__quote@ # am--include-marker
544 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi_newton.Po@am__quote@ # am--include-marker
545 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/team_example.Po@am__quote@ # am--include-marker
546 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread_test.Po@am__quote@ # am--include-marker
547 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/a11c_bthread.Po@am__quote@ # am--include-marker
548 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/simple_ad_bthread.Po@am__quote@ # am--include-marker
549 @AMDEP_TRUE@@am__include@ @am__quote@bthread/$(DEPDIR)/team_bthread.Po@am__quote@ # am--include-marker
550 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/a11c_openmp.Po@am__quote@ # am--include-marker
551 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/simple_ad_openmp.Po@am__quote@ # am--include-marker
552 @AMDEP_TRUE@@am__include@ @am__quote@openmp/$(DEPDIR)/team_openmp.Po@am__quote@ # am--include-marker
553 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/a11c_pthread.Po@am__quote@ # am--include-marker
554 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/simple_ad_pthread.Po@am__quote@ # am--include-marker
555 @AMDEP_TRUE@@am__include@ @am__quote@pthread/$(DEPDIR)/team_pthread.Po@am__quote@ # am--include-marker
556
557 $(am__depfiles_remade):
558 @$(MKDIR_P) $(@D)
559 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
560
561 am--depfiles: $(am__depfiles_remade)
544562
545563 .cpp.o:
546564 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
610628 distclean-tags:
611629 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
612630
613 distdir: $(DISTFILES)
631 distdir: $(BUILT_SOURCES)
632 $(MAKE) $(AM_MAKEFLAGS) distdir-am
633
634 distdir-am: $(DISTFILES)
614635 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
615636 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
616637 list='$(DISTFILES)'; \
686707 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
687708
688709 distclean: distclean-am
689 -rm -rf ./$(DEPDIR) bthread/$(DEPDIR) openmp/$(DEPDIR) pthread/$(DEPDIR)
710 -rm -f ./$(DEPDIR)/harmonic.Po
711 -rm -f ./$(DEPDIR)/multi_atomic.Po
712 -rm -f ./$(DEPDIR)/multi_checkpoint.Po
713 -rm -f ./$(DEPDIR)/multi_newton.Po
714 -rm -f ./$(DEPDIR)/team_example.Po
715 -rm -f ./$(DEPDIR)/thread_test.Po
716 -rm -f bthread/$(DEPDIR)/a11c_bthread.Po
717 -rm -f bthread/$(DEPDIR)/simple_ad_bthread.Po
718 -rm -f bthread/$(DEPDIR)/team_bthread.Po
719 -rm -f openmp/$(DEPDIR)/a11c_openmp.Po
720 -rm -f openmp/$(DEPDIR)/simple_ad_openmp.Po
721 -rm -f openmp/$(DEPDIR)/team_openmp.Po
722 -rm -f pthread/$(DEPDIR)/a11c_pthread.Po
723 -rm -f pthread/$(DEPDIR)/simple_ad_pthread.Po
724 -rm -f pthread/$(DEPDIR)/team_pthread.Po
690725 -rm -f makefile
691726 distclean-am: clean-am distclean-compile distclean-generic \
692727 distclean-tags
732767 installcheck-am:
733768
734769 maintainer-clean: maintainer-clean-am
735 -rm -rf ./$(DEPDIR) bthread/$(DEPDIR) openmp/$(DEPDIR) pthread/$(DEPDIR)
770 -rm -f ./$(DEPDIR)/harmonic.Po
771 -rm -f ./$(DEPDIR)/multi_atomic.Po
772 -rm -f ./$(DEPDIR)/multi_checkpoint.Po
773 -rm -f ./$(DEPDIR)/multi_newton.Po
774 -rm -f ./$(DEPDIR)/team_example.Po
775 -rm -f ./$(DEPDIR)/thread_test.Po
776 -rm -f bthread/$(DEPDIR)/a11c_bthread.Po
777 -rm -f bthread/$(DEPDIR)/simple_ad_bthread.Po
778 -rm -f bthread/$(DEPDIR)/team_bthread.Po
779 -rm -f openmp/$(DEPDIR)/a11c_openmp.Po
780 -rm -f openmp/$(DEPDIR)/simple_ad_openmp.Po
781 -rm -f openmp/$(DEPDIR)/team_openmp.Po
782 -rm -f pthread/$(DEPDIR)/a11c_pthread.Po
783 -rm -f pthread/$(DEPDIR)/simple_ad_pthread.Po
784 -rm -f pthread/$(DEPDIR)/team_pthread.Po
736785 -rm -f makefile
737786 maintainer-clean-am: distclean-am maintainer-clean-generic
738787
752801
753802 .MAKE: check-am install-am install-strip
754803
755 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
804 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
756805 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
757806 distclean distclean-compile distclean-generic distclean-tags \
758807 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
116116 am__v_at_1 =
117117 DEFAULT_INCLUDES =
118118 depcomp = $(SHELL) $(top_srcdir)/depcomp
119 am__depfiles_maybe = depfiles
119 am__maybe_remake_depfiles = depfiles
120 am__depfiles_remade = ./$(DEPDIR)/compare_op.Po \
121 ./$(DEPDIR)/conditional_skip.Po ./$(DEPDIR)/cumulative_sum.Po \
122 ./$(DEPDIR)/forward_active.Po ./$(DEPDIR)/nest_conditional.Po \
123 ./$(DEPDIR)/optimize.Po ./$(DEPDIR)/print_for.Po \
124 ./$(DEPDIR)/reverse_active.Po
120125 am__mv = mv -f
121126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
122127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
374379 *config.status*) \
375380 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
376381 *) \
377 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
378 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
382 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
383 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
379384 esac;
380385
381386 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
400405 distclean-compile:
401406 -rm -f *.tab.c
402407
403 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_op.Po@am__quote@
404 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conditional_skip.Po@am__quote@
405 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cumulative_sum.Po@am__quote@
406 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_active.Po@am__quote@
407 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nest_conditional.Po@am__quote@
408 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optimize.Po@am__quote@
409 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@
410 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_active.Po@am__quote@
408 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_op.Po@am__quote@ # am--include-marker
409 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conditional_skip.Po@am__quote@ # am--include-marker
410 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cumulative_sum.Po@am__quote@ # am--include-marker
411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_active.Po@am__quote@ # am--include-marker
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nest_conditional.Po@am__quote@ # am--include-marker
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optimize.Po@am__quote@ # am--include-marker
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@ # am--include-marker
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse_active.Po@am__quote@ # am--include-marker
416
417 $(am__depfiles_remade):
418 @$(MKDIR_P) $(@D)
419 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
420
421 am--depfiles: $(am__depfiles_remade)
411422
412423 .cpp.o:
413424 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
477488 distclean-tags:
478489 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
479490
480 distdir: $(DISTFILES)
491 distdir: $(BUILT_SOURCES)
492 $(MAKE) $(AM_MAKEFLAGS) distdir-am
493
494 distdir-am: $(DISTFILES)
481495 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
482496 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
483497 list='$(DISTFILES)'; \
547561 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
548562
549563 distclean: distclean-am
550 -rm -rf ./$(DEPDIR)
564 -rm -f ./$(DEPDIR)/compare_op.Po
565 -rm -f ./$(DEPDIR)/conditional_skip.Po
566 -rm -f ./$(DEPDIR)/cumulative_sum.Po
567 -rm -f ./$(DEPDIR)/forward_active.Po
568 -rm -f ./$(DEPDIR)/nest_conditional.Po
569 -rm -f ./$(DEPDIR)/optimize.Po
570 -rm -f ./$(DEPDIR)/print_for.Po
571 -rm -f ./$(DEPDIR)/reverse_active.Po
551572 -rm -f makefile
552573 distclean-am: clean-am distclean-compile distclean-generic \
553574 distclean-tags
593614 installcheck-am:
594615
595616 maintainer-clean: maintainer-clean-am
596 -rm -rf ./$(DEPDIR)
617 -rm -f ./$(DEPDIR)/compare_op.Po
618 -rm -f ./$(DEPDIR)/conditional_skip.Po
619 -rm -f ./$(DEPDIR)/cumulative_sum.Po
620 -rm -f ./$(DEPDIR)/forward_active.Po
621 -rm -f ./$(DEPDIR)/nest_conditional.Po
622 -rm -f ./$(DEPDIR)/optimize.Po
623 -rm -f ./$(DEPDIR)/print_for.Po
624 -rm -f ./$(DEPDIR)/reverse_active.Po
597625 -rm -f makefile
598626 maintainer-clean-am: distclean-am maintainer-clean-generic
599627
613641
614642 .MAKE: check-am install-am install-strip
615643
616 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
644 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
617645 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
618646 distclean distclean-compile distclean-generic distclean-tags \
619647 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
113113 am__v_at_1 =
114114 DEFAULT_INCLUDES =
115115 depcomp = $(SHELL) $(top_srcdir)/depcomp
116 am__depfiles_maybe = depfiles
116 am__maybe_remake_depfiles = depfiles
117 am__depfiles_remade = ./$(DEPDIR)/print_for.Po
117118 am__mv = mv -f
118119 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
119120 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
365366 *config.status*) \
366367 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
367368 *) \
368 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
369 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
369 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
370 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
370371 esac;
371372
372373 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
391392 distclean-compile:
392393 -rm -f *.tab.c
393394
394 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@
395 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@ # am--include-marker
396
397 $(am__depfiles_remade):
398 @$(MKDIR_P) $(@D)
399 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
400
401 am--depfiles: $(am__depfiles_remade)
395402
396403 .cpp.o:
397404 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
461468 distclean-tags:
462469 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
463470
464 distdir: $(DISTFILES)
471 distdir: $(BUILT_SOURCES)
472 $(MAKE) $(AM_MAKEFLAGS) distdir-am
473
474 distdir-am: $(DISTFILES)
465475 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
466476 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
467477 list='$(DISTFILES)'; \
531541 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
532542
533543 distclean: distclean-am
534 -rm -rf ./$(DEPDIR)
544 -rm -f ./$(DEPDIR)/print_for.Po
535545 -rm -f makefile
536546 distclean-am: clean-am distclean-compile distclean-generic \
537547 distclean-tags
577587 installcheck-am:
578588
579589 maintainer-clean: maintainer-clean-am
580 -rm -rf ./$(DEPDIR)
590 -rm -f ./$(DEPDIR)/print_for.Po
581591 -rm -f makefile
582592 maintainer-clean-am: distclean-am maintainer-clean-generic
583593
597607
598608 .MAKE: check-am install-am install-strip
599609
600 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
610 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
601611 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
602612 distclean distclean-compile distclean-generic distclean-tags \
603613 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
138138 am__v_at_1 =
139139 DEFAULT_INCLUDES =
140140 depcomp = $(SHELL) $(top_srcdir)/depcomp
141 am__depfiles_maybe = depfiles
141 am__maybe_remake_depfiles = depfiles
142 am__depfiles_remade = ./$(DEPDIR)/colpack_hes.Po \
143 ./$(DEPDIR)/colpack_hessian.Po ./$(DEPDIR)/colpack_jac.Po \
144 ./$(DEPDIR)/colpack_jacobian.Po ./$(DEPDIR)/conj_grad.Po \
145 ./$(DEPDIR)/dependency.Po ./$(DEPDIR)/for_hes_sparsity.Po \
146 ./$(DEPDIR)/for_jac_sparsity.Po ./$(DEPDIR)/for_sparse_hes.Po \
147 ./$(DEPDIR)/for_sparse_jac.Po ./$(DEPDIR)/rc_sparsity.Po \
148 ./$(DEPDIR)/rev_hes_sparsity.Po \
149 ./$(DEPDIR)/rev_jac_sparsity.Po ./$(DEPDIR)/rev_sparse_hes.Po \
150 ./$(DEPDIR)/rev_sparse_jac.Po ./$(DEPDIR)/sparse.Po \
151 ./$(DEPDIR)/sparse2eigen.Po ./$(DEPDIR)/sparse_hes.Po \
152 ./$(DEPDIR)/sparse_hessian.Po ./$(DEPDIR)/sparse_jac_for.Po \
153 ./$(DEPDIR)/sparse_jac_rev.Po ./$(DEPDIR)/sparse_jacobian.Po \
154 ./$(DEPDIR)/sparse_sub_hes.Po ./$(DEPDIR)/sparsity_sub.Po \
155 ./$(DEPDIR)/sub_sparse_hes.Po ./$(DEPDIR)/subgraph_hes2jac.Po \
156 ./$(DEPDIR)/subgraph_jac_rev.Po \
157 ./$(DEPDIR)/subgraph_reverse.Po \
158 ./$(DEPDIR)/subgraph_sparsity.Po
142159 am__mv = mv -f
143160 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
144161 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
420437 *config.status*) \
421438 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
422439 *) \
423 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
424 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
440 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
441 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
425442 esac;
426443
427444 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
446463 distclean-compile:
447464 -rm -f *.tab.c
448465
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_hes.Po@am__quote@
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_hessian.Po@am__quote@
451 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_jac.Po@am__quote@
452 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_jacobian.Po@am__quote@
453 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conj_grad.Po@am__quote@
454 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dependency.Po@am__quote@
455 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_hes_sparsity.Po@am__quote@
456 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_jac_sparsity.Po@am__quote@
457 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@
458 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@
459 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rc_sparsity.Po@am__quote@
460 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_hes_sparsity.Po@am__quote@
461 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_jac_sparsity.Po@am__quote@
462 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_hes.Po@am__quote@
463 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@
464 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse.Po@am__quote@
465 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse2eigen.Po@am__quote@
466 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hes.Po@am__quote@
467 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
468 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_for.Po@am__quote@
469 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_rev.Po@am__quote@
470 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
471 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_sub_hes.Po@am__quote@
472 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparsity_sub.Po@am__quote@
473 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_sparse_hes.Po@am__quote@
474 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_hes2jac.Po@am__quote@
475 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_jac_rev.Po@am__quote@
476 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_reverse.Po@am__quote@
477 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_sparsity.Po@am__quote@
466 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_hes.Po@am__quote@ # am--include-marker
467 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_hessian.Po@am__quote@ # am--include-marker
468 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_jac.Po@am__quote@ # am--include-marker
469 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colpack_jacobian.Po@am__quote@ # am--include-marker
470 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/conj_grad.Po@am__quote@ # am--include-marker
471 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dependency.Po@am__quote@ # am--include-marker
472 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_hes_sparsity.Po@am__quote@ # am--include-marker
473 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_jac_sparsity.Po@am__quote@ # am--include-marker
474 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@ # am--include-marker
475 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@ # am--include-marker
476 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rc_sparsity.Po@am__quote@ # am--include-marker
477 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_hes_sparsity.Po@am__quote@ # am--include-marker
478 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_jac_sparsity.Po@am__quote@ # am--include-marker
479 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_hes.Po@am__quote@ # am--include-marker
480 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@ # am--include-marker
481 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse.Po@am__quote@ # am--include-marker
482 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse2eigen.Po@am__quote@ # am--include-marker
483 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hes.Po@am__quote@ # am--include-marker
484 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
485 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_for.Po@am__quote@ # am--include-marker
486 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_rev.Po@am__quote@ # am--include-marker
487 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
488 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_sub_hes.Po@am__quote@ # am--include-marker
489 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparsity_sub.Po@am__quote@ # am--include-marker
490 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_sparse_hes.Po@am__quote@ # am--include-marker
491 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_hes2jac.Po@am__quote@ # am--include-marker
492 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_jac_rev.Po@am__quote@ # am--include-marker
493 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_reverse.Po@am__quote@ # am--include-marker
494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_sparsity.Po@am__quote@ # am--include-marker
495
496 $(am__depfiles_remade):
497 @$(MKDIR_P) $(@D)
498 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
499
500 am--depfiles: $(am__depfiles_remade)
478501
479502 .cpp.o:
480503 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
544567 distclean-tags:
545568 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
546569
547 distdir: $(DISTFILES)
570 distdir: $(BUILT_SOURCES)
571 $(MAKE) $(AM_MAKEFLAGS) distdir-am
572
573 distdir-am: $(DISTFILES)
548574 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
549575 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
550576 list='$(DISTFILES)'; \
614640 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
615641
616642 distclean: distclean-am
617 -rm -rf ./$(DEPDIR)
643 -rm -f ./$(DEPDIR)/colpack_hes.Po
644 -rm -f ./$(DEPDIR)/colpack_hessian.Po
645 -rm -f ./$(DEPDIR)/colpack_jac.Po
646 -rm -f ./$(DEPDIR)/colpack_jacobian.Po
647 -rm -f ./$(DEPDIR)/conj_grad.Po
648 -rm -f ./$(DEPDIR)/dependency.Po
649 -rm -f ./$(DEPDIR)/for_hes_sparsity.Po
650 -rm -f ./$(DEPDIR)/for_jac_sparsity.Po
651 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
652 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
653 -rm -f ./$(DEPDIR)/rc_sparsity.Po
654 -rm -f ./$(DEPDIR)/rev_hes_sparsity.Po
655 -rm -f ./$(DEPDIR)/rev_jac_sparsity.Po
656 -rm -f ./$(DEPDIR)/rev_sparse_hes.Po
657 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
658 -rm -f ./$(DEPDIR)/sparse.Po
659 -rm -f ./$(DEPDIR)/sparse2eigen.Po
660 -rm -f ./$(DEPDIR)/sparse_hes.Po
661 -rm -f ./$(DEPDIR)/sparse_hessian.Po
662 -rm -f ./$(DEPDIR)/sparse_jac_for.Po
663 -rm -f ./$(DEPDIR)/sparse_jac_rev.Po
664 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
665 -rm -f ./$(DEPDIR)/sparse_sub_hes.Po
666 -rm -f ./$(DEPDIR)/sparsity_sub.Po
667 -rm -f ./$(DEPDIR)/sub_sparse_hes.Po
668 -rm -f ./$(DEPDIR)/subgraph_hes2jac.Po
669 -rm -f ./$(DEPDIR)/subgraph_jac_rev.Po
670 -rm -f ./$(DEPDIR)/subgraph_reverse.Po
671 -rm -f ./$(DEPDIR)/subgraph_sparsity.Po
618672 -rm -f makefile
619673 distclean-am: clean-am distclean-compile distclean-generic \
620674 distclean-tags
660714 installcheck-am:
661715
662716 maintainer-clean: maintainer-clean-am
663 -rm -rf ./$(DEPDIR)
717 -rm -f ./$(DEPDIR)/colpack_hes.Po
718 -rm -f ./$(DEPDIR)/colpack_hessian.Po
719 -rm -f ./$(DEPDIR)/colpack_jac.Po
720 -rm -f ./$(DEPDIR)/colpack_jacobian.Po
721 -rm -f ./$(DEPDIR)/conj_grad.Po
722 -rm -f ./$(DEPDIR)/dependency.Po
723 -rm -f ./$(DEPDIR)/for_hes_sparsity.Po
724 -rm -f ./$(DEPDIR)/for_jac_sparsity.Po
725 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
726 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
727 -rm -f ./$(DEPDIR)/rc_sparsity.Po
728 -rm -f ./$(DEPDIR)/rev_hes_sparsity.Po
729 -rm -f ./$(DEPDIR)/rev_jac_sparsity.Po
730 -rm -f ./$(DEPDIR)/rev_sparse_hes.Po
731 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
732 -rm -f ./$(DEPDIR)/sparse.Po
733 -rm -f ./$(DEPDIR)/sparse2eigen.Po
734 -rm -f ./$(DEPDIR)/sparse_hes.Po
735 -rm -f ./$(DEPDIR)/sparse_hessian.Po
736 -rm -f ./$(DEPDIR)/sparse_jac_for.Po
737 -rm -f ./$(DEPDIR)/sparse_jac_rev.Po
738 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
739 -rm -f ./$(DEPDIR)/sparse_sub_hes.Po
740 -rm -f ./$(DEPDIR)/sparsity_sub.Po
741 -rm -f ./$(DEPDIR)/sub_sparse_hes.Po
742 -rm -f ./$(DEPDIR)/subgraph_hes2jac.Po
743 -rm -f ./$(DEPDIR)/subgraph_jac_rev.Po
744 -rm -f ./$(DEPDIR)/subgraph_reverse.Po
745 -rm -f ./$(DEPDIR)/subgraph_sparsity.Po
664746 -rm -f makefile
665747 maintainer-clean-am: distclean-am maintainer-clean-generic
666748
680762
681763 .MAKE: check-am install-am install-strip
682764
683 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
765 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
684766 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
685767 distclean distclean-compile distclean-generic distclean-tags \
686768 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
123123 am__v_at_1 =
124124 DEFAULT_INCLUDES =
125125 depcomp = $(SHELL) $(top_srcdir)/depcomp
126 am__depfiles_maybe = depfiles
126 am__maybe_remake_depfiles = depfiles
127 am__depfiles_remade = ./$(DEPDIR)/check_numeric_type.Po \
128 ./$(DEPDIR)/check_simple_vector.Po ./$(DEPDIR)/cppad_vector.Po \
129 ./$(DEPDIR)/error_handler.Po ./$(DEPDIR)/index_sort.Po \
130 ./$(DEPDIR)/lu_factor.Po ./$(DEPDIR)/lu_invert.Po \
131 ./$(DEPDIR)/lu_solve.Po ./$(DEPDIR)/nan.Po \
132 ./$(DEPDIR)/near_equal.Po ./$(DEPDIR)/ode_err_control.Po \
133 ./$(DEPDIR)/ode_err_maxabs.Po ./$(DEPDIR)/ode_gear.Po \
134 ./$(DEPDIR)/ode_gear_control.Po ./$(DEPDIR)/romberg_mul.Po \
135 ./$(DEPDIR)/romberg_one.Po ./$(DEPDIR)/runge45_1.Po \
136 ./$(DEPDIR)/set_union.Po ./$(DEPDIR)/simple_vector.Po \
137 ./$(DEPDIR)/sparse_rc.Po ./$(DEPDIR)/sparse_rcv.Po \
138 ./$(DEPDIR)/thread_alloc.Po ./$(DEPDIR)/to_string.Po \
139 ./$(DEPDIR)/utility.Po ./$(DEPDIR)/vector_bool.Po
127140 am__mv = mv -f
128141 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
129142 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
398411 *config.status*) \
399412 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
400413 *) \
401 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
402 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
414 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
415 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
403416 esac;
404417
405418 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
424437 distclean-compile:
425438 -rm -f *.tab.c
426439
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_numeric_type.Po@am__quote@
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_simple_vector.Po@am__quote@
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_vector.Po@am__quote@
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/error_handler.Po@am__quote@
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/index_sort.Po@am__quote@
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_factor.Po@am__quote@
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_invert.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_solve.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nan.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal.Po@am__quote@
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_control.Po@am__quote@
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_maxabs.Po@am__quote@
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_gear.Po@am__quote@
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_gear_control.Po@am__quote@
441 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_mul.Po@am__quote@
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_one.Po@am__quote@
443 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge45_1.Po@am__quote@
444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set_union.Po@am__quote@
445 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_vector.Po@am__quote@
446 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_rc.Po@am__quote@
447 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_rcv.Po@am__quote@
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread_alloc.Po@am__quote@
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/to_string.Po@am__quote@
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utility.Po@am__quote@
451 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector_bool.Po@am__quote@
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_numeric_type.Po@am__quote@ # am--include-marker
441 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_simple_vector.Po@am__quote@ # am--include-marker
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_vector.Po@am__quote@ # am--include-marker
443 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/error_handler.Po@am__quote@ # am--include-marker
444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/index_sort.Po@am__quote@ # am--include-marker
445 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_factor.Po@am__quote@ # am--include-marker
446 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_invert.Po@am__quote@ # am--include-marker
447 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lu_solve.Po@am__quote@ # am--include-marker
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nan.Po@am__quote@ # am--include-marker
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal.Po@am__quote@ # am--include-marker
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_control.Po@am__quote@ # am--include-marker
451 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_maxabs.Po@am__quote@ # am--include-marker
452 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_gear.Po@am__quote@ # am--include-marker
453 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_gear_control.Po@am__quote@ # am--include-marker
454 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_mul.Po@am__quote@ # am--include-marker
455 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_one.Po@am__quote@ # am--include-marker
456 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge45_1.Po@am__quote@ # am--include-marker
457 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set_union.Po@am__quote@ # am--include-marker
458 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_vector.Po@am__quote@ # am--include-marker
459 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_rc.Po@am__quote@ # am--include-marker
460 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_rcv.Po@am__quote@ # am--include-marker
461 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread_alloc.Po@am__quote@ # am--include-marker
462 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/to_string.Po@am__quote@ # am--include-marker
463 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utility.Po@am__quote@ # am--include-marker
464 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector_bool.Po@am__quote@ # am--include-marker
465
466 $(am__depfiles_remade):
467 @$(MKDIR_P) $(@D)
468 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
469
470 am--depfiles: $(am__depfiles_remade)
452471
453472 .cpp.o:
454473 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
518537 distclean-tags:
519538 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
520539
521 distdir: $(DISTFILES)
540 distdir: $(BUILT_SOURCES)
541 $(MAKE) $(AM_MAKEFLAGS) distdir-am
542
543 distdir-am: $(DISTFILES)
522544 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
523545 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
524546 list='$(DISTFILES)'; \
588610 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
589611
590612 distclean: distclean-am
591 -rm -rf ./$(DEPDIR)
613 -rm -f ./$(DEPDIR)/check_numeric_type.Po
614 -rm -f ./$(DEPDIR)/check_simple_vector.Po
615 -rm -f ./$(DEPDIR)/cppad_vector.Po
616 -rm -f ./$(DEPDIR)/error_handler.Po
617 -rm -f ./$(DEPDIR)/index_sort.Po
618 -rm -f ./$(DEPDIR)/lu_factor.Po
619 -rm -f ./$(DEPDIR)/lu_invert.Po
620 -rm -f ./$(DEPDIR)/lu_solve.Po
621 -rm -f ./$(DEPDIR)/nan.Po
622 -rm -f ./$(DEPDIR)/near_equal.Po
623 -rm -f ./$(DEPDIR)/ode_err_control.Po
624 -rm -f ./$(DEPDIR)/ode_err_maxabs.Po
625 -rm -f ./$(DEPDIR)/ode_gear.Po
626 -rm -f ./$(DEPDIR)/ode_gear_control.Po
627 -rm -f ./$(DEPDIR)/romberg_mul.Po
628 -rm -f ./$(DEPDIR)/romberg_one.Po
629 -rm -f ./$(DEPDIR)/runge45_1.Po
630 -rm -f ./$(DEPDIR)/set_union.Po
631 -rm -f ./$(DEPDIR)/simple_vector.Po
632 -rm -f ./$(DEPDIR)/sparse_rc.Po
633 -rm -f ./$(DEPDIR)/sparse_rcv.Po
634 -rm -f ./$(DEPDIR)/thread_alloc.Po
635 -rm -f ./$(DEPDIR)/to_string.Po
636 -rm -f ./$(DEPDIR)/utility.Po
637 -rm -f ./$(DEPDIR)/vector_bool.Po
592638 -rm -f makefile
593639 distclean-am: clean-am distclean-compile distclean-generic \
594640 distclean-tags
634680 installcheck-am:
635681
636682 maintainer-clean: maintainer-clean-am
637 -rm -rf ./$(DEPDIR)
683 -rm -f ./$(DEPDIR)/check_numeric_type.Po
684 -rm -f ./$(DEPDIR)/check_simple_vector.Po
685 -rm -f ./$(DEPDIR)/cppad_vector.Po
686 -rm -f ./$(DEPDIR)/error_handler.Po
687 -rm -f ./$(DEPDIR)/index_sort.Po
688 -rm -f ./$(DEPDIR)/lu_factor.Po
689 -rm -f ./$(DEPDIR)/lu_invert.Po
690 -rm -f ./$(DEPDIR)/lu_solve.Po
691 -rm -f ./$(DEPDIR)/nan.Po
692 -rm -f ./$(DEPDIR)/near_equal.Po
693 -rm -f ./$(DEPDIR)/ode_err_control.Po
694 -rm -f ./$(DEPDIR)/ode_err_maxabs.Po
695 -rm -f ./$(DEPDIR)/ode_gear.Po
696 -rm -f ./$(DEPDIR)/ode_gear_control.Po
697 -rm -f ./$(DEPDIR)/romberg_mul.Po
698 -rm -f ./$(DEPDIR)/romberg_one.Po
699 -rm -f ./$(DEPDIR)/runge45_1.Po
700 -rm -f ./$(DEPDIR)/set_union.Po
701 -rm -f ./$(DEPDIR)/simple_vector.Po
702 -rm -f ./$(DEPDIR)/sparse_rc.Po
703 -rm -f ./$(DEPDIR)/sparse_rcv.Po
704 -rm -f ./$(DEPDIR)/thread_alloc.Po
705 -rm -f ./$(DEPDIR)/to_string.Po
706 -rm -f ./$(DEPDIR)/utility.Po
707 -rm -f ./$(DEPDIR)/vector_bool.Po
638708 -rm -f makefile
639709 maintainer-clean-am: distclean-am maintainer-clean-generic
640710
654724
655725 .MAKE: check-am install-am install-strip
656726
657 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
727 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
658728 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
659729 distclean distclean-compile distclean-generic distclean-tags \
660730 distdir dvi dvi-am html html-am info info-am install \
00 #!/bin/sh
11 # install - install a program, script, or datafile
22
3 scriptversion=2016-01-11.22; # UTC
3 scriptversion=2018-03-11.20; # UTC
44
55 # This originates from X11R5 (mit/util/scripts/install.sh), which was
66 # later released in X11R6 (xc/config/util/install.sh) with the
270270 fi
271271 dst=$dst_arg
272272
273 # If destination is a directory, append the input filename; won't work
274 # if double slashes aren't ignored.
273 # If destination is a directory, append the input filename.
275274 if test -d "$dst"; then
276275 if test "$is_target_a_directory" = never; then
277276 echo "$0: $dst_arg: Is a directory" >&2
278277 exit 1
279278 fi
280279 dstdir=$dst
281 dst=$dstdir/`basename "$src"`
280 dstbase=`basename "$src"`
281 case $dst in
282 */) dst=$dst$dstbase;;
283 *) dst=$dst/$dstbase;;
284 esac
282285 dstdir_status=0
283286 else
284287 dstdir=`dirname "$dst"`
286289 dstdir_status=$?
287290 fi
288291 fi
292
293 case $dstdir in
294 */) dstdirslash=$dstdir;;
295 *) dstdirslash=$dstdir/;;
296 esac
289297
290298 obsolete_mkdir_used=false
291299
323331 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
324332 ;;
325333 *)
334 # Note that $RANDOM variable is not portable (e.g. dash); Use it
335 # here however when possible just to lower collision chance.
326336 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
327 trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
328
337
338 trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
339
340 # Because "mkdir -p" follows existing symlinks and we likely work
341 # directly in world-writeable /tmp, make sure that the '$tmpdir'
342 # directory is successfully created first before we actually test
343 # 'mkdir -p' feature.
329344 if (umask $mkdir_umask &&
330 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
345 $mkdirprog $mkdir_mode "$tmpdir" &&
346 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
331347 then
332348 if test -z "$dir_arg" || {
333349 # Check for POSIX incompatibilities with -m.
334350 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
335351 # other-writable bit of parent directory when it shouldn't.
336352 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
337 ls_ld_tmpdir=`ls -ld "$tmpdir"`
353 test_tmpdir="$tmpdir/a"
354 ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
338355 case $ls_ld_tmpdir in
339356 d????-?r-*) different_mode=700;;
340357 d????-?--*) different_mode=755;;
341358 *) false;;
342359 esac &&
343 $mkdirprog -m$different_mode -p -- "$tmpdir" && {
344 ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
360 $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
361 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
345362 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
346363 }
347364 }
348365 then posix_mkdir=:
349366 fi
350 rmdir "$tmpdir/d" "$tmpdir"
367 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
351368 else
352369 # Remove any dirs left behind by ancient mkdir implementations.
353 rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
370 rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
354371 fi
355372 trap '' 0;;
356373 esac;;
426443 else
427444
428445 # Make a couple of temp file names in the proper directory.
429 dsttmp=$dstdir/_inst.$$_
430 rmtmp=$dstdir/_rm.$$_
446 dsttmp=${dstdirslash}_inst.$$_
447 rmtmp=${dstdirslash}_rm.$$_
431448
432449 # Trap to clean up those temp files at exit.
433450 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
492509 done
493510
494511 # Local variables:
495 # eval: (add-hook 'write-file-hooks 'time-stamp)
512 # eval: (add-hook 'before-save-hook 'time-stamp)
496513 # time-stamp-start: "scriptversion="
497514 # time-stamp-format: "%:y-%02m-%02d.%02H"
498515 # time-stamp-time-zone: "UTC0"
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
119119 am__v_at_1 =
120120 DEFAULT_INCLUDES =
121121 depcomp = $(SHELL) $(top_srcdir)/depcomp
122 am__depfiles_maybe = depfiles
122 am__maybe_remake_depfiles = depfiles
123 am__depfiles_remade = ./$(DEPDIR)/exp_2.Po ./$(DEPDIR)/exp_2_cppad.Po \
124 ./$(DEPDIR)/exp_2_for0.Po ./$(DEPDIR)/exp_2_for1.Po \
125 ./$(DEPDIR)/exp_2_for2.Po ./$(DEPDIR)/exp_2_rev1.Po \
126 ./$(DEPDIR)/exp_2_rev2.Po ./$(DEPDIR)/exp_eps.Po \
127 ./$(DEPDIR)/exp_eps_cppad.Po ./$(DEPDIR)/exp_eps_for0.Po \
128 ./$(DEPDIR)/exp_eps_for1.Po ./$(DEPDIR)/exp_eps_for2.Po \
129 ./$(DEPDIR)/exp_eps_rev1.Po ./$(DEPDIR)/exp_eps_rev2.Po \
130 ./$(DEPDIR)/introduction.Po
123131 am__mv = mv -f
124132 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
125133 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
397405 *config.status*) \
398406 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
399407 *) \
400 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
401 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
408 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
409 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
402410 esac;
403411
404412 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
423431 distclean-compile:
424432 -rm -f *.tab.c
425433
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2.Po@am__quote@
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_cppad.Po@am__quote@
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for0.Po@am__quote@
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for1.Po@am__quote@
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for2.Po@am__quote@
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_rev1.Po@am__quote@
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_rev2.Po@am__quote@
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_cppad.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for0.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for1.Po@am__quote@
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for2.Po@am__quote@
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_rev1.Po@am__quote@
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_rev2.Po@am__quote@
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/introduction.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2.Po@am__quote@ # am--include-marker
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_cppad.Po@am__quote@ # am--include-marker
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for0.Po@am__quote@ # am--include-marker
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for1.Po@am__quote@ # am--include-marker
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_for2.Po@am__quote@ # am--include-marker
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_rev1.Po@am__quote@ # am--include-marker
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_2_rev2.Po@am__quote@ # am--include-marker
441 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps.Po@am__quote@ # am--include-marker
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_cppad.Po@am__quote@ # am--include-marker
443 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for0.Po@am__quote@ # am--include-marker
444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for1.Po@am__quote@ # am--include-marker
445 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_for2.Po@am__quote@ # am--include-marker
446 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_rev1.Po@am__quote@ # am--include-marker
447 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp_eps_rev2.Po@am__quote@ # am--include-marker
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/introduction.Po@am__quote@ # am--include-marker
449
450 $(am__depfiles_remade):
451 @$(MKDIR_P) $(@D)
452 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
453
454 am--depfiles: $(am__depfiles_remade)
441455
442456 .cpp.o:
443457 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
507521 distclean-tags:
508522 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
509523
510 distdir: $(DISTFILES)
524 distdir: $(BUILT_SOURCES)
525 $(MAKE) $(AM_MAKEFLAGS) distdir-am
526
527 distdir-am: $(DISTFILES)
511528 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
512529 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
513530 list='$(DISTFILES)'; \
577594 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
578595
579596 distclean: distclean-am
580 -rm -rf ./$(DEPDIR)
597 -rm -f ./$(DEPDIR)/exp_2.Po
598 -rm -f ./$(DEPDIR)/exp_2_cppad.Po
599 -rm -f ./$(DEPDIR)/exp_2_for0.Po
600 -rm -f ./$(DEPDIR)/exp_2_for1.Po
601 -rm -f ./$(DEPDIR)/exp_2_for2.Po
602 -rm -f ./$(DEPDIR)/exp_2_rev1.Po
603 -rm -f ./$(DEPDIR)/exp_2_rev2.Po
604 -rm -f ./$(DEPDIR)/exp_eps.Po
605 -rm -f ./$(DEPDIR)/exp_eps_cppad.Po
606 -rm -f ./$(DEPDIR)/exp_eps_for0.Po
607 -rm -f ./$(DEPDIR)/exp_eps_for1.Po
608 -rm -f ./$(DEPDIR)/exp_eps_for2.Po
609 -rm -f ./$(DEPDIR)/exp_eps_rev1.Po
610 -rm -f ./$(DEPDIR)/exp_eps_rev2.Po
611 -rm -f ./$(DEPDIR)/introduction.Po
581612 -rm -f makefile
582613 distclean-am: clean-am distclean-compile distclean-generic \
583614 distclean-tags
623654 installcheck-am:
624655
625656 maintainer-clean: maintainer-clean-am
626 -rm -rf ./$(DEPDIR)
657 -rm -f ./$(DEPDIR)/exp_2.Po
658 -rm -f ./$(DEPDIR)/exp_2_cppad.Po
659 -rm -f ./$(DEPDIR)/exp_2_for0.Po
660 -rm -f ./$(DEPDIR)/exp_2_for1.Po
661 -rm -f ./$(DEPDIR)/exp_2_for2.Po
662 -rm -f ./$(DEPDIR)/exp_2_rev1.Po
663 -rm -f ./$(DEPDIR)/exp_2_rev2.Po
664 -rm -f ./$(DEPDIR)/exp_eps.Po
665 -rm -f ./$(DEPDIR)/exp_eps_cppad.Po
666 -rm -f ./$(DEPDIR)/exp_eps_for0.Po
667 -rm -f ./$(DEPDIR)/exp_eps_for1.Po
668 -rm -f ./$(DEPDIR)/exp_eps_for2.Po
669 -rm -f ./$(DEPDIR)/exp_eps_rev1.Po
670 -rm -f ./$(DEPDIR)/exp_eps_rev2.Po
671 -rm -f ./$(DEPDIR)/introduction.Po
627672 -rm -f makefile
628673 maintainer-clean-am: distclean-am maintainer-clean-generic
629674
643688
644689 .MAKE: check-am install-am install-strip
645690
646 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
691 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
647692 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
648693 distclean distclean-compile distclean-generic distclean-tags \
649694 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
169169 $(RECURSIVE_CLEAN_TARGETS) \
170170 $(am__extra_recursive_targets)
171171 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
172 cscope distdir dist dist-all distcheck
172 cscope distdir distdir-am dist dist-all distcheck
173173 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
174174 # Read a list of newline-separated strings from the standard input,
175175 # and print each of them once, without duplicates. Input order is
862862 echo ' $(SHELL) ./config.status'; \
863863 $(SHELL) ./config.status;; \
864864 *) \
865 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
866 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
865 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
866 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
867867 esac;
868868
869869 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
10551055 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
10561056 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
10571057
1058 distdir: $(DISTFILES)
1058 distdir: $(BUILT_SOURCES)
1059 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1060
1061 distdir-am: $(DISTFILES)
10591062 $(am__remove_distdir)
10601063 test -d "$(distdir)" || mkdir "$(distdir)"
10611064 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
0 #!/bin/sh
0 #! /bin/sh
11 # Common wrapper for a few potentially missing GNU programs.
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
66 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
77
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
100100 exit $st
101101 fi
102102
103 perl_URL=http://www.perl.org/
104 flex_URL=http://flex.sourceforge.net/
105 gnu_software_URL=http://www.gnu.org/software
103 perl_URL=https://www.perl.org/
104 flex_URL=https://github.com/westes/flex
105 gnu_software_URL=https://www.gnu.org/software
106106
107107 program_details ()
108108 {
206206 exit $st
207207
208208 # Local variables:
209 # eval: (add-hook 'write-file-hooks 'time-stamp)
209 # eval: (add-hook 'before-save-hook 'time-stamp)
210210 # time-stamp-start: "scriptversion="
211211 # time-stamp-format: "%:y-%02m-%02d.%02H"
212212 # time-stamp-time-zone: "UTC0"
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/alloc_mat.Po ./$(DEPDIR)/det_lu.Po \
122 ./$(DEPDIR)/det_minor.Po ./$(DEPDIR)/main.Po \
123 ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/ode.Po ./$(DEPDIR)/poly.Po \
124 ./$(DEPDIR)/sparse_hessian.Po ./$(DEPDIR)/sparse_jacobian.Po
121125 am__mv = mv -f
122126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
399403 *config.status*) \
400404 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
401405 *) \
402 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
403 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
406 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
404408 esac;
405409
406410 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
425429 distclean-compile:
426430 -rm -f *.tab.c
427431
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc_mat.Po@am__quote@
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc_mat.Po@am__quote@ # am--include-marker
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
441
442 $(am__depfiles_remade):
443 @$(MKDIR_P) $(@D)
444 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
445
446 am--depfiles: $(am__depfiles_remade)
437447
438448 .cpp.o:
439449 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
503513 distclean-tags:
504514 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
505515
506 distdir: $(DISTFILES)
516 distdir: $(BUILT_SOURCES)
517 $(MAKE) $(AM_MAKEFLAGS) distdir-am
518
519 distdir-am: $(DISTFILES)
507520 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
508521 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
509522 list='$(DISTFILES)'; \
576589 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
577590
578591 distclean: distclean-am
579 -rm -rf ./$(DEPDIR)
592 -rm -f ./$(DEPDIR)/alloc_mat.Po
593 -rm -f ./$(DEPDIR)/det_lu.Po
594 -rm -f ./$(DEPDIR)/det_minor.Po
595 -rm -f ./$(DEPDIR)/main.Po
596 -rm -f ./$(DEPDIR)/mat_mul.Po
597 -rm -f ./$(DEPDIR)/ode.Po
598 -rm -f ./$(DEPDIR)/poly.Po
599 -rm -f ./$(DEPDIR)/sparse_hessian.Po
600 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
580601 -rm -f makefile
581602 distclean-am: clean-am distclean-compile distclean-generic \
582603 distclean-tags
622643 installcheck-am:
623644
624645 maintainer-clean: maintainer-clean-am
625 -rm -rf ./$(DEPDIR)
646 -rm -f ./$(DEPDIR)/alloc_mat.Po
647 -rm -f ./$(DEPDIR)/det_lu.Po
648 -rm -f ./$(DEPDIR)/det_minor.Po
649 -rm -f ./$(DEPDIR)/main.Po
650 -rm -f ./$(DEPDIR)/mat_mul.Po
651 -rm -f ./$(DEPDIR)/ode.Po
652 -rm -f ./$(DEPDIR)/poly.Po
653 -rm -f ./$(DEPDIR)/sparse_hessian.Po
654 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
626655 -rm -f makefile
627656 maintainer-clean-am: distclean-am maintainer-clean-generic
628657
642671
643672 .MAKE: all check check-am install install-am install-strip
644673
645 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
674 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
646675 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
647676 distclean distclean-compile distclean-generic distclean-tags \
648677 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/det_lu.Po ./$(DEPDIR)/det_minor.Po \
122 ./$(DEPDIR)/main.Po ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/ode.Po \
123 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/sparse_hessian.Po \
124 ./$(DEPDIR)/sparse_jacobian.Po
121125 am__mv = mv -f
122126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
383387 *config.status*) \
384388 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
385389 *) \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
390 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
391 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
388392 esac;
389393
390394 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
409413 distclean-compile:
410414 -rm -f *.tab.c
411415
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
424
425 $(am__depfiles_remade):
426 @$(MKDIR_P) $(@D)
427 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
428
429 am--depfiles: $(am__depfiles_remade)
420430
421431 .cpp.o:
422432 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
486496 distclean-tags:
487497 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
488498
489 distdir: $(DISTFILES)
499 distdir: $(BUILT_SOURCES)
500 $(MAKE) $(AM_MAKEFLAGS) distdir-am
501
502 distdir-am: $(DISTFILES)
490503 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491504 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492505 list='$(DISTFILES)'; \
559572 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
560573
561574 distclean: distclean-am
562 -rm -rf ./$(DEPDIR)
575 -rm -f ./$(DEPDIR)/det_lu.Po
576 -rm -f ./$(DEPDIR)/det_minor.Po
577 -rm -f ./$(DEPDIR)/main.Po
578 -rm -f ./$(DEPDIR)/mat_mul.Po
579 -rm -f ./$(DEPDIR)/ode.Po
580 -rm -f ./$(DEPDIR)/poly.Po
581 -rm -f ./$(DEPDIR)/sparse_hessian.Po
582 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
563583 -rm -f makefile
564584 distclean-am: clean-am distclean-compile distclean-generic \
565585 distclean-tags
605625 installcheck-am:
606626
607627 maintainer-clean: maintainer-clean-am
608 -rm -rf ./$(DEPDIR)
628 -rm -f ./$(DEPDIR)/det_lu.Po
629 -rm -f ./$(DEPDIR)/det_minor.Po
630 -rm -f ./$(DEPDIR)/main.Po
631 -rm -f ./$(DEPDIR)/mat_mul.Po
632 -rm -f ./$(DEPDIR)/ode.Po
633 -rm -f ./$(DEPDIR)/poly.Po
634 -rm -f ./$(DEPDIR)/sparse_hessian.Po
635 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
609636 -rm -f makefile
610637 maintainer-clean-am: distclean-am maintainer-clean-generic
611638
625652
626653 .MAKE: all check check-am install install-am install-strip
627654
628 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
655 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
629656 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
630657 distclean distclean-compile distclean-generic distclean-tags \
631658 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/det_lu.Po ./$(DEPDIR)/det_minor.Po \
122 ./$(DEPDIR)/main.Po ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/ode.Po \
123 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/sparse_hessian.Po \
124 ./$(DEPDIR)/sparse_jacobian.Po
121125 am__mv = mv -f
122126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
382386 *config.status*) \
383387 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
384388 *) \
385 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
386 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
389 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
390 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
387391 esac;
388392
389393 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
408412 distclean-compile:
409413 -rm -f *.tab.c
410414
411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
423
424 $(am__depfiles_remade):
425 @$(MKDIR_P) $(@D)
426 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
427
428 am--depfiles: $(am__depfiles_remade)
419429
420430 .cpp.o:
421431 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
485495 distclean-tags:
486496 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
487497
488 distdir: $(DISTFILES)
498 distdir: $(BUILT_SOURCES)
499 $(MAKE) $(AM_MAKEFLAGS) distdir-am
500
501 distdir-am: $(DISTFILES)
489502 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
490503 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491504 list='$(DISTFILES)'; \
558571 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
559572
560573 distclean: distclean-am
561 -rm -rf ./$(DEPDIR)
574 -rm -f ./$(DEPDIR)/det_lu.Po
575 -rm -f ./$(DEPDIR)/det_minor.Po
576 -rm -f ./$(DEPDIR)/main.Po
577 -rm -f ./$(DEPDIR)/mat_mul.Po
578 -rm -f ./$(DEPDIR)/ode.Po
579 -rm -f ./$(DEPDIR)/poly.Po
580 -rm -f ./$(DEPDIR)/sparse_hessian.Po
581 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
562582 -rm -f makefile
563583 distclean-am: clean-am distclean-compile distclean-generic \
564584 distclean-tags
604624 installcheck-am:
605625
606626 maintainer-clean: maintainer-clean-am
607 -rm -rf ./$(DEPDIR)
627 -rm -f ./$(DEPDIR)/det_lu.Po
628 -rm -f ./$(DEPDIR)/det_minor.Po
629 -rm -f ./$(DEPDIR)/main.Po
630 -rm -f ./$(DEPDIR)/mat_mul.Po
631 -rm -f ./$(DEPDIR)/ode.Po
632 -rm -f ./$(DEPDIR)/poly.Po
633 -rm -f ./$(DEPDIR)/sparse_hessian.Po
634 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
608635 -rm -f makefile
609636 maintainer-clean-am: distclean-am maintainer-clean-generic
610637
624651
625652 .MAKE: all check check-am install install-am install-strip
626653
627 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
654 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
628655 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
629656 distclean distclean-compile distclean-generic distclean-tags \
630657 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
119119 am__v_at_1 =
120120 DEFAULT_INCLUDES =
121121 depcomp = $(SHELL) $(top_srcdir)/depcomp
122 am__depfiles_maybe = depfiles
122 am__maybe_remake_depfiles = depfiles
123 am__depfiles_remade = ./$(DEPDIR)/det_by_lu.Po \
124 ./$(DEPDIR)/det_by_minor.Po ./$(DEPDIR)/det_of_minor.Po \
125 ./$(DEPDIR)/elapsed_seconds.Po ./$(DEPDIR)/example.Po \
126 ./$(DEPDIR)/mat_sum_sq.Po ./$(DEPDIR)/ode_evaluate.Po \
127 ./$(DEPDIR)/sparse_hes_fun.Po ./$(DEPDIR)/sparse_jac_fun.Po \
128 ./$(DEPDIR)/speed_test.Po ./$(DEPDIR)/time_test.Po
123129 am__mv = mv -f
124130 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
125131 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
382388 *config.status*) \
383389 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
384390 *) \
385 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
386 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
387393 esac;
388394
389395 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
408414 distclean-compile:
409415 -rm -f *.tab.c
410416
411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_lu.Po@am__quote@
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_of_minor.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elapsed_seconds.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_sum_sq.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_evaluate.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hes_fun.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_fun.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/speed_test.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/time_test.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_lu.Po@am__quote@ # am--include-marker
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor.Po@am__quote@ # am--include-marker
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_of_minor.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elapsed_seconds.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_sum_sq.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_evaluate.Po@am__quote@ # am--include-marker
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hes_fun.Po@am__quote@ # am--include-marker
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_fun.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/speed_test.Po@am__quote@ # am--include-marker
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/time_test.Po@am__quote@ # am--include-marker
428
429 $(am__depfiles_remade):
430 @$(MKDIR_P) $(@D)
431 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
432
433 am--depfiles: $(am__depfiles_remade)
422434
423435 .cpp.o:
424436 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
488500 distclean-tags:
489501 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
490502
491 distdir: $(DISTFILES)
503 distdir: $(BUILT_SOURCES)
504 $(MAKE) $(AM_MAKEFLAGS) distdir-am
505
506 distdir-am: $(DISTFILES)
492507 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
493508 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
494509 list='$(DISTFILES)'; \
558573 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
559574
560575 distclean: distclean-am
561 -rm -rf ./$(DEPDIR)
576 -rm -f ./$(DEPDIR)/det_by_lu.Po
577 -rm -f ./$(DEPDIR)/det_by_minor.Po
578 -rm -f ./$(DEPDIR)/det_of_minor.Po
579 -rm -f ./$(DEPDIR)/elapsed_seconds.Po
580 -rm -f ./$(DEPDIR)/example.Po
581 -rm -f ./$(DEPDIR)/mat_sum_sq.Po
582 -rm -f ./$(DEPDIR)/ode_evaluate.Po
583 -rm -f ./$(DEPDIR)/sparse_hes_fun.Po
584 -rm -f ./$(DEPDIR)/sparse_jac_fun.Po
585 -rm -f ./$(DEPDIR)/speed_test.Po
586 -rm -f ./$(DEPDIR)/time_test.Po
562587 -rm -f makefile
563588 distclean-am: clean-am distclean-compile distclean-generic \
564589 distclean-tags
604629 installcheck-am:
605630
606631 maintainer-clean: maintainer-clean-am
607 -rm -rf ./$(DEPDIR)
632 -rm -f ./$(DEPDIR)/det_by_lu.Po
633 -rm -f ./$(DEPDIR)/det_by_minor.Po
634 -rm -f ./$(DEPDIR)/det_of_minor.Po
635 -rm -f ./$(DEPDIR)/elapsed_seconds.Po
636 -rm -f ./$(DEPDIR)/example.Po
637 -rm -f ./$(DEPDIR)/mat_sum_sq.Po
638 -rm -f ./$(DEPDIR)/ode_evaluate.Po
639 -rm -f ./$(DEPDIR)/sparse_hes_fun.Po
640 -rm -f ./$(DEPDIR)/sparse_jac_fun.Po
641 -rm -f ./$(DEPDIR)/speed_test.Po
642 -rm -f ./$(DEPDIR)/time_test.Po
608643 -rm -f makefile
609644 maintainer-clean-am: distclean-am maintainer-clean-generic
610645
624659
625660 .MAKE: check-am install-am install-strip
626661
627 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
662 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
628663 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
629664 distclean distclean-compile distclean-generic distclean-tags \
630665 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/det_lu.Po ./$(DEPDIR)/det_minor.Po \
122 ./$(DEPDIR)/main.Po ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/ode.Po \
123 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/sparse_hessian.Po \
124 ./$(DEPDIR)/sparse_jacobian.Po
121125 am__mv = mv -f
122126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
383387 *config.status*) \
384388 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
385389 *) \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
390 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
391 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
388392 esac;
389393
390394 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
409413 distclean-compile:
410414 -rm -f *.tab.c
411415
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
424
425 $(am__depfiles_remade):
426 @$(MKDIR_P) $(@D)
427 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
428
429 am--depfiles: $(am__depfiles_remade)
420430
421431 .cpp.o:
422432 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
486496 distclean-tags:
487497 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
488498
489 distdir: $(DISTFILES)
499 distdir: $(BUILT_SOURCES)
500 $(MAKE) $(AM_MAKEFLAGS) distdir-am
501
502 distdir-am: $(DISTFILES)
490503 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
491504 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492505 list='$(DISTFILES)'; \
559572 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
560573
561574 distclean: distclean-am
562 -rm -rf ./$(DEPDIR)
575 -rm -f ./$(DEPDIR)/det_lu.Po
576 -rm -f ./$(DEPDIR)/det_minor.Po
577 -rm -f ./$(DEPDIR)/main.Po
578 -rm -f ./$(DEPDIR)/mat_mul.Po
579 -rm -f ./$(DEPDIR)/ode.Po
580 -rm -f ./$(DEPDIR)/poly.Po
581 -rm -f ./$(DEPDIR)/sparse_hessian.Po
582 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
563583 -rm -f makefile
564584 distclean-am: clean-am distclean-compile distclean-generic \
565585 distclean-tags
605625 installcheck-am:
606626
607627 maintainer-clean: maintainer-clean-am
608 -rm -rf ./$(DEPDIR)
628 -rm -f ./$(DEPDIR)/det_lu.Po
629 -rm -f ./$(DEPDIR)/det_minor.Po
630 -rm -f ./$(DEPDIR)/main.Po
631 -rm -f ./$(DEPDIR)/mat_mul.Po
632 -rm -f ./$(DEPDIR)/ode.Po
633 -rm -f ./$(DEPDIR)/poly.Po
634 -rm -f ./$(DEPDIR)/sparse_hessian.Po
635 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
609636 -rm -f makefile
610637 maintainer-clean-am: distclean-am maintainer-clean-generic
611638
625652
626653 .MAKE: all check check-am install install-am install-strip
627654
628 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
655 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
629656 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
630657 distclean distclean-compile distclean-generic distclean-tags \
631658 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
120120 am__v_at_1 =
121121 DEFAULT_INCLUDES =
122122 depcomp = $(SHELL) $(top_srcdir)/depcomp
123 am__depfiles_maybe = depfiles
123 am__maybe_remake_depfiles = depfiles
124 am__depfiles_remade = ./$(DEPDIR)/det_lu.Po ./$(DEPDIR)/det_minor.Po \
125 ./$(DEPDIR)/link_det_lu.Po ./$(DEPDIR)/link_det_minor.Po \
126 ./$(DEPDIR)/link_mat_mul.Po ./$(DEPDIR)/link_ode.Po \
127 ./$(DEPDIR)/link_poly.Po ./$(DEPDIR)/link_sparse_hessian.Po \
128 ./$(DEPDIR)/link_sparse_jacobian.Po ./$(DEPDIR)/main.Po \
129 ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/microsoft_timer.Po \
130 ./$(DEPDIR)/ode.Po ./$(DEPDIR)/poly.Po \
131 ./$(DEPDIR)/sparse_hessian.Po ./$(DEPDIR)/sparse_jacobian.Po
124132 am__mv = mv -f
125133 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
126134 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
396404 *config.status*) \
397405 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
398406 *) \
399 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
400 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
407 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
408 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
401409 esac;
402410
403411 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
424432 distclean-compile:
425433 -rm -f *.tab.c
426434
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_lu.Po@am__quote@
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_minor.Po@am__quote@
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_mat_mul.Po@am__quote@
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_ode.Po@am__quote@
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_poly.Po@am__quote@
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_hessian.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_jacobian.Po@am__quote@
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/microsoft_timer.Po@am__quote@
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
441 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_lu.Po@am__quote@ # am--include-marker
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_minor.Po@am__quote@ # am--include-marker
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_mat_mul.Po@am__quote@ # am--include-marker
440 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_ode.Po@am__quote@ # am--include-marker
441 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_poly.Po@am__quote@ # am--include-marker
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_hessian.Po@am__quote@ # am--include-marker
443 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_jacobian.Po@am__quote@ # am--include-marker
444 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
445 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
446 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/microsoft_timer.Po@am__quote@ # am--include-marker
447 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
448 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
449 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
450 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
451
452 $(am__depfiles_remade):
453 @$(MKDIR_P) $(@D)
454 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
455
456 am--depfiles: $(am__depfiles_remade)
443457
444458 .cpp.o:
445459 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
509523 distclean-tags:
510524 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
511525
512 distdir: $(DISTFILES)
526 distdir: $(BUILT_SOURCES)
527 $(MAKE) $(AM_MAKEFLAGS) distdir-am
528
529 distdir-am: $(DISTFILES)
513530 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
514531 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
515532 list='$(DISTFILES)'; \
582599 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
583600
584601 distclean: distclean-am
585 -rm -rf ./$(DEPDIR)
602 -rm -f ./$(DEPDIR)/det_lu.Po
603 -rm -f ./$(DEPDIR)/det_minor.Po
604 -rm -f ./$(DEPDIR)/link_det_lu.Po
605 -rm -f ./$(DEPDIR)/link_det_minor.Po
606 -rm -f ./$(DEPDIR)/link_mat_mul.Po
607 -rm -f ./$(DEPDIR)/link_ode.Po
608 -rm -f ./$(DEPDIR)/link_poly.Po
609 -rm -f ./$(DEPDIR)/link_sparse_hessian.Po
610 -rm -f ./$(DEPDIR)/link_sparse_jacobian.Po
611 -rm -f ./$(DEPDIR)/main.Po
612 -rm -f ./$(DEPDIR)/mat_mul.Po
613 -rm -f ./$(DEPDIR)/microsoft_timer.Po
614 -rm -f ./$(DEPDIR)/ode.Po
615 -rm -f ./$(DEPDIR)/poly.Po
616 -rm -f ./$(DEPDIR)/sparse_hessian.Po
617 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
586618 -rm -f makefile
587619 distclean-am: clean-am distclean-compile distclean-generic \
588620 distclean-tags
628660 installcheck-am:
629661
630662 maintainer-clean: maintainer-clean-am
631 -rm -rf ./$(DEPDIR)
663 -rm -f ./$(DEPDIR)/det_lu.Po
664 -rm -f ./$(DEPDIR)/det_minor.Po
665 -rm -f ./$(DEPDIR)/link_det_lu.Po
666 -rm -f ./$(DEPDIR)/link_det_minor.Po
667 -rm -f ./$(DEPDIR)/link_mat_mul.Po
668 -rm -f ./$(DEPDIR)/link_ode.Po
669 -rm -f ./$(DEPDIR)/link_poly.Po
670 -rm -f ./$(DEPDIR)/link_sparse_hessian.Po
671 -rm -f ./$(DEPDIR)/link_sparse_jacobian.Po
672 -rm -f ./$(DEPDIR)/main.Po
673 -rm -f ./$(DEPDIR)/mat_mul.Po
674 -rm -f ./$(DEPDIR)/microsoft_timer.Po
675 -rm -f ./$(DEPDIR)/ode.Po
676 -rm -f ./$(DEPDIR)/poly.Po
677 -rm -f ./$(DEPDIR)/sparse_hessian.Po
678 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
632679 -rm -f makefile
633680 maintainer-clean-am: distclean-am maintainer-clean-generic
634681
648695
649696 .MAKE: all check check-am install install-am install-strip
650697
651 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
698 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
652699 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
653700 distclean distclean-compile distclean-generic distclean-tags \
654701 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
117117 am__v_at_1 =
118118 DEFAULT_INCLUDES =
119119 depcomp = $(SHELL) $(top_srcdir)/depcomp
120 am__depfiles_maybe = depfiles
120 am__maybe_remake_depfiles = depfiles
121 am__depfiles_remade = ./$(DEPDIR)/det_lu.Po ./$(DEPDIR)/det_minor.Po \
122 ./$(DEPDIR)/main.Po ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/ode.Po \
123 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/sparse_hessian.Po \
124 ./$(DEPDIR)/sparse_jacobian.Po
121125 am__mv = mv -f
122126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
123127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
388392 *config.status*) \
389393 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
390394 *) \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
395 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
396 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
393397 esac;
394398
395399 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
414418 distclean-compile:
415419 -rm -f *.tab.c
416420
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_lu.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_minor.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
429
430 $(am__depfiles_remade):
431 @$(MKDIR_P) $(@D)
432 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
433
434 am--depfiles: $(am__depfiles_remade)
425435
426436 .cpp.o:
427437 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
491501 distclean-tags:
492502 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
493503
494 distdir: $(DISTFILES)
504 distdir: $(BUILT_SOURCES)
505 $(MAKE) $(AM_MAKEFLAGS) distdir-am
506
507 distdir-am: $(DISTFILES)
495508 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
496509 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
497510 list='$(DISTFILES)'; \
564577 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
565578
566579 distclean: distclean-am
567 -rm -rf ./$(DEPDIR)
580 -rm -f ./$(DEPDIR)/det_lu.Po
581 -rm -f ./$(DEPDIR)/det_minor.Po
582 -rm -f ./$(DEPDIR)/main.Po
583 -rm -f ./$(DEPDIR)/mat_mul.Po
584 -rm -f ./$(DEPDIR)/ode.Po
585 -rm -f ./$(DEPDIR)/poly.Po
586 -rm -f ./$(DEPDIR)/sparse_hessian.Po
587 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
568588 -rm -f makefile
569589 distclean-am: clean-am distclean-compile distclean-generic \
570590 distclean-tags
610630 installcheck-am:
611631
612632 maintainer-clean: maintainer-clean-am
613 -rm -rf ./$(DEPDIR)
633 -rm -f ./$(DEPDIR)/det_lu.Po
634 -rm -f ./$(DEPDIR)/det_minor.Po
635 -rm -f ./$(DEPDIR)/main.Po
636 -rm -f ./$(DEPDIR)/mat_mul.Po
637 -rm -f ./$(DEPDIR)/ode.Po
638 -rm -f ./$(DEPDIR)/poly.Po
639 -rm -f ./$(DEPDIR)/sparse_hessian.Po
640 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
614641 -rm -f makefile
615642 maintainer-clean-am: distclean-am maintainer-clean-generic
616643
630657
631658 .MAKE: all check check-am install install-am install-strip
632659
633 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
660 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
634661 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
635662 distclean distclean-compile distclean-generic distclean-tags \
636663 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
123123 am__v_at_1 =
124124 DEFAULT_INCLUDES =
125125 depcomp = $(SHELL) $(top_srcdir)/depcomp
126 am__depfiles_maybe = depfiles
126 am__maybe_remake_depfiles = depfiles
127 am__depfiles_remade = ./$(DEPDIR)/link_det_lu.Po \
128 ./$(DEPDIR)/link_det_minor.Po ./$(DEPDIR)/link_mat_mul.Po \
129 ./$(DEPDIR)/link_ode.Po ./$(DEPDIR)/link_poly.Po \
130 ./$(DEPDIR)/link_sparse_hessian.Po \
131 ./$(DEPDIR)/link_sparse_jacobian.Po \
132 ./$(DEPDIR)/microsoft_timer.Po
127133 am__mv = mv -f
128134 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
129135 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
383389 *config.status*) \
384390 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
385391 *) \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
392 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
393 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
388394 esac;
389395
390396 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
410416 distclean-compile:
411417 -rm -f *.tab.c
412418
413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_lu.Po@am__quote@
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_minor.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_mat_mul.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_ode.Po@am__quote@
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_poly.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_hessian.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_jacobian.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/microsoft_timer.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_lu.Po@am__quote@ # am--include-marker
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_det_minor.Po@am__quote@ # am--include-marker
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_mat_mul.Po@am__quote@ # am--include-marker
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_ode.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_poly.Po@am__quote@ # am--include-marker
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_hessian.Po@am__quote@ # am--include-marker
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/link_sparse_jacobian.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/microsoft_timer.Po@am__quote@ # am--include-marker
427
428 $(am__depfiles_remade):
429 @$(MKDIR_P) $(@D)
430 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
431
432 am--depfiles: $(am__depfiles_remade)
421433
422434 .cpp.o:
423435 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
487499 distclean-tags:
488500 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
489501
490 distdir: $(DISTFILES)
502 distdir: $(BUILT_SOURCES)
503 $(MAKE) $(AM_MAKEFLAGS) distdir-am
504
505 distdir-am: $(DISTFILES)
491506 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
492507 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
493508 list='$(DISTFILES)'; \
556571 clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
557572
558573 distclean: distclean-am
559 -rm -rf ./$(DEPDIR)
574 -rm -f ./$(DEPDIR)/link_det_lu.Po
575 -rm -f ./$(DEPDIR)/link_det_minor.Po
576 -rm -f ./$(DEPDIR)/link_mat_mul.Po
577 -rm -f ./$(DEPDIR)/link_ode.Po
578 -rm -f ./$(DEPDIR)/link_poly.Po
579 -rm -f ./$(DEPDIR)/link_sparse_hessian.Po
580 -rm -f ./$(DEPDIR)/link_sparse_jacobian.Po
581 -rm -f ./$(DEPDIR)/microsoft_timer.Po
560582 -rm -f makefile
561583 distclean-am: clean-am distclean-compile distclean-generic \
562584 distclean-tags
602624 installcheck-am:
603625
604626 maintainer-clean: maintainer-clean-am
605 -rm -rf ./$(DEPDIR)
627 -rm -f ./$(DEPDIR)/link_det_lu.Po
628 -rm -f ./$(DEPDIR)/link_det_minor.Po
629 -rm -f ./$(DEPDIR)/link_mat_mul.Po
630 -rm -f ./$(DEPDIR)/link_ode.Po
631 -rm -f ./$(DEPDIR)/link_poly.Po
632 -rm -f ./$(DEPDIR)/link_sparse_hessian.Po
633 -rm -f ./$(DEPDIR)/link_sparse_jacobian.Po
634 -rm -f ./$(DEPDIR)/microsoft_timer.Po
606635 -rm -f makefile
607636 maintainer-clean-am: distclean-am maintainer-clean-generic
608637
622651
623652 .MAKE: install-am install-strip
624653
625 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
626 clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \
627 distclean-compile distclean-generic distclean-tags distdir dvi \
628 dvi-am html html-am info info-am install install-am \
629 install-data install-data-am install-dvi install-dvi-am \
630 install-exec install-exec-am install-html install-html-am \
631 install-info install-info-am install-man install-pdf \
632 install-pdf-am install-ps install-ps-am install-strip \
633 installcheck installcheck-am installdirs maintainer-clean \
634 maintainer-clean-generic mostlyclean mostlyclean-compile \
635 mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
636 uninstall-am
654 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
655 clean-generic clean-noinstLIBRARIES cscopelist-am ctags \
656 ctags-am distclean distclean-compile distclean-generic \
657 distclean-tags distdir dvi dvi-am html html-am info info-am \
658 install install-am install-data install-data-am install-dvi \
659 install-dvi-am install-exec install-exec-am install-html \
660 install-html-am install-info install-info-am install-man \
661 install-pdf install-pdf-am install-ps install-ps-am \
662 install-strip installcheck installcheck-am installdirs \
663 maintainer-clean maintainer-clean-generic mostlyclean \
664 mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
665 tags tags-am uninstall uninstall-am
637666
638667 .PRECIOUS: makefile
639668
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
116116 am__v_at_1 =
117117 DEFAULT_INCLUDES =
118118 depcomp = $(SHELL) $(top_srcdir)/depcomp
119 am__depfiles_maybe = depfiles
119 am__maybe_remake_depfiles = depfiles
120 am__depfiles_remade = ./$(DEPDIR)/det_by_minor_c.Po \
121 ./$(DEPDIR)/det_by_minor_cpp.Po
120122 am__mv = mv -f
121123 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
122124 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
381383 *config.status*) \
382384 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
383385 *) \
384 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
385 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
386388 esac;
387389
388390 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
411413 distclean-compile:
412414 -rm -f *.tab.c
413415
414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor_c.Po@am__quote@
415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor_cpp.Po@am__quote@
416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor_c.Po@am__quote@ # am--include-marker
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/det_by_minor_cpp.Po@am__quote@ # am--include-marker
418
419 $(am__depfiles_remade):
420 @$(MKDIR_P) $(@D)
421 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
422
423 am--depfiles: $(am__depfiles_remade)
416424
417425 .c.o:
418426 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
498506 distclean-tags:
499507 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
500508
501 distdir: $(DISTFILES)
509 distdir: $(BUILT_SOURCES)
510 $(MAKE) $(AM_MAKEFLAGS) distdir-am
511
512 distdir-am: $(DISTFILES)
502513 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
503514 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
504515 list='$(DISTFILES)'; \
571582 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
572583
573584 distclean: distclean-am
574 -rm -rf ./$(DEPDIR)
585 -rm -f ./$(DEPDIR)/det_by_minor_c.Po
586 -rm -f ./$(DEPDIR)/det_by_minor_cpp.Po
575587 -rm -f makefile
576588 distclean-am: clean-am distclean-compile distclean-generic \
577589 distclean-tags
617629 installcheck-am:
618630
619631 maintainer-clean: maintainer-clean-am
620 -rm -rf ./$(DEPDIR)
632 -rm -f ./$(DEPDIR)/det_by_minor_c.Po
633 -rm -f ./$(DEPDIR)/det_by_minor_cpp.Po
621634 -rm -f makefile
622635 maintainer-clean-am: distclean-am maintainer-clean-generic
623636
637650
638651 .MAKE: all check check-am install install-am install-strip
639652
640 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
653 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
641654 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
642655 distclean distclean-compile distclean-generic distclean-tags \
643656 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
120120 am__v_at_1 =
121121 DEFAULT_INCLUDES =
122122 depcomp = $(SHELL) $(top_srcdir)/depcomp
123 am__depfiles_maybe = depfiles
123 am__maybe_remake_depfiles = depfiles
124 am__depfiles_remade = ./$(DEPDIR)/atomic_sparsity.Po \
125 ./$(DEPDIR)/atomic_two.Po ./$(DEPDIR)/base2ad.Po \
126 ./$(DEPDIR)/for_sparse_hes.Po ./$(DEPDIR)/for_sparse_jac.Po \
127 ./$(DEPDIR)/forward.Po ./$(DEPDIR)/get_started.Po \
128 ./$(DEPDIR)/mat_mul.Po ./$(DEPDIR)/norm_sq.Po \
129 ./$(DEPDIR)/reciprocal.Po ./$(DEPDIR)/rev_sparse_hes.Po \
130 ./$(DEPDIR)/rev_sparse_jac.Po ./$(DEPDIR)/reverse.Po \
131 ./$(DEPDIR)/set_sparsity.Po ./$(DEPDIR)/tangent.Po
124132 am__mv = mv -f
125133 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
126134 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
388396 *config.status*) \
389397 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
390398 *) \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
399 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
400 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
393401 esac;
394402
395403 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
414422 distclean-compile:
415423 -rm -f *.tab.c
416424
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_sparsity.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_two.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm_sq.Po@am__quote@
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reciprocal.Po@am__quote@
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_hes.Po@am__quote@
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set_sparsity.Po@am__quote@
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tangent.Po@am__quote@
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_sparsity.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_two.Po@am__quote@ # am--include-marker
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base2ad.Po@am__quote@ # am--include-marker
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@ # am--include-marker
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@ # am--include-marker
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@ # am--include-marker
431 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
432 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mat_mul.Po@am__quote@ # am--include-marker
433 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/norm_sq.Po@am__quote@ # am--include-marker
434 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reciprocal.Po@am__quote@ # am--include-marker
435 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_hes.Po@am__quote@ # am--include-marker
436 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@ # am--include-marker
437 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@ # am--include-marker
438 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/set_sparsity.Po@am__quote@ # am--include-marker
439 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tangent.Po@am__quote@ # am--include-marker
440
441 $(am__depfiles_remade):
442 @$(MKDIR_P) $(@D)
443 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
444
445 am--depfiles: $(am__depfiles_remade)
432446
433447 .cpp.o:
434448 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
498512 distclean-tags:
499513 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
500514
501 distdir: $(DISTFILES)
515 distdir: $(BUILT_SOURCES)
516 $(MAKE) $(AM_MAKEFLAGS) distdir-am
517
518 distdir-am: $(DISTFILES)
502519 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
503520 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
504521 list='$(DISTFILES)'; \
568585 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
569586
570587 distclean: distclean-am
571 -rm -rf ./$(DEPDIR)
588 -rm -f ./$(DEPDIR)/atomic_sparsity.Po
589 -rm -f ./$(DEPDIR)/atomic_two.Po
590 -rm -f ./$(DEPDIR)/base2ad.Po
591 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
592 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
593 -rm -f ./$(DEPDIR)/forward.Po
594 -rm -f ./$(DEPDIR)/get_started.Po
595 -rm -f ./$(DEPDIR)/mat_mul.Po
596 -rm -f ./$(DEPDIR)/norm_sq.Po
597 -rm -f ./$(DEPDIR)/reciprocal.Po
598 -rm -f ./$(DEPDIR)/rev_sparse_hes.Po
599 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
600 -rm -f ./$(DEPDIR)/reverse.Po
601 -rm -f ./$(DEPDIR)/set_sparsity.Po
602 -rm -f ./$(DEPDIR)/tangent.Po
572603 -rm -f makefile
573604 distclean-am: clean-am distclean-compile distclean-generic \
574605 distclean-tags
614645 installcheck-am:
615646
616647 maintainer-clean: maintainer-clean-am
617 -rm -rf ./$(DEPDIR)
648 -rm -f ./$(DEPDIR)/atomic_sparsity.Po
649 -rm -f ./$(DEPDIR)/atomic_two.Po
650 -rm -f ./$(DEPDIR)/base2ad.Po
651 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
652 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
653 -rm -f ./$(DEPDIR)/forward.Po
654 -rm -f ./$(DEPDIR)/get_started.Po
655 -rm -f ./$(DEPDIR)/mat_mul.Po
656 -rm -f ./$(DEPDIR)/norm_sq.Po
657 -rm -f ./$(DEPDIR)/reciprocal.Po
658 -rm -f ./$(DEPDIR)/rev_sparse_hes.Po
659 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
660 -rm -f ./$(DEPDIR)/reverse.Po
661 -rm -f ./$(DEPDIR)/set_sparsity.Po
662 -rm -f ./$(DEPDIR)/tangent.Po
618663 -rm -f makefile
619664 maintainer-clean-am: distclean-am maintainer-clean-generic
620665
634679
635680 .MAKE: check-am install-am install-strip
636681
637 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
682 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
638683 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
639684 distclean distclean-compile distclean-generic distclean-tags \
640685 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
114114 am__v_at_1 =
115115 DEFAULT_INCLUDES =
116116 depcomp = $(SHELL) $(top_srcdir)/depcomp
117 am__depfiles_maybe = depfiles
117 am__maybe_remake_depfiles = depfiles
118 am__depfiles_remade = ./$(DEPDIR)/chkpoint_one.Po \
119 ./$(DEPDIR)/extended_ode.Po ./$(DEPDIR)/get_started.Po \
120 ./$(DEPDIR)/mul_level.Po ./$(DEPDIR)/ode.Po
118121 am__mv = mv -f
119122 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
120123 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
369372 *config.status*) \
370373 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
371374 *) \
372 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
373 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
375 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
376 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
374377 esac;
375378
376379 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
395398 distclean-compile:
396399 -rm -f *.tab.c
397400
398 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_one.Po@am__quote@
399 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extended_ode.Po@am__quote@
400 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@
401 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@
402 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@
401 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_one.Po@am__quote@ # am--include-marker
402 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extended_ode.Po@am__quote@ # am--include-marker
403 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_started.Po@am__quote@ # am--include-marker
404 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@ # am--include-marker
405 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode.Po@am__quote@ # am--include-marker
406
407 $(am__depfiles_remade):
408 @$(MKDIR_P) $(@D)
409 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
410
411 am--depfiles: $(am__depfiles_remade)
403412
404413 .cpp.o:
405414 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
469478 distclean-tags:
470479 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
471480
472 distdir: $(DISTFILES)
481 distdir: $(BUILT_SOURCES)
482 $(MAKE) $(AM_MAKEFLAGS) distdir-am
483
484 distdir-am: $(DISTFILES)
473485 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
474486 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
475487 list='$(DISTFILES)'; \
539551 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
540552
541553 distclean: distclean-am
542 -rm -rf ./$(DEPDIR)
554 -rm -f ./$(DEPDIR)/chkpoint_one.Po
555 -rm -f ./$(DEPDIR)/extended_ode.Po
556 -rm -f ./$(DEPDIR)/get_started.Po
557 -rm -f ./$(DEPDIR)/mul_level.Po
558 -rm -f ./$(DEPDIR)/ode.Po
543559 -rm -f makefile
544560 distclean-am: clean-am distclean-compile distclean-generic \
545561 distclean-tags
585601 installcheck-am:
586602
587603 maintainer-clean: maintainer-clean-am
588 -rm -rf ./$(DEPDIR)
604 -rm -f ./$(DEPDIR)/chkpoint_one.Po
605 -rm -f ./$(DEPDIR)/extended_ode.Po
606 -rm -f ./$(DEPDIR)/get_started.Po
607 -rm -f ./$(DEPDIR)/mul_level.Po
608 -rm -f ./$(DEPDIR)/ode.Po
589609 -rm -f makefile
590610 maintainer-clean-am: distclean-am maintainer-clean-generic
591611
605625
606626 .MAKE: check-am install-am install-strip
607627
608 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
628 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
609629 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
610630 distclean distclean-compile distclean-generic distclean-tags \
611631 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
116116 am__v_at_1 =
117117 DEFAULT_INCLUDES =
118118 depcomp = $(SHELL) $(top_srcdir)/depcomp
119 am__depfiles_maybe = depfiles
119 am__maybe_remake_depfiles = depfiles
120 am__depfiles_remade = ./$(DEPDIR)/deprecated.Po \
121 ./$(DEPDIR)/old_mat_mul.Po ./$(DEPDIR)/old_reciprocal.Po \
122 ./$(DEPDIR)/old_tan.Po ./$(DEPDIR)/old_usead_1.Po \
123 ./$(DEPDIR)/old_usead_2.Po ./$(DEPDIR)/omp_alloc.Po \
124 ./$(DEPDIR)/track_new_del.Po ./$(DEPDIR)/zdouble.Po
120125 am__mv = mv -f
121126 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
122127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
388393 *config.status*) \
389394 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
390395 *) \
391 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
392 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
396 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
397 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
393398 esac;
394399
395400 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
414419 distclean-compile:
415420 -rm -f *.tab.c
416421
417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deprecated.Po@am__quote@
418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_mat_mul.Po@am__quote@
419 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_reciprocal.Po@am__quote@
420 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_tan.Po@am__quote@
421 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_usead_1.Po@am__quote@
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_usead_2.Po@am__quote@
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/omp_alloc.Po@am__quote@
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/track_new_del.Po@am__quote@
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdouble.Po@am__quote@
422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deprecated.Po@am__quote@ # am--include-marker
423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_mat_mul.Po@am__quote@ # am--include-marker
424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_reciprocal.Po@am__quote@ # am--include-marker
425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_tan.Po@am__quote@ # am--include-marker
426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_usead_1.Po@am__quote@ # am--include-marker
427 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/old_usead_2.Po@am__quote@ # am--include-marker
428 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/omp_alloc.Po@am__quote@ # am--include-marker
429 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/track_new_del.Po@am__quote@ # am--include-marker
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zdouble.Po@am__quote@ # am--include-marker
431
432 $(am__depfiles_remade):
433 @$(MKDIR_P) $(@D)
434 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
435
436 am--depfiles: $(am__depfiles_remade)
426437
427438 .cpp.o:
428439 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
492503 distclean-tags:
493504 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
494505
495 distdir: $(DISTFILES)
506 distdir: $(BUILT_SOURCES)
507 $(MAKE) $(AM_MAKEFLAGS) distdir-am
508
509 distdir-am: $(DISTFILES)
496510 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
497511 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
498512 list='$(DISTFILES)'; \
562576 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
563577
564578 distclean: distclean-am
565 -rm -rf ./$(DEPDIR)
579 -rm -f ./$(DEPDIR)/deprecated.Po
580 -rm -f ./$(DEPDIR)/old_mat_mul.Po
581 -rm -f ./$(DEPDIR)/old_reciprocal.Po
582 -rm -f ./$(DEPDIR)/old_tan.Po
583 -rm -f ./$(DEPDIR)/old_usead_1.Po
584 -rm -f ./$(DEPDIR)/old_usead_2.Po
585 -rm -f ./$(DEPDIR)/omp_alloc.Po
586 -rm -f ./$(DEPDIR)/track_new_del.Po
587 -rm -f ./$(DEPDIR)/zdouble.Po
566588 -rm -f makefile
567589 distclean-am: clean-am distclean-compile distclean-generic \
568590 distclean-tags
608630 installcheck-am:
609631
610632 maintainer-clean: maintainer-clean-am
611 -rm -rf ./$(DEPDIR)
633 -rm -f ./$(DEPDIR)/deprecated.Po
634 -rm -f ./$(DEPDIR)/old_mat_mul.Po
635 -rm -f ./$(DEPDIR)/old_reciprocal.Po
636 -rm -f ./$(DEPDIR)/old_tan.Po
637 -rm -f ./$(DEPDIR)/old_usead_1.Po
638 -rm -f ./$(DEPDIR)/old_usead_2.Po
639 -rm -f ./$(DEPDIR)/omp_alloc.Po
640 -rm -f ./$(DEPDIR)/track_new_del.Po
641 -rm -f ./$(DEPDIR)/zdouble.Po
612642 -rm -f makefile
613643 maintainer-clean-am: distclean-am maintainer-clean-generic
614644
628658
629659 .MAKE: check-am install-am install-strip
630660
631 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
661 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
632662 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
633663 distclean distclean-compile distclean-generic distclean-tags \
634664 distdir dvi dvi-am html html-am info info-am install \
0 # makefile.in generated by automake 1.15.1 from makefile.am.
0 # makefile.in generated by automake 1.16.1 from makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
186186 am__v_at_1 =
187187 DEFAULT_INCLUDES =
188188 depcomp = $(SHELL) $(top_srcdir)/depcomp
189 am__depfiles_maybe = depfiles
189 am__maybe_remake_depfiles = depfiles
190 am__depfiles_remade = ./$(DEPDIR)/acos.Po ./$(DEPDIR)/acosh.Po \
191 ./$(DEPDIR)/add.Po ./$(DEPDIR)/add_eq.Po \
192 ./$(DEPDIR)/add_zero.Po ./$(DEPDIR)/adfun_copy.Po \
193 ./$(DEPDIR)/alloc_openmp.Po ./$(DEPDIR)/asin.Po \
194 ./$(DEPDIR)/asinh.Po ./$(DEPDIR)/assign.Po ./$(DEPDIR)/atan.Po \
195 ./$(DEPDIR)/atan2.Po ./$(DEPDIR)/atanh.Po \
196 ./$(DEPDIR)/atomic_three.Po ./$(DEPDIR)/azmul.Po \
197 ./$(DEPDIR)/base_adolc.Po ./$(DEPDIR)/base_alloc.Po \
198 ./$(DEPDIR)/bool_sparsity.Po \
199 ./$(DEPDIR)/check_simple_vector.Po ./$(DEPDIR)/chkpoint_one.Po \
200 ./$(DEPDIR)/chkpoint_two.Po ./$(DEPDIR)/compare.Po \
201 ./$(DEPDIR)/compare_change.Po ./$(DEPDIR)/cond_exp.Po \
202 ./$(DEPDIR)/cond_exp_ad.Po ./$(DEPDIR)/cond_exp_rev.Po \
203 ./$(DEPDIR)/copy.Po ./$(DEPDIR)/cos.Po ./$(DEPDIR)/cosh.Po \
204 ./$(DEPDIR)/cppad_eigen.Po ./$(DEPDIR)/dbl_epsilon.Po \
205 ./$(DEPDIR)/dependency.Po ./$(DEPDIR)/div.Po \
206 ./$(DEPDIR)/div_eq.Po ./$(DEPDIR)/div_zero_one.Po \
207 ./$(DEPDIR)/eigen_mat_inv.Po ./$(DEPDIR)/erf.Po \
208 ./$(DEPDIR)/exp.Po ./$(DEPDIR)/expm1.Po \
209 ./$(DEPDIR)/extern_value.Po ./$(DEPDIR)/fabs.Po \
210 ./$(DEPDIR)/for_hess.Po ./$(DEPDIR)/for_sparse_hes.Po \
211 ./$(DEPDIR)/for_sparse_jac.Po ./$(DEPDIR)/forward.Po \
212 ./$(DEPDIR)/forward_dir.Po ./$(DEPDIR)/forward_order.Po \
213 ./$(DEPDIR)/from_base.Po ./$(DEPDIR)/fun_check.Po \
214 ./$(DEPDIR)/general.Po ./$(DEPDIR)/hes_sparsity.Po \
215 ./$(DEPDIR)/ipopt_solve.Po ./$(DEPDIR)/jacobian.Po \
216 ./$(DEPDIR)/log.Po ./$(DEPDIR)/log10.Po ./$(DEPDIR)/log1p.Po \
217 ./$(DEPDIR)/mul.Po ./$(DEPDIR)/mul_cond_rev.Po \
218 ./$(DEPDIR)/mul_cskip.Po ./$(DEPDIR)/mul_eq.Po \
219 ./$(DEPDIR)/mul_level.Po ./$(DEPDIR)/mul_zdouble.Po \
220 ./$(DEPDIR)/mul_zero_one.Po ./$(DEPDIR)/near_equal_ext.Po \
221 ./$(DEPDIR)/neg.Po ./$(DEPDIR)/new_dynamic.Po \
222 ./$(DEPDIR)/num_limits.Po ./$(DEPDIR)/ode_err_control.Po \
223 ./$(DEPDIR)/optimize.Po ./$(DEPDIR)/parameter.Po \
224 ./$(DEPDIR)/poly.Po ./$(DEPDIR)/pow.Po ./$(DEPDIR)/pow_int.Po \
225 ./$(DEPDIR)/print_for.Po ./$(DEPDIR)/rev_sparse_jac.Po \
226 ./$(DEPDIR)/rev_two.Po ./$(DEPDIR)/reverse.Po \
227 ./$(DEPDIR)/romberg_one.Po ./$(DEPDIR)/rosen_34.Po \
228 ./$(DEPDIR)/runge_45.Po ./$(DEPDIR)/simple_vector.Po \
229 ./$(DEPDIR)/sin.Po ./$(DEPDIR)/sin_cos.Po ./$(DEPDIR)/sinh.Po \
230 ./$(DEPDIR)/sparse_hessian.Po ./$(DEPDIR)/sparse_jac_work.Po \
231 ./$(DEPDIR)/sparse_jacobian.Po ./$(DEPDIR)/sparse_sub_hes.Po \
232 ./$(DEPDIR)/sparse_vec_ad.Po ./$(DEPDIR)/sqrt.Po \
233 ./$(DEPDIR)/std_math.Po ./$(DEPDIR)/sub.Po \
234 ./$(DEPDIR)/sub_eq.Po ./$(DEPDIR)/sub_zero.Po \
235 ./$(DEPDIR)/subgraph_1.Po ./$(DEPDIR)/subgraph_2.Po \
236 ./$(DEPDIR)/tan.Po ./$(DEPDIR)/test_vector.Po \
237 ./$(DEPDIR)/to_string.Po ./$(DEPDIR)/value.Po \
238 ./$(DEPDIR)/vec_ad.Po ./$(DEPDIR)/vec_ad_par.Po \
239 ./$(DEPDIR)/vec_unary.Po
190240 am__mv = mv -f
191241 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
192242 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
583633 *config.status*) \
584634 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
585635 *) \
586 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
587 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
636 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
637 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
588638 esac;
589639
590640 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
609659 distclean-compile:
610660 -rm -f *.tab.c
611661
612 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acos.Po@am__quote@
613 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acosh.Po@am__quote@
614 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add.Po@am__quote@
615 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_eq.Po@am__quote@
616 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_zero.Po@am__quote@
617 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/adfun_copy.Po@am__quote@
618 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc_openmp.Po@am__quote@
619 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asin.Po@am__quote@
620 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asinh.Po@am__quote@
621 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assign.Po@am__quote@
622 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan.Po@am__quote@
623 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan2.Po@am__quote@
624 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atanh.Po@am__quote@
625 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_three.Po@am__quote@
626 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/azmul.Po@am__quote@
627 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_adolc.Po@am__quote@
628 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_alloc.Po@am__quote@
629 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bool_sparsity.Po@am__quote@
630 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_simple_vector.Po@am__quote@
631 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_one.Po@am__quote@
632 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_two.Po@am__quote@
633 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@
634 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_change.Po@am__quote@
635 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp.Po@am__quote@
636 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp_ad.Po@am__quote@
637 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp_rev.Po@am__quote@
638 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/copy.Po@am__quote@
639 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cos.Po@am__quote@
640 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cosh.Po@am__quote@
641 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_eigen.Po@am__quote@
642 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dbl_epsilon.Po@am__quote@
643 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dependency.Po@am__quote@
644 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div.Po@am__quote@
645 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_eq.Po@am__quote@
646 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_zero_one.Po@am__quote@
647 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_inv.Po@am__quote@
648 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf.Po@am__quote@
649 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp.Po@am__quote@
650 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expm1.Po@am__quote@
651 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extern_value.Po@am__quote@
652 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fabs.Po@am__quote@
653 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_hess.Po@am__quote@
654 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@
655 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@
656 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@
657 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_dir.Po@am__quote@
658 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_order.Po@am__quote@
659 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/from_base.Po@am__quote@
660 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_check.Po@am__quote@
661 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/general.Po@am__quote@
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_sparsity.Po@am__quote@
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipopt_solve.Po@am__quote@
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jacobian.Po@am__quote@
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log10.Po@am__quote@
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log1p.Po@am__quote@
668 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul.Po@am__quote@
669 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_cond_rev.Po@am__quote@
670 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_cskip.Po@am__quote@
671 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_eq.Po@am__quote@
672 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@
673 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_zdouble.Po@am__quote@
674 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_zero_one.Po@am__quote@
675 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal_ext.Po@am__quote@
676 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/neg.Po@am__quote@
677 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new_dynamic.Po@am__quote@
678 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/num_limits.Po@am__quote@
679 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_control.Po@am__quote@
680 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optimize.Po@am__quote@
681 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parameter.Po@am__quote@
682 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@
683 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow.Po@am__quote@
684 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_int.Po@am__quote@
685 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@
686 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@
687 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_two.Po@am__quote@
688 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@
689 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_one.Po@am__quote@
690 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rosen_34.Po@am__quote@
691 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge_45.Po@am__quote@
692 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_vector.Po@am__quote@
693 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin.Po@am__quote@
694 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin_cos.Po@am__quote@
695 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sinh.Po@am__quote@
696 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@
697 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_work.Po@am__quote@
698 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@
699 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_sub_hes.Po@am__quote@
700 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_vec_ad.Po@am__quote@
701 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqrt.Po@am__quote@
702 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/std_math.Po@am__quote@
703 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub.Po@am__quote@
704 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_eq.Po@am__quote@
705 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_zero.Po@am__quote@
706 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_1.Po@am__quote@
707 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_2.Po@am__quote@
708 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tan.Po@am__quote@
709 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_vector.Po@am__quote@
710 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/to_string.Po@am__quote@
711 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@
712 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad.Po@am__quote@
713 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad_par.Po@am__quote@
714 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_unary.Po@am__quote@
662 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acos.Po@am__quote@ # am--include-marker
663 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acosh.Po@am__quote@ # am--include-marker
664 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add.Po@am__quote@ # am--include-marker
665 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_eq.Po@am__quote@ # am--include-marker
666 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/add_zero.Po@am__quote@ # am--include-marker
667 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/adfun_copy.Po@am__quote@ # am--include-marker
668 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc_openmp.Po@am__quote@ # am--include-marker
669 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asin.Po@am__quote@ # am--include-marker
670 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asinh.Po@am__quote@ # am--include-marker
671 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assign.Po@am__quote@ # am--include-marker
672 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan.Po@am__quote@ # am--include-marker
673 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atan2.Po@am__quote@ # am--include-marker
674 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atanh.Po@am__quote@ # am--include-marker
675 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atomic_three.Po@am__quote@ # am--include-marker
676 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/azmul.Po@am__quote@ # am--include-marker
677 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_adolc.Po@am__quote@ # am--include-marker
678 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_alloc.Po@am__quote@ # am--include-marker
679 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bool_sparsity.Po@am__quote@ # am--include-marker
680 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_simple_vector.Po@am__quote@ # am--include-marker
681 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_one.Po@am__quote@ # am--include-marker
682 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chkpoint_two.Po@am__quote@ # am--include-marker
683 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare.Po@am__quote@ # am--include-marker
684 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compare_change.Po@am__quote@ # am--include-marker
685 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp.Po@am__quote@ # am--include-marker
686 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp_ad.Po@am__quote@ # am--include-marker
687 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cond_exp_rev.Po@am__quote@ # am--include-marker
688 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/copy.Po@am__quote@ # am--include-marker
689 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cos.Po@am__quote@ # am--include-marker
690 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cosh.Po@am__quote@ # am--include-marker
691 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cppad_eigen.Po@am__quote@ # am--include-marker
692 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dbl_epsilon.Po@am__quote@ # am--include-marker
693 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dependency.Po@am__quote@ # am--include-marker
694 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div.Po@am__quote@ # am--include-marker
695 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_eq.Po@am__quote@ # am--include-marker
696 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/div_zero_one.Po@am__quote@ # am--include-marker
697 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eigen_mat_inv.Po@am__quote@ # am--include-marker
698 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/erf.Po@am__quote@ # am--include-marker
699 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exp.Po@am__quote@ # am--include-marker
700 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expm1.Po@am__quote@ # am--include-marker
701 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extern_value.Po@am__quote@ # am--include-marker
702 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fabs.Po@am__quote@ # am--include-marker
703 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_hess.Po@am__quote@ # am--include-marker
704 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_hes.Po@am__quote@ # am--include-marker
705 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/for_sparse_jac.Po@am__quote@ # am--include-marker
706 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward.Po@am__quote@ # am--include-marker
707 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_dir.Po@am__quote@ # am--include-marker
708 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/forward_order.Po@am__quote@ # am--include-marker
709 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/from_base.Po@am__quote@ # am--include-marker
710 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fun_check.Po@am__quote@ # am--include-marker
711 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/general.Po@am__quote@ # am--include-marker
712 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hes_sparsity.Po@am__quote@ # am--include-marker
713 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipopt_solve.Po@am__quote@ # am--include-marker
714 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jacobian.Po@am__quote@ # am--include-marker
715 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@ # am--include-marker
716 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log10.Po@am__quote@ # am--include-marker
717 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log1p.Po@am__quote@ # am--include-marker
718 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul.Po@am__quote@ # am--include-marker
719 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_cond_rev.Po@am__quote@ # am--include-marker
720 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_cskip.Po@am__quote@ # am--include-marker
721 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_eq.Po@am__quote@ # am--include-marker
722 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_level.Po@am__quote@ # am--include-marker
723 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_zdouble.Po@am__quote@ # am--include-marker
724 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mul_zero_one.Po@am__quote@ # am--include-marker
725 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/near_equal_ext.Po@am__quote@ # am--include-marker
726 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/neg.Po@am__quote@ # am--include-marker
727 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new_dynamic.Po@am__quote@ # am--include-marker
728 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/num_limits.Po@am__quote@ # am--include-marker
729 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ode_err_control.Po@am__quote@ # am--include-marker
730 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optimize.Po@am__quote@ # am--include-marker
731 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parameter.Po@am__quote@ # am--include-marker
732 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/poly.Po@am__quote@ # am--include-marker
733 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow.Po@am__quote@ # am--include-marker
734 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pow_int.Po@am__quote@ # am--include-marker
735 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_for.Po@am__quote@ # am--include-marker
736 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_sparse_jac.Po@am__quote@ # am--include-marker
737 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rev_two.Po@am__quote@ # am--include-marker
738 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reverse.Po@am__quote@ # am--include-marker
739 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/romberg_one.Po@am__quote@ # am--include-marker
740 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rosen_34.Po@am__quote@ # am--include-marker
741 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/runge_45.Po@am__quote@ # am--include-marker
742 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_vector.Po@am__quote@ # am--include-marker
743 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin.Po@am__quote@ # am--include-marker
744 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sin_cos.Po@am__quote@ # am--include-marker
745 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sinh.Po@am__quote@ # am--include-marker
746 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_hessian.Po@am__quote@ # am--include-marker
747 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jac_work.Po@am__quote@ # am--include-marker
748 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_jacobian.Po@am__quote@ # am--include-marker
749 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_sub_hes.Po@am__quote@ # am--include-marker
750 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sparse_vec_ad.Po@am__quote@ # am--include-marker
751 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqrt.Po@am__quote@ # am--include-marker
752 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/std_math.Po@am__quote@ # am--include-marker
753 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub.Po@am__quote@ # am--include-marker
754 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_eq.Po@am__quote@ # am--include-marker
755 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sub_zero.Po@am__quote@ # am--include-marker
756 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_1.Po@am__quote@ # am--include-marker
757 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subgraph_2.Po@am__quote@ # am--include-marker
758 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tan.Po@am__quote@ # am--include-marker
759 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_vector.Po@am__quote@ # am--include-marker
760 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/to_string.Po@am__quote@ # am--include-marker
761 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@ # am--include-marker
762 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad.Po@am__quote@ # am--include-marker
763 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_ad_par.Po@am__quote@ # am--include-marker
764 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vec_unary.Po@am__quote@ # am--include-marker
765
766 $(am__depfiles_remade):
767 @$(MKDIR_P) $(@D)
768 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
769
770 am--depfiles: $(am__depfiles_remade)
715771
716772 .cpp.o:
717773 @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
781837 distclean-tags:
782838 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
783839
784 distdir: $(DISTFILES)
840 distdir: $(BUILT_SOURCES)
841 $(MAKE) $(AM_MAKEFLAGS) distdir-am
842
843 distdir-am: $(DISTFILES)
785844 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
786845 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
787846 list='$(DISTFILES)'; \
851910 clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am
852911
853912 distclean: distclean-am
854 -rm -rf ./$(DEPDIR)
913 -rm -f ./$(DEPDIR)/acos.Po
914 -rm -f ./$(DEPDIR)/acosh.Po
915 -rm -f ./$(DEPDIR)/add.Po
916 -rm -f ./$(DEPDIR)/add_eq.Po
917 -rm -f ./$(DEPDIR)/add_zero.Po
918 -rm -f ./$(DEPDIR)/adfun_copy.Po
919 -rm -f ./$(DEPDIR)/alloc_openmp.Po
920 -rm -f ./$(DEPDIR)/asin.Po
921 -rm -f ./$(DEPDIR)/asinh.Po
922 -rm -f ./$(DEPDIR)/assign.Po
923 -rm -f ./$(DEPDIR)/atan.Po
924 -rm -f ./$(DEPDIR)/atan2.Po
925 -rm -f ./$(DEPDIR)/atanh.Po
926 -rm -f ./$(DEPDIR)/atomic_three.Po
927 -rm -f ./$(DEPDIR)/azmul.Po
928 -rm -f ./$(DEPDIR)/base_adolc.Po
929 -rm -f ./$(DEPDIR)/base_alloc.Po
930 -rm -f ./$(DEPDIR)/bool_sparsity.Po
931 -rm -f ./$(DEPDIR)/check_simple_vector.Po
932 -rm -f ./$(DEPDIR)/chkpoint_one.Po
933 -rm -f ./$(DEPDIR)/chkpoint_two.Po
934 -rm -f ./$(DEPDIR)/compare.Po
935 -rm -f ./$(DEPDIR)/compare_change.Po
936 -rm -f ./$(DEPDIR)/cond_exp.Po
937 -rm -f ./$(DEPDIR)/cond_exp_ad.Po
938 -rm -f ./$(DEPDIR)/cond_exp_rev.Po
939 -rm -f ./$(DEPDIR)/copy.Po
940 -rm -f ./$(DEPDIR)/cos.Po
941 -rm -f ./$(DEPDIR)/cosh.Po
942 -rm -f ./$(DEPDIR)/cppad_eigen.Po
943 -rm -f ./$(DEPDIR)/dbl_epsilon.Po
944 -rm -f ./$(DEPDIR)/dependency.Po
945 -rm -f ./$(DEPDIR)/div.Po
946 -rm -f ./$(DEPDIR)/div_eq.Po
947 -rm -f ./$(DEPDIR)/div_zero_one.Po
948 -rm -f ./$(DEPDIR)/eigen_mat_inv.Po
949 -rm -f ./$(DEPDIR)/erf.Po
950 -rm -f ./$(DEPDIR)/exp.Po
951 -rm -f ./$(DEPDIR)/expm1.Po
952 -rm -f ./$(DEPDIR)/extern_value.Po
953 -rm -f ./$(DEPDIR)/fabs.Po
954 -rm -f ./$(DEPDIR)/for_hess.Po
955 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
956 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
957 -rm -f ./$(DEPDIR)/forward.Po
958 -rm -f ./$(DEPDIR)/forward_dir.Po
959 -rm -f ./$(DEPDIR)/forward_order.Po
960 -rm -f ./$(DEPDIR)/from_base.Po
961 -rm -f ./$(DEPDIR)/fun_check.Po
962 -rm -f ./$(DEPDIR)/general.Po
963 -rm -f ./$(DEPDIR)/hes_sparsity.Po
964 -rm -f ./$(DEPDIR)/ipopt_solve.Po
965 -rm -f ./$(DEPDIR)/jacobian.Po
966 -rm -f ./$(DEPDIR)/log.Po
967 -rm -f ./$(DEPDIR)/log10.Po
968 -rm -f ./$(DEPDIR)/log1p.Po
969 -rm -f ./$(DEPDIR)/mul.Po
970 -rm -f ./$(DEPDIR)/mul_cond_rev.Po
971 -rm -f ./$(DEPDIR)/mul_cskip.Po
972 -rm -f ./$(DEPDIR)/mul_eq.Po
973 -rm -f ./$(DEPDIR)/mul_level.Po
974 -rm -f ./$(DEPDIR)/mul_zdouble.Po
975 -rm -f ./$(DEPDIR)/mul_zero_one.Po
976 -rm -f ./$(DEPDIR)/near_equal_ext.Po
977 -rm -f ./$(DEPDIR)/neg.Po
978 -rm -f ./$(DEPDIR)/new_dynamic.Po
979 -rm -f ./$(DEPDIR)/num_limits.Po
980 -rm -f ./$(DEPDIR)/ode_err_control.Po
981 -rm -f ./$(DEPDIR)/optimize.Po
982 -rm -f ./$(DEPDIR)/parameter.Po
983 -rm -f ./$(DEPDIR)/poly.Po
984 -rm -f ./$(DEPDIR)/pow.Po
985 -rm -f ./$(DEPDIR)/pow_int.Po
986 -rm -f ./$(DEPDIR)/print_for.Po
987 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
988 -rm -f ./$(DEPDIR)/rev_two.Po
989 -rm -f ./$(DEPDIR)/reverse.Po
990 -rm -f ./$(DEPDIR)/romberg_one.Po
991 -rm -f ./$(DEPDIR)/rosen_34.Po
992 -rm -f ./$(DEPDIR)/runge_45.Po
993 -rm -f ./$(DEPDIR)/simple_vector.Po
994 -rm -f ./$(DEPDIR)/sin.Po
995 -rm -f ./$(DEPDIR)/sin_cos.Po
996 -rm -f ./$(DEPDIR)/sinh.Po
997 -rm -f ./$(DEPDIR)/sparse_hessian.Po
998 -rm -f ./$(DEPDIR)/sparse_jac_work.Po
999 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
1000 -rm -f ./$(DEPDIR)/sparse_sub_hes.Po
1001 -rm -f ./$(DEPDIR)/sparse_vec_ad.Po
1002 -rm -f ./$(DEPDIR)/sqrt.Po
1003 -rm -f ./$(DEPDIR)/std_math.Po
1004 -rm -f ./$(DEPDIR)/sub.Po
1005 -rm -f ./$(DEPDIR)/sub_eq.Po
1006 -rm -f ./$(DEPDIR)/sub_zero.Po
1007 -rm -f ./$(DEPDIR)/subgraph_1.Po
1008 -rm -f ./$(DEPDIR)/subgraph_2.Po
1009 -rm -f ./$(DEPDIR)/tan.Po
1010 -rm -f ./$(DEPDIR)/test_vector.Po
1011 -rm -f ./$(DEPDIR)/to_string.Po
1012 -rm -f ./$(DEPDIR)/value.Po
1013 -rm -f ./$(DEPDIR)/vec_ad.Po
1014 -rm -f ./$(DEPDIR)/vec_ad_par.Po
1015 -rm -f ./$(DEPDIR)/vec_unary.Po
8551016 -rm -f makefile
8561017 distclean-am: clean-am distclean-compile distclean-generic \
8571018 distclean-tags
8971058 installcheck-am:
8981059
8991060 maintainer-clean: maintainer-clean-am
900 -rm -rf ./$(DEPDIR)
1061 -rm -f ./$(DEPDIR)/acos.Po
1062 -rm -f ./$(DEPDIR)/acosh.Po
1063 -rm -f ./$(DEPDIR)/add.Po
1064 -rm -f ./$(DEPDIR)/add_eq.Po
1065 -rm -f ./$(DEPDIR)/add_zero.Po
1066 -rm -f ./$(DEPDIR)/adfun_copy.Po
1067 -rm -f ./$(DEPDIR)/alloc_openmp.Po
1068 -rm -f ./$(DEPDIR)/asin.Po
1069 -rm -f ./$(DEPDIR)/asinh.Po
1070 -rm -f ./$(DEPDIR)/assign.Po
1071 -rm -f ./$(DEPDIR)/atan.Po
1072 -rm -f ./$(DEPDIR)/atan2.Po
1073 -rm -f ./$(DEPDIR)/atanh.Po
1074 -rm -f ./$(DEPDIR)/atomic_three.Po
1075 -rm -f ./$(DEPDIR)/azmul.Po
1076 -rm -f ./$(DEPDIR)/base_adolc.Po
1077 -rm -f ./$(DEPDIR)/base_alloc.Po
1078 -rm -f ./$(DEPDIR)/bool_sparsity.Po
1079 -rm -f ./$(DEPDIR)/check_simple_vector.Po
1080 -rm -f ./$(DEPDIR)/chkpoint_one.Po
1081 -rm -f ./$(DEPDIR)/chkpoint_two.Po
1082 -rm -f ./$(DEPDIR)/compare.Po
1083 -rm -f ./$(DEPDIR)/compare_change.Po
1084 -rm -f ./$(DEPDIR)/cond_exp.Po
1085 -rm -f ./$(DEPDIR)/cond_exp_ad.Po
1086 -rm -f ./$(DEPDIR)/cond_exp_rev.Po
1087 -rm -f ./$(DEPDIR)/copy.Po
1088 -rm -f ./$(DEPDIR)/cos.Po
1089 -rm -f ./$(DEPDIR)/cosh.Po
1090 -rm -f ./$(DEPDIR)/cppad_eigen.Po
1091 -rm -f ./$(DEPDIR)/dbl_epsilon.Po
1092 -rm -f ./$(DEPDIR)/dependency.Po
1093 -rm -f ./$(DEPDIR)/div.Po
1094 -rm -f ./$(DEPDIR)/div_eq.Po
1095 -rm -f ./$(DEPDIR)/div_zero_one.Po
1096 -rm -f ./$(DEPDIR)/eigen_mat_inv.Po
1097 -rm -f ./$(DEPDIR)/erf.Po
1098 -rm -f ./$(DEPDIR)/exp.Po
1099 -rm -f ./$(DEPDIR)/expm1.Po
1100 -rm -f ./$(DEPDIR)/extern_value.Po
1101 -rm -f ./$(DEPDIR)/fabs.Po
1102 -rm -f ./$(DEPDIR)/for_hess.Po
1103 -rm -f ./$(DEPDIR)/for_sparse_hes.Po
1104 -rm -f ./$(DEPDIR)/for_sparse_jac.Po
1105 -rm -f ./$(DEPDIR)/forward.Po
1106 -rm -f ./$(DEPDIR)/forward_dir.Po
1107 -rm -f ./$(DEPDIR)/forward_order.Po
1108 -rm -f ./$(DEPDIR)/from_base.Po
1109 -rm -f ./$(DEPDIR)/fun_check.Po
1110 -rm -f ./$(DEPDIR)/general.Po
1111 -rm -f ./$(DEPDIR)/hes_sparsity.Po
1112 -rm -f ./$(DEPDIR)/ipopt_solve.Po
1113 -rm -f ./$(DEPDIR)/jacobian.Po
1114 -rm -f ./$(DEPDIR)/log.Po
1115 -rm -f ./$(DEPDIR)/log10.Po
1116 -rm -f ./$(DEPDIR)/log1p.Po
1117 -rm -f ./$(DEPDIR)/mul.Po
1118 -rm -f ./$(DEPDIR)/mul_cond_rev.Po
1119 -rm -f ./$(DEPDIR)/mul_cskip.Po
1120 -rm -f ./$(DEPDIR)/mul_eq.Po
1121 -rm -f ./$(DEPDIR)/mul_level.Po
1122 -rm -f ./$(DEPDIR)/mul_zdouble.Po
1123 -rm -f ./$(DEPDIR)/mul_zero_one.Po
1124 -rm -f ./$(DEPDIR)/near_equal_ext.Po
1125 -rm -f ./$(DEPDIR)/neg.Po
1126 -rm -f ./$(DEPDIR)/new_dynamic.Po
1127 -rm -f ./$(DEPDIR)/num_limits.Po
1128 -rm -f ./$(DEPDIR)/ode_err_control.Po
1129 -rm -f ./$(DEPDIR)/optimize.Po
1130 -rm -f ./$(DEPDIR)/parameter.Po
1131 -rm -f ./$(DEPDIR)/poly.Po
1132 -rm -f ./$(DEPDIR)/pow.Po
1133 -rm -f ./$(DEPDIR)/pow_int.Po
1134 -rm -f ./$(DEPDIR)/print_for.Po
1135 -rm -f ./$(DEPDIR)/rev_sparse_jac.Po
1136 -rm -f ./$(DEPDIR)/rev_two.Po
1137 -rm -f ./$(DEPDIR)/reverse.Po
1138 -rm -f ./$(DEPDIR)/romberg_one.Po
1139 -rm -f ./$(DEPDIR)/rosen_34.Po
1140 -rm -f ./$(DEPDIR)/runge_45.Po
1141 -rm -f ./$(DEPDIR)/simple_vector.Po
1142 -rm -f ./$(DEPDIR)/sin.Po
1143 -rm -f ./$(DEPDIR)/sin_cos.Po
1144 -rm -f ./$(DEPDIR)/sinh.Po
1145 -rm -f ./$(DEPDIR)/sparse_hessian.Po
1146 -rm -f ./$(DEPDIR)/sparse_jac_work.Po
1147 -rm -f ./$(DEPDIR)/sparse_jacobian.Po
1148 -rm -f ./$(DEPDIR)/sparse_sub_hes.Po
1149 -rm -f ./$(DEPDIR)/sparse_vec_ad.Po
1150 -rm -f ./$(DEPDIR)/sqrt.Po
1151 -rm -f ./$(DEPDIR)/std_math.Po
1152 -rm -f ./$(DEPDIR)/sub.Po
1153 -rm -f ./$(DEPDIR)/sub_eq.Po
1154 -rm -f ./$(DEPDIR)/sub_zero.Po
1155 -rm -f ./$(DEPDIR)/subgraph_1.Po
1156 -rm -f ./$(DEPDIR)/subgraph_2.Po
1157 -rm -f ./$(DEPDIR)/tan.Po
1158 -rm -f ./$(DEPDIR)/test_vector.Po
1159 -rm -f ./$(DEPDIR)/to_string.Po
1160 -rm -f ./$(DEPDIR)/value.Po
1161 -rm -f ./$(DEPDIR)/vec_ad.Po
1162 -rm -f ./$(DEPDIR)/vec_ad_par.Po
1163 -rm -f ./$(DEPDIR)/vec_unary.Po
9011164 -rm -f makefile
9021165 maintainer-clean-am: distclean-am maintainer-clean-generic
9031166
9171180
9181181 .MAKE: check-am install-am install-strip
9191182
920 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
1183 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
9211184 clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \
9221185 distclean distclean-compile distclean-generic distclean-tags \
9231186 distdir dvi dvi-am html html-am info info-am install \