mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-21 19:45:10 +00:00
replace full audiofile source with a stripped down single-file version
same idea as n64decomp/sm64's armips.cpp you can generate the file by applying tools/util/audiofile_strip.patch and running tools/util/generate_audiofile_cpp.py on a full audiofile source package
This commit is contained in:
parent
aa5dfaa7c2
commit
8c1257eca1
397 changed files with 16391 additions and 203936 deletions
|
@ -39,7 +39,7 @@ aifc_decode_CFLAGS := $(OPT_FLAG)
|
|||
aiff_extract_codebook_SOURCES := aiff_extract_codebook.c
|
||||
|
||||
tabledesign_SOURCES := sdk-tools/tabledesign/codebook.c sdk-tools/tabledesign/estimate.c sdk-tools/tabledesign/print.c sdk-tools/tabledesign/tabledesign.c
|
||||
tabledesign_CFLAGS := -Wno-uninitialized -laudiofile -lstdc++
|
||||
tabledesign_CFLAGS := -Wno-uninitialized -Iaudiofile -Laudiofile -laudiofile -lstdc++
|
||||
|
||||
vadpcm_enc_SOURCES := sdk-tools/adpcm/vadpcm_enc.c sdk-tools/adpcm/vpredictor.c sdk-tools/adpcm/quant.c sdk-tools/adpcm/util.c sdk-tools/adpcm/vencode.c
|
||||
vadpcm_enc_CFLAGS := -Wno-unused-result -Wno-uninitialized -Wno-sign-compare -Wno-absolute-value
|
||||
|
@ -50,11 +50,17 @@ extract_data_for_mio_CFLAGS := $(OPT_FLAG)
|
|||
skyconv_SOURCES := skyconv.c n64graphics.c utils.c
|
||||
skyconv_CFLAGS := $(OPT_FLAG) -lm
|
||||
|
||||
all: $(PROGRAMS)
|
||||
LIBAUDIOFILE := audiofile/libaudiofile.a
|
||||
|
||||
all: $(LIBAUDIOFILE) $(PROGRAMS)
|
||||
|
||||
$(LIBAUDIOFILE):
|
||||
@$(MAKE) -C audiofile
|
||||
|
||||
clean:
|
||||
$(RM) $(PROGRAMS)
|
||||
$(RM) gen_asset_list
|
||||
$(MAKE) -C audiofile clean
|
||||
|
||||
define COMPILE
|
||||
$(1): $($1_SOURCES)
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
Thanks to all who have contributed patches for the Audio File Library:
|
||||
* Jason Allen
|
||||
* Julien Boulnois
|
||||
* Davy Durham
|
||||
* Bruce Forsberg
|
||||
* Fabrizio Gennari
|
||||
* Simon Kagedal
|
||||
* Thomas Klausner
|
||||
* Daniel Kobras
|
||||
* Michael Krause
|
||||
* Wim Lewis
|
||||
* Eric Mitchell
|
||||
* Cristian Morales Vega
|
||||
* Mark Murnane
|
||||
* Michael Palimaka
|
||||
* Jean-Francois Panisset
|
||||
* Axel Roebel
|
||||
* Matthias Rumpke
|
||||
* Chris Wolf
|
||||
|
||||
Thanks to Douglas Scott of SGI for helping me understand the tricky parts
|
||||
of the Audio File Library API. Thanks to Chris Pirazzi and Scott Porter
|
||||
of SGI for creating the Audio File Library in the first place.
|
||||
|
||||
Thanks also to all who have reported bugs.
|
|
@ -1,5 +0,0 @@
|
|||
Audio File Library Authors
|
||||
|
||||
Michael Pruett <michael@68k.org>
|
||||
|
||||
Chris Pirazzi, Scott Porter, and Doug Scott
|
|
@ -1,502 +0,0 @@
|
|||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
|
@ -1,339 +0,0 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
File diff suppressed because it is too large
Load diff
|
@ -1,182 +0,0 @@
|
|||
Basic Installation
|
||||
==================
|
||||
|
||||
These are generic installation instructions.
|
||||
|
||||
The `configure' shell script attempts to guess correct values for
|
||||
various system-dependent variables used during compilation. It uses
|
||||
those values to create a `Makefile' in each directory of the package.
|
||||
It may also create one or more `.h' files containing system-dependent
|
||||
definitions. Finally, it creates a shell script `config.status' that
|
||||
you can run in the future to recreate the current configuration, a file
|
||||
`config.cache' that saves the results of its tests to speed up
|
||||
reconfiguring, and a file `config.log' containing compiler output
|
||||
(useful mainly for debugging `configure').
|
||||
|
||||
If you need to do unusual things to compile the package, please try
|
||||
to figure out how `configure' could check whether to do them, and mail
|
||||
diffs or instructions to the address given in the `README' so they can
|
||||
be considered for the next release. If at some point `config.cache'
|
||||
contains results you don't want to keep, you may remove or edit it.
|
||||
|
||||
The file `configure.in' is used to create `configure' by a program
|
||||
called `autoconf'. You only need `configure.in' if you want to change
|
||||
it or regenerate `configure' using a newer version of `autoconf'.
|
||||
|
||||
The simplest way to compile this package is:
|
||||
|
||||
1. `cd' to the directory containing the package's source code and type
|
||||
`./configure' to configure the package for your system. If you're
|
||||
using `csh' on an old version of System V, you might need to type
|
||||
`sh ./configure' instead to prevent `csh' from trying to execute
|
||||
`configure' itself.
|
||||
|
||||
Running `configure' takes awhile. While running, it prints some
|
||||
messages telling which features it is checking for.
|
||||
|
||||
2. Type `make' to compile the package.
|
||||
|
||||
3. Optionally, type `make check' to run any self-tests that come with
|
||||
the package.
|
||||
|
||||
4. Type `make install' to install the programs and any data files and
|
||||
documentation.
|
||||
|
||||
5. You can remove the program binaries and object files from the
|
||||
source code directory by typing `make clean'. To also remove the
|
||||
files that `configure' created (so you can compile the package for
|
||||
a different kind of computer), type `make distclean'. There is
|
||||
also a `make maintainer-clean' target, but that is intended mainly
|
||||
for the package's developers. If you use it, you may have to get
|
||||
all sorts of other programs in order to regenerate files that came
|
||||
with the distribution.
|
||||
|
||||
Compilers and Options
|
||||
=====================
|
||||
|
||||
Some systems require unusual options for compilation or linking that
|
||||
the `configure' script does not know about. You can give `configure'
|
||||
initial values for variables by setting them in the environment. Using
|
||||
a Bourne-compatible shell, you can do that on the command line like
|
||||
this:
|
||||
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
|
||||
|
||||
Or on systems that have the `env' program, you can do it like this:
|
||||
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
|
||||
|
||||
Compiling For Multiple Architectures
|
||||
====================================
|
||||
|
||||
You can compile the package for more than one kind of computer at the
|
||||
same time, by placing the object files for each architecture in their
|
||||
own directory. To do this, you must use a version of `make' that
|
||||
supports the `VPATH' variable, such as GNU `make'. `cd' to the
|
||||
directory where you want the object files and executables to go and run
|
||||
the `configure' script. `configure' automatically checks for the
|
||||
source code in the directory that `configure' is in and in `..'.
|
||||
|
||||
If you have to use a `make' that does not supports the `VPATH'
|
||||
variable, you have to compile the package for one architecture at a time
|
||||
in the source code directory. After you have installed the package for
|
||||
one architecture, use `make distclean' before reconfiguring for another
|
||||
architecture.
|
||||
|
||||
Installation Names
|
||||
==================
|
||||
|
||||
By default, `make install' will install the package's files in
|
||||
`/usr/local/bin', `/usr/local/man', etc. You can specify an
|
||||
installation prefix other than `/usr/local' by giving `configure' the
|
||||
option `--prefix=PATH'.
|
||||
|
||||
You can specify separate installation prefixes for
|
||||
architecture-specific files and architecture-independent files. If you
|
||||
give `configure' the option `--exec-prefix=PATH', the package will use
|
||||
PATH as the prefix for installing programs and libraries.
|
||||
Documentation and other data files will still use the regular prefix.
|
||||
|
||||
In addition, if you use an unusual directory layout you can give
|
||||
options like `--bindir=PATH' to specify different values for particular
|
||||
kinds of files. Run `configure --help' for a list of the directories
|
||||
you can set and what kinds of files go in them.
|
||||
|
||||
If the package supports it, you can cause programs to be installed
|
||||
with an extra prefix or suffix on their names by giving `configure' the
|
||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||
|
||||
Optional Features
|
||||
=================
|
||||
|
||||
Some packages pay attention to `--enable-FEATURE' options to
|
||||
`configure', where FEATURE indicates an optional part of the package.
|
||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||
is something like `gnu-as' or `x' (for the X Window System). The
|
||||
`README' should mention any `--enable-' and `--with-' options that the
|
||||
package recognizes.
|
||||
|
||||
For packages that use the X Window System, `configure' can usually
|
||||
find the X include and library files automatically, but if it doesn't,
|
||||
you can use the `configure' options `--x-includes=DIR' and
|
||||
`--x-libraries=DIR' to specify their locations.
|
||||
|
||||
Specifying the System Type
|
||||
==========================
|
||||
|
||||
There may be some features `configure' can not figure out
|
||||
automatically, but needs to determine by the type of host the package
|
||||
will run on. Usually `configure' can figure that out, but if it prints
|
||||
a message saying it can not guess the host type, give it the
|
||||
`--host=TYPE' option. TYPE can either be a short name for the system
|
||||
type, such as `sun4', or a canonical name with three fields:
|
||||
CPU-COMPANY-SYSTEM
|
||||
|
||||
See the file `config.sub' for the possible values of each field. If
|
||||
`config.sub' isn't included in this package, then this package doesn't
|
||||
need to know the host type.
|
||||
|
||||
If you are building compiler tools for cross-compiling, you can also
|
||||
use the `--target=TYPE' option to select the type of system they will
|
||||
produce code for and the `--build=TYPE' option to select the type of
|
||||
system on which you are compiling the package.
|
||||
|
||||
Sharing Defaults
|
||||
================
|
||||
|
||||
If you want to set default values for `configure' scripts to share,
|
||||
you can create a site shell script called `config.site' that gives
|
||||
default values for variables like `CC', `cache_file', and `prefix'.
|
||||
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||
`CONFIG_SITE' environment variable to the location of the site script.
|
||||
A warning: not all `configure' scripts look for a site script.
|
||||
|
||||
Operation Controls
|
||||
==================
|
||||
|
||||
`configure' recognizes the following options to control how it
|
||||
operates.
|
||||
|
||||
`--cache-file=FILE'
|
||||
Use and save the results of the tests in FILE instead of
|
||||
`./config.cache'. Set FILE to `/dev/null' to disable caching, for
|
||||
debugging `configure'.
|
||||
|
||||
`--help'
|
||||
Print a summary of the options to `configure', and exit.
|
||||
|
||||
`--quiet'
|
||||
`--silent'
|
||||
`-q'
|
||||
Do not print messages saying which checks are being made. To
|
||||
suppress all normal output, redirect it to `/dev/null' (any error
|
||||
messages will still be shown).
|
||||
|
||||
`--srcdir=DIR'
|
||||
Look for the package's source code in directory DIR. Usually
|
||||
`configure' can determine that directory automatically.
|
||||
|
||||
`--version'
|
||||
Print the version of Autoconf used to generate the `configure'
|
||||
script, and exit.
|
||||
|
||||
`configure' also accepts some other, not widely useful, options.
|
|
@ -1,898 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/audiofile
|
||||
pkgincludedir = $(includedir)/audiofile
|
||||
pkglibdir = $(libdir)/audiofile
|
||||
pkglibexecdir = $(libexecdir)/audiofile
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-w64-mingw32
|
||||
host_triplet = x86_64-w64-mingw32
|
||||
subdir = .
|
||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/audiofile-uninstalled.pc.in \
|
||||
$(srcdir)/audiofile.pc.in $(srcdir)/audiofile.spec.in \
|
||||
$(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \
|
||||
install-sh ltmain.sh missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES = audiofile.spec audiofile.pc \
|
||||
audiofile-uninstalled.pc
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-dvi-recursive install-exec-recursive \
|
||||
install-html-recursive install-info-recursive \
|
||||
install-pdf-recursive install-ps-recursive install-recursive \
|
||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||
ps-recursive uninstall-recursive
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
|
||||
DATA = $(pkgconfig_DATA)
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
||||
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
|
||||
distdir dist dist-all distcheck
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
A2X =
|
||||
ACLOCAL = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run aclocal-1.11
|
||||
AMTAR = $${TAR-tar}
|
||||
AR = ar
|
||||
ASCIIDOC =
|
||||
AUDIOFILE_VERSION = 0.3.6
|
||||
AUDIOFILE_VERSION_INFO = 1:0:0
|
||||
AUTOCONF = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run automake-1.11
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2
|
||||
COVERAGE_CFLAGS =
|
||||
COVERAGE_LIBS =
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = cygpath -w
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT = .exe
|
||||
FGREP = /usr/bin/grep -F
|
||||
FLAC_CFLAGS =
|
||||
FLAC_LIBS =
|
||||
GENHTML =
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LCOV =
|
||||
LD = I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/bin/ld.exe
|
||||
LDFLAGS =
|
||||
LIBOBJS =
|
||||
LIBS = -lstdc++
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = cp -pR
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAKEINFO = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /mingw64/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = audiofile
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = audiofile
|
||||
PACKAGE_STRING = audiofile 0.3.6
|
||||
PACKAGE_TARNAME = audiofile
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.3.6
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /mingw64/bin/pkg-config
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH = /mingw64/lib/pkgconfig:/mingw64/share/pkgconfig
|
||||
RANLIB = ranlib
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TEST_BIN =
|
||||
VALGRIND =
|
||||
VERSION = 0.3.6
|
||||
WERROR_CFLAGS =
|
||||
abs_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_top_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_top_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-w64-mingw32
|
||||
build_alias = x86_64-w64-mingw32
|
||||
build_cpu = x86_64
|
||||
build_os = mingw32
|
||||
build_vendor = w64
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-w64-mingw32
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = mingw32
|
||||
host_vendor = w64
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /usr/bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /mingw64
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix =
|
||||
top_builddir = .
|
||||
top_srcdir = .
|
||||
SUBDIRS = gtest libaudiofile sfcommands test examples docs
|
||||
EXTRA_DIST = \
|
||||
ACKNOWLEDGEMENTS \
|
||||
NOTES \
|
||||
README \
|
||||
TODO \
|
||||
COPYING.GPL \
|
||||
configure configure.ac \
|
||||
audiofile.spec.in \
|
||||
audiofile.pc.in \
|
||||
audiofile-uninstalled.pc.in
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = audiofile.pc
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config.h: stamp-h1
|
||||
@if test ! -f $@; then rm -f stamp-h1; else :; fi
|
||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
audiofile.spec: $(top_builddir)/config.status $(srcdir)/audiofile.spec.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
audiofile.pc: $(top_builddir)/config.status $(srcdir)/audiofile.pc.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
audiofile-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/audiofile-uninstalled.pc.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
$(RECURSIVE_CLEAN_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
$(am__make_dryrun) \
|
||||
|| test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-hook
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzma: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lzma*) \
|
||||
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir); chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile $(DATA) config.h
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean-local:
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-pkgconfigDATA
|
||||
|
||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
|
||||
ctags-recursive install-am install-strip tags-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
||||
all all-am am--refresh check check-am clean clean-generic \
|
||||
clean-libtool clean-local ctags ctags-recursive dist dist-all \
|
||||
dist-bzip2 dist-gzip dist-hook dist-lzip dist-lzma dist-shar \
|
||||
dist-tarZ dist-xz dist-zip distcheck distclean \
|
||||
distclean-generic distclean-hdr distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags tags-recursive uninstall uninstall-am \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
dist-hook: audiofile.spec
|
||||
cp audiofile.spec $(distdir)
|
||||
|
||||
#coverage:
|
||||
# $(MAKE) coverage-reset
|
||||
# $(MAKE) check
|
||||
# $(MAKE) coverage-report
|
||||
|
||||
#coverage-reset:
|
||||
# $(LCOV) --base-directory=. --directory ./libaudiofile --zerocounters
|
||||
|
||||
#coverage-report:
|
||||
# $(LCOV) --directory ./libaudiofile \
|
||||
# --capture \
|
||||
# --output-file ./lcov.info
|
||||
|
||||
# $(LCOV) --directory ./libaudiofile \
|
||||
# --output-file ./lcov.info \
|
||||
# --remove ./lcov.info \
|
||||
# "/usr/include/*" "gtest/*" "*/UT_*"
|
||||
|
||||
# $(mkdir_p) ./coverage
|
||||
# git_commit=`GIT_DIR=./.git git log -1 --pretty=format:%h 2>/dev/null`; \
|
||||
# $(GENHTML) --title "audiofile 0.3.6 $$git_commit" \
|
||||
# --output-directory ./coverage ./lcov.info
|
||||
# @echo
|
||||
# @echo 'lcov report can be found here:'
|
||||
# @echo 'file:///i/Development/sm64pc/tools/audiofile-0.3.6/coverage/index.html'
|
||||
# @echo
|
||||
|
||||
#clean-local:
|
||||
# -rm -rf coverage
|
||||
|
||||
#.PHONY: coverage-reset coverage coverage-report
|
||||
coverage:
|
||||
@echo "Code coverage is not enabled."
|
||||
@exit 1
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,58 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
SUBDIRS = gtest libaudiofile sfcommands test examples docs
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACKNOWLEDGEMENTS \
|
||||
NOTES \
|
||||
README \
|
||||
TODO \
|
||||
COPYING.GPL \
|
||||
configure configure.ac \
|
||||
audiofile.spec.in \
|
||||
audiofile.pc.in \
|
||||
audiofile-uninstalled.pc.in
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = audiofile.pc
|
||||
|
||||
dist-hook: audiofile.spec
|
||||
cp audiofile.spec $(distdir)
|
||||
|
||||
if ENABLE_COVERAGE
|
||||
coverage:
|
||||
$(MAKE) coverage-reset
|
||||
$(MAKE) check
|
||||
$(MAKE) coverage-report
|
||||
|
||||
coverage-reset:
|
||||
$(LCOV) --base-directory=@top_srcdir@ --directory @top_srcdir@/libaudiofile --zerocounters
|
||||
|
||||
coverage-report:
|
||||
$(LCOV) --directory @top_srcdir@/libaudiofile \
|
||||
--capture \
|
||||
--output-file @top_builddir@/lcov.info
|
||||
|
||||
$(LCOV) --directory @top_srcdir@/libaudiofile \
|
||||
--output-file @top_builddir@/lcov.info \
|
||||
--remove @top_builddir@/lcov.info \
|
||||
"/usr/include/*" "gtest/*" "*/UT_*"
|
||||
|
||||
$(mkdir_p) @top_builddir@/coverage
|
||||
git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`; \
|
||||
$(GENHTML) --title "@PACKAGE@ @VERSION@ $$git_commit" \
|
||||
--output-directory @top_builddir@/coverage @top_builddir@/lcov.info
|
||||
@echo
|
||||
@echo 'lcov report can be found here:'
|
||||
@echo 'file://@abs_top_builddir@/coverage/index.html'
|
||||
@echo
|
||||
|
||||
clean-local:
|
||||
-rm -rf coverage
|
||||
|
||||
.PHONY: coverage-reset coverage coverage-report
|
||||
else
|
||||
coverage:
|
||||
@echo "Code coverage is not enabled."
|
||||
@exit 1
|
||||
endif
|
|
@ -1,898 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
subdir = .
|
||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/audiofile-uninstalled.pc.in \
|
||||
$(srcdir)/audiofile.pc.in $(srcdir)/audiofile.spec.in \
|
||||
$(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \
|
||||
install-sh ltmain.sh missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES = audiofile.spec audiofile.pc \
|
||||
audiofile-uninstalled.pc
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-dvi-recursive install-exec-recursive \
|
||||
install-html-recursive install-info-recursive \
|
||||
install-pdf-recursive install-ps-recursive install-recursive \
|
||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||
ps-recursive uninstall-recursive
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
am__installdirs = "$(DESTDIR)$(pkgconfigdir)"
|
||||
DATA = $(pkgconfig_DATA)
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
||||
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
|
||||
distdir dist dist-all distcheck
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
A2X = @A2X@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASCIIDOC = @ASCIIDOC@
|
||||
AUDIOFILE_VERSION = @AUDIOFILE_VERSION@
|
||||
AUDIOFILE_VERSION_INFO = @AUDIOFILE_VERSION_INFO@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
|
||||
COVERAGE_LIBS = @COVERAGE_LIBS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLAC_CFLAGS = @FLAC_CFLAGS@
|
||||
FLAC_LIBS = @FLAC_LIBS@
|
||||
GENHTML = @GENHTML@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LCOV = @LCOV@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
||||
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TEST_BIN = @TEST_BIN@
|
||||
VALGRIND = @VALGRIND@
|
||||
VERSION = @VERSION@
|
||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUBDIRS = gtest libaudiofile sfcommands test examples docs
|
||||
EXTRA_DIST = \
|
||||
ACKNOWLEDGEMENTS \
|
||||
NOTES \
|
||||
README \
|
||||
TODO \
|
||||
COPYING.GPL \
|
||||
configure configure.ac \
|
||||
audiofile.spec.in \
|
||||
audiofile.pc.in \
|
||||
audiofile-uninstalled.pc.in
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = audiofile.pc
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config.h: stamp-h1
|
||||
@if test ! -f $@; then rm -f stamp-h1; else :; fi
|
||||
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
audiofile.spec: $(top_builddir)/config.status $(srcdir)/audiofile.spec.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
audiofile.pc: $(top_builddir)/config.status $(srcdir)/audiofile.pc.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
audiofile-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/audiofile-uninstalled.pc.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
$(RECURSIVE_CLEAN_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
$(am__make_dryrun) \
|
||||
|| test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-hook
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzma: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lzma*) \
|
||||
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir); chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile $(DATA) config.h
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
for dir in "$(DESTDIR)$(pkgconfigdir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@ENABLE_COVERAGE_FALSE@clean-local:
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-pkgconfigDATA
|
||||
|
||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
|
||||
ctags-recursive install-am install-strip tags-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
||||
all all-am am--refresh check check-am clean clean-generic \
|
||||
clean-libtool clean-local ctags ctags-recursive dist dist-all \
|
||||
dist-bzip2 dist-gzip dist-hook dist-lzip dist-lzma dist-shar \
|
||||
dist-tarZ dist-xz dist-zip distcheck distclean \
|
||||
distclean-generic distclean-hdr distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags tags-recursive uninstall uninstall-am \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
dist-hook: audiofile.spec
|
||||
cp audiofile.spec $(distdir)
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@coverage:
|
||||
@ENABLE_COVERAGE_TRUE@ $(MAKE) coverage-reset
|
||||
@ENABLE_COVERAGE_TRUE@ $(MAKE) check
|
||||
@ENABLE_COVERAGE_TRUE@ $(MAKE) coverage-report
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@coverage-reset:
|
||||
@ENABLE_COVERAGE_TRUE@ $(LCOV) --base-directory=@top_srcdir@ --directory @top_srcdir@/libaudiofile --zerocounters
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@coverage-report:
|
||||
@ENABLE_COVERAGE_TRUE@ $(LCOV) --directory @top_srcdir@/libaudiofile \
|
||||
@ENABLE_COVERAGE_TRUE@ --capture \
|
||||
@ENABLE_COVERAGE_TRUE@ --output-file @top_builddir@/lcov.info
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@ $(LCOV) --directory @top_srcdir@/libaudiofile \
|
||||
@ENABLE_COVERAGE_TRUE@ --output-file @top_builddir@/lcov.info \
|
||||
@ENABLE_COVERAGE_TRUE@ --remove @top_builddir@/lcov.info \
|
||||
@ENABLE_COVERAGE_TRUE@ "/usr/include/*" "gtest/*" "*/UT_*"
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@ $(mkdir_p) @top_builddir@/coverage
|
||||
@ENABLE_COVERAGE_TRUE@ git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`; \
|
||||
@ENABLE_COVERAGE_TRUE@ $(GENHTML) --title "@PACKAGE@ @VERSION@ $$git_commit" \
|
||||
@ENABLE_COVERAGE_TRUE@ --output-directory @top_builddir@/coverage @top_builddir@/lcov.info
|
||||
@ENABLE_COVERAGE_TRUE@ @echo
|
||||
@ENABLE_COVERAGE_TRUE@ @echo 'lcov report can be found here:'
|
||||
@ENABLE_COVERAGE_TRUE@ @echo 'file://@abs_top_builddir@/coverage/index.html'
|
||||
@ENABLE_COVERAGE_TRUE@ @echo
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@clean-local:
|
||||
@ENABLE_COVERAGE_TRUE@ -rm -rf coverage
|
||||
|
||||
@ENABLE_COVERAGE_TRUE@.PHONY: coverage-reset coverage coverage-report
|
||||
@ENABLE_COVERAGE_FALSE@coverage:
|
||||
@ENABLE_COVERAGE_FALSE@ @echo "Code coverage is not enabled."
|
||||
@ENABLE_COVERAGE_FALSE@ @exit 1
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,53 +0,0 @@
|
|||
Changes for Audio File Library version 0.3.6:
|
||||
|
||||
* Implement FLAC and ALAC encoding and decoding.
|
||||
* Update license to LGPL 2.1.
|
||||
|
||||
Changes for Audio File Library version 0.3.5:
|
||||
|
||||
* Implement IMA ADPCM encoding and decoding for AIFF-C, CAF, and WAVE files.
|
||||
* Implement Microsoft ADPCM encoding for WAVE files.
|
||||
* Fix calculation of IRCAM frame size.
|
||||
* Record marker comments in WAVE files.
|
||||
* Improve validation of compressed audio formats.
|
||||
* Add support for building without documentation.
|
||||
|
||||
Changes for Audio File Library version 0.3.4:
|
||||
|
||||
* Use hidden visibility for internal symbols.
|
||||
* Add support for Sample Vision format.
|
||||
* Update license for extended-precision floating-point conversion routines.
|
||||
|
||||
Changes for Audio File Library version 0.3.3:
|
||||
|
||||
* Update library's soname version.
|
||||
* Link against libm.
|
||||
|
||||
Changes for Audio File Library version 0.3.2:
|
||||
|
||||
* Fix initialization of byte order in Creative Voice File format.
|
||||
* Fix calculation of frame count in NIST SPHERE sound files.
|
||||
* Remove duplicate definition of AFvirtualfile.
|
||||
* Don't treat compiler warnings as errors by default.
|
||||
|
||||
Changes for Audio File Library version 0.3.1:
|
||||
|
||||
* Fix installation of man pages.
|
||||
* Add support for Creative Voice File format.
|
||||
* Support u-law and A-law compression in Core Audio Format files.
|
||||
|
||||
Changes for Audio File Library version 0.3.0:
|
||||
|
||||
* Define AFframecount and AFfileoffset as 64-bit integers regardless of
|
||||
whether system specifies off_t as 64 bits.
|
||||
* Added support for Core Audio Format.
|
||||
* Added support for extensible WAVE format files.
|
||||
* Fixed leak of miscellaneous data buffers. (Thanks to Stefano Magni
|
||||
for finding and fixing this problem.)
|
||||
* Fixed default mapping between integer and floating-point audio data.
|
||||
* Fix handling of NeXT sound files with unspecified or inconsistent length.
|
||||
* Added support for miscellaneous data in IFF/8SVX files.
|
||||
* Added support for byte-swapped IRCAM sound files.
|
||||
* Refactored file parsing and writing.
|
||||
* Refactored audio conversion.
|
||||
* Updated and expanded documentation.
|
|
@ -1,41 +0,0 @@
|
|||
Audio File Library 0.3.6
|
||||
Development Notes
|
||||
Michael Pruett <michael@68k.org>
|
||||
|
||||
----
|
||||
|
||||
Large file support is now enabled by default on all systems. This change
|
||||
has no effect on systems where off_t is always 64 bits (e.g. IRIX,
|
||||
FreeBSD, NetBSD, OpenBSD, Mac OS X).
|
||||
|
||||
Many compressed data formats are not supported. This is currently the
|
||||
most important issue to address.
|
||||
|
||||
Error handling is at the present quite robust, but more work can always
|
||||
be done in this area.
|
||||
|
||||
SGI's Audio File Library on IRIX implements the following formats which
|
||||
this version of the library does not:
|
||||
|
||||
MPEG1 audio bitstream
|
||||
Sound Designer II
|
||||
SoundFont2
|
||||
|
||||
I plan to implement some of these as time permits. Sound Designer
|
||||
II is out of the question because of its dependency upon Macintosh
|
||||
resource forks. Handling these files on Unix systems is simply not
|
||||
worth the effort.
|
||||
|
||||
----
|
||||
|
||||
This version of the Audio File Library has been tested under the following
|
||||
operating environments:
|
||||
|
||||
i686-pc-linux-gnu / Ubuntu 12.10 (gcc 4.7.2)
|
||||
x86_64-pc-linux-gnu / Ubuntu 12.10 (gcc 4.7.2)
|
||||
x86_64-pc-linux-gnu / Ubuntu 12.10 (clang 3.0)
|
||||
armv6l-raspberrypi-linux-gnueabihf / Raspbian Wheezy (gcc 4.6.3)
|
||||
i386-apple-darwin10.8.0 / Mac OS X 10.6.8 (gcc 4.2.1)
|
||||
x86_64-apple-darwin10.8.0 / Mac OS X 10.6.8 (gcc 4.2.1)
|
||||
i386-pc-freebsd9.1 / FreeBSD 9.1 (gcc 4.2.1)
|
||||
sparc64-sun-freebsd9.1 / FreeBSD 9.1 (gcc 4.2.1)
|
|
@ -1,64 +0,0 @@
|
|||
Audio File Library
|
||||
Version 0.3.6
|
||||
Wednesday, 6 March 2013
|
||||
|
||||
Copyright (C) 1998-2000, 2003-2004, 2010-2013 Michael Pruett
|
||||
Copyright (C) 2000-2001 Silicon Graphics, Inc.
|
||||
|
||||
michael@68k.org
|
||||
http://audiofile.68k.org/
|
||||
|
||||
----
|
||||
|
||||
The Audio File Library handles reading and writing audio files in many
|
||||
common formats.
|
||||
|
||||
Key goals of the Audio File Library are file format transparency and data
|
||||
format transparency. The same calls for opening a file, accessing and
|
||||
manipulating audio metadata (e.g. sample rate, sample format, textual
|
||||
information, MIDI parameters), and reading and writing sample data will
|
||||
work with any supported audio file format. Likewise, the format of the
|
||||
audio data presented to the application need not be tied to the format
|
||||
of the data contained in the file.
|
||||
|
||||
The following file formats are currently supported:
|
||||
* AIFF/AIFF-C
|
||||
* WAVE
|
||||
* NeXT .snd/Sun .au
|
||||
* Berkeley/IRCAM/CARL Sound File
|
||||
* Audio Visual Research
|
||||
* Amiga IFF/8SVX
|
||||
* Sample Vision
|
||||
* Creative Voice File
|
||||
* NIST SPHERE
|
||||
* Core Audio Format
|
||||
* FLAC
|
||||
|
||||
The following compression formats are currently supported:
|
||||
* G.711 mu-law and A-law
|
||||
* IMA ADPCM
|
||||
* Microsoft ADPCM
|
||||
* FLAC
|
||||
* Apple Lossless Audio Codec
|
||||
|
||||
The Audio File Library itself is available under the GNU Lesser General
|
||||
Public License, and the programs in this package are available under the
|
||||
GNU General Public License. The two licenses are included in the files
|
||||
COPYING and COPYING.GPL, respectively.
|
||||
|
||||
----
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the
|
||||
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301 USA
|
|
@ -1,32 +0,0 @@
|
|||
Audio File Library
|
||||
To Do List
|
||||
|
||||
Michael Pruett <michael@68k.org>
|
||||
|
||||
Short-term
|
||||
----------
|
||||
|
||||
Handle more compressed data formats, most importantly Ogg Vorbis.
|
||||
GSM 06.10 would also be nice.
|
||||
|
||||
Handle sample rate conversion.
|
||||
|
||||
More comprehensive tests should be developed to stress-test the
|
||||
library. Tests are needed most for the following sets of functions:
|
||||
* af{Get,Set}VirtualChannels/afSetChannelMatrix
|
||||
* afGetSampleFormat/af{Get,Set}VirtualSampleFormat
|
||||
* af{Get,Set}Loop{IDs,Mode,Count,Start,End,StartFrame,EndFrame,Track}
|
||||
|
||||
Support for auxiliary data in IRCAM files (maximum amplitude, comments,
|
||||
etc.) should be added.
|
||||
|
||||
Long-term
|
||||
---------
|
||||
|
||||
It would be nice to support some more file formats.
|
||||
|
||||
Add locale support for error messages.
|
||||
|
||||
Whenever a compression format is requested, the library should scan
|
||||
through /usr/lib/audiofile/*.so to see if any DSOs support the requested
|
||||
format.
|
10284
tools/audiofile-0.3.6/aclocal.m4
vendored
10284
tools/audiofile-0.3.6/aclocal.m4
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,6 +0,0 @@
|
|||
Name: audiofile
|
||||
Description: audiofile
|
||||
Requires:
|
||||
Version: 0.3.6
|
||||
Libs: ${pc_top_builddir}/${pcfiledir}/libaudiofile/libaudiofile.la -lm
|
||||
Cflags: -I${pc_top_builddir}/${pcfiledir}/libaudiofile
|
|
@ -1,6 +0,0 @@
|
|||
Name: audiofile
|
||||
Description: audiofile
|
||||
Requires:
|
||||
Version: @VERSION@
|
||||
Libs: ${pc_top_builddir}/${pcfiledir}/libaudiofile/libaudiofile.la -lm
|
||||
Cflags: -I${pc_top_builddir}/${pcfiledir}/libaudiofile
|
|
@ -1,12 +0,0 @@
|
|||
prefix=/mingw64
|
||||
exec_prefix=${prefix}
|
||||
libdir=${exec_prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: audiofile
|
||||
Description: audiofile
|
||||
Requires:
|
||||
Version: 0.3.6
|
||||
Libs: -L${libdir} -laudiofile
|
||||
Libs.private: -lm
|
||||
Cflags: -I${includedir}
|
|
@ -1,12 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: audiofile
|
||||
Description: audiofile
|
||||
Requires:
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -laudiofile
|
||||
Libs.private: -lm
|
||||
Cflags: -I${includedir}
|
|
@ -1,69 +0,0 @@
|
|||
%define ver 0.3.6
|
||||
%define RELEASE 1
|
||||
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
|
||||
%define prefix /usr
|
||||
|
||||
Summary: A library to handle various audio file formats.
|
||||
Name: audiofile
|
||||
Version: %ver
|
||||
Release: %rel
|
||||
Copyright: LGPL
|
||||
Group: Libraries/Sound
|
||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/audiofile/audiofile-%{PACKAGE_VERSION}.tar.gz
|
||||
URL: http://www.68k.org/~michael/audiofile/
|
||||
BuildRoot:/var/tmp/audiofile-%{PACKAGE_VERSION}-root
|
||||
Docdir: %{prefix}/doc
|
||||
Obsoletes: libaudiofile
|
||||
|
||||
%description
|
||||
The Audio File Library provides an elegant API for accessing a variety
|
||||
of audio file formats, such as AIFF/AIFF-C, WAVE, and NeXT/Sun
|
||||
.snd/.au, in a manner independent of file and data formats.
|
||||
|
||||
%package devel
|
||||
Summary: Library, headers, etc. to develop with the Audio File Library.
|
||||
Group: Libraries
|
||||
|
||||
%description devel
|
||||
Library, header files, etc. for developing applications with the Audio
|
||||
File Library.
|
||||
|
||||
%prep
|
||||
%setup
|
||||
|
||||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
||||
make $MAKE_FLAGS
|
||||
|
||||
%install
|
||||
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT
|
||||
|
||||
#
|
||||
# makefile is broken, sets exec_prefix explicitely.
|
||||
#
|
||||
make exec_prefix=$RPM_BUILD_ROOT/%{prefix} prefix=$RPM_BUILD_ROOT/%{prefix} install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%changelog
|
||||
|
||||
* Fri Nov 20 1998 Michael Fulbright <drmike@redhat.com>
|
||||
- First try at a spec file
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc COPYING TODO README ChangeLog docs
|
||||
%{prefix}/bin/*
|
||||
%{prefix}/lib/lib*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-, root, root)
|
||||
%{prefix}/lib/lib*.so
|
||||
%{prefix}/lib/*.a
|
||||
%{prefix}/lib/*.la
|
||||
%{prefix}/lib/pkgconfig/*.pc
|
||||
%{prefix}/include/*
|
||||
%{prefix}/share/aclocal/*
|
|
@ -1,69 +0,0 @@
|
|||
%define ver @VERSION@
|
||||
%define RELEASE 1
|
||||
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
|
||||
%define prefix /usr
|
||||
|
||||
Summary: A library to handle various audio file formats.
|
||||
Name: audiofile
|
||||
Version: %ver
|
||||
Release: %rel
|
||||
Copyright: LGPL
|
||||
Group: Libraries/Sound
|
||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/audiofile/audiofile-%{PACKAGE_VERSION}.tar.gz
|
||||
URL: http://www.68k.org/~michael/audiofile/
|
||||
BuildRoot:/var/tmp/audiofile-%{PACKAGE_VERSION}-root
|
||||
Docdir: %{prefix}/doc
|
||||
Obsoletes: libaudiofile
|
||||
|
||||
%description
|
||||
The Audio File Library provides an elegant API for accessing a variety
|
||||
of audio file formats, such as AIFF/AIFF-C, WAVE, and NeXT/Sun
|
||||
.snd/.au, in a manner independent of file and data formats.
|
||||
|
||||
%package devel
|
||||
Summary: Library, headers, etc. to develop with the Audio File Library.
|
||||
Group: Libraries
|
||||
|
||||
%description devel
|
||||
Library, header files, etc. for developing applications with the Audio
|
||||
File Library.
|
||||
|
||||
%prep
|
||||
%setup
|
||||
|
||||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
||||
make $MAKE_FLAGS
|
||||
|
||||
%install
|
||||
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT
|
||||
|
||||
#
|
||||
# makefile is broken, sets exec_prefix explicitely.
|
||||
#
|
||||
make exec_prefix=$RPM_BUILD_ROOT/%{prefix} prefix=$RPM_BUILD_ROOT/%{prefix} install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%changelog
|
||||
|
||||
* Fri Nov 20 1998 Michael Fulbright <drmike@redhat.com>
|
||||
- First try at a spec file
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc COPYING TODO README ChangeLog docs
|
||||
%{prefix}/bin/*
|
||||
%{prefix}/lib/lib*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-, root, root)
|
||||
%{prefix}/lib/lib*.so
|
||||
%{prefix}/lib/*.a
|
||||
%{prefix}/lib/*.la
|
||||
%{prefix}/lib/pkgconfig/*.pc
|
||||
%{prefix}/include/*
|
||||
%{prefix}/share/aclocal/*
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,300 +0,0 @@
|
|||
# This file was generated.
|
||||
# It contains the lists of macros which have been traced.
|
||||
# It can be safely removed.
|
||||
|
||||
@request = (
|
||||
bless( [
|
||||
'0',
|
||||
1,
|
||||
[
|
||||
'/usr/share/autoconf'
|
||||
],
|
||||
[
|
||||
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
||||
'aclocal.m4',
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'include' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
'1',
|
||||
1,
|
||||
[
|
||||
'/usr/share/autoconf'
|
||||
],
|
||||
[
|
||||
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
||||
'/usr/share/aclocal/libtool.m4',
|
||||
'/usr/share/aclocal/ltargz.m4',
|
||||
'/usr/share/aclocal/ltdl.m4',
|
||||
'/usr/share/aclocal/ltoptions.m4',
|
||||
'/usr/share/aclocal/ltsugar.m4',
|
||||
'/usr/share/aclocal/ltversion.m4',
|
||||
'/usr/share/aclocal/lt~obsolete.m4',
|
||||
'/mingw64/share/aclocal/pkg.m4',
|
||||
'/usr/share/aclocal-1.11/amversion.m4',
|
||||
'/usr/share/aclocal-1.11/auxdir.m4',
|
||||
'/usr/share/aclocal-1.11/cond.m4',
|
||||
'/usr/share/aclocal-1.11/depend.m4',
|
||||
'/usr/share/aclocal-1.11/depout.m4',
|
||||
'/usr/share/aclocal-1.11/init.m4',
|
||||
'/usr/share/aclocal-1.11/install-sh.m4',
|
||||
'/usr/share/aclocal-1.11/lead-dot.m4',
|
||||
'/usr/share/aclocal-1.11/make.m4',
|
||||
'/usr/share/aclocal-1.11/missing.m4',
|
||||
'/usr/share/aclocal-1.11/mkdirp.m4',
|
||||
'/usr/share/aclocal-1.11/options.m4',
|
||||
'/usr/share/aclocal-1.11/runlog.m4',
|
||||
'/usr/share/aclocal-1.11/sanity.m4',
|
||||
'/usr/share/aclocal-1.11/silent.m4',
|
||||
'/usr/share/aclocal-1.11/strip.m4',
|
||||
'/usr/share/aclocal-1.11/substnot.m4',
|
||||
'/usr/share/aclocal-1.11/tar.m4',
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'PKG_INSTALLDIR' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'PKG_CHECK_VAR' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'PKG_NOARCH_INSTALLDIR' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AC_LIB_LTDL' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'include' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'PKG_PROG_PKG_CONFIG' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'PKG_CHECK_MODULES_STATIC' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'PKG_CHECK_EXISTS' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'PKG_CHECK_MODULES' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'_LT_CC_BASENAME' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
|
@ -1,728 +0,0 @@
|
|||
m4trace:configure.ac:2: -1- AC_INIT([audiofile], [0.3.6])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([_AC_])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^AS_FLAGS$])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?m4_])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([^dnl$])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?AS_])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([SHELL])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([SHELL])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^SHELL$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PATH_SEPARATOR])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_NAME])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_STRING])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_URL])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([exec_prefix], [NONE])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([exec_prefix])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^exec_prefix$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([prefix], [NONE])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([prefix])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^prefix$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([program_transform_name], [s,x,x,])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([program_transform_name])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^program_transform_name$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([bindir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^bindir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sbindir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^sbindir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([libexecdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^libexecdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([datarootdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^datarootdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([datadir], ['${datarootdir}'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([datadir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^datadir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sysconfdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^sysconfdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sharedstatedir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^sharedstatedir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([localstatedir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^localstatedir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([includedir], ['${prefix}/include'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([includedir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^includedir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([oldincludedir], ['/usr/include'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([oldincludedir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^oldincludedir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
||||
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
|
||||
['${datarootdir}/doc/${PACKAGE}'])])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([docdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^docdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([infodir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^infodir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([htmldir], ['${docdir}'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([htmldir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^htmldir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([dvidir], ['${docdir}'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([dvidir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^dvidir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([pdfdir], ['${docdir}'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([pdfdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^pdfdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([psdir], ['${docdir}'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([psdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^psdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([libdir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^libdir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([localedir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^localedir$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([mandir])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^mandir$])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
|
||||
@%:@undef PACKAGE_NAME])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
|
||||
@%:@undef PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
|
||||
@%:@undef PACKAGE_VERSION])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
|
||||
@%:@undef PACKAGE_STRING])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
|
||||
@%:@undef PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$])
|
||||
m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
|
||||
@%:@undef PACKAGE_URL])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([DEFS])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([DEFS])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^DEFS$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([ECHO_C])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_C])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_C$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([ECHO_N])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_N])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_N$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([ECHO_T])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_T])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_T$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([LIBS])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([LIBS])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^LIBS$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([build_alias])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([build_alias])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([host_alias])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([host_alias])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST([target_alias])
|
||||
m4trace:configure.ac:2: -1- AC_SUBST_TRACE([target_alias])
|
||||
m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$])
|
||||
m4trace:configure.ac:9: -1- AC_SUBST([AUDIOFILE_VERSION])
|
||||
m4trace:configure.ac:9: -1- AC_SUBST_TRACE([AUDIOFILE_VERSION])
|
||||
m4trace:configure.ac:9: -1- m4_pattern_allow([^AUDIOFILE_VERSION$])
|
||||
m4trace:configure.ac:10: -1- AC_SUBST([AUDIOFILE_VERSION_INFO])
|
||||
m4trace:configure.ac:10: -1- AC_SUBST_TRACE([AUDIOFILE_VERSION_INFO])
|
||||
m4trace:configure.ac:10: -1- m4_pattern_allow([^AUDIOFILE_VERSION_INFO$])
|
||||
m4trace:configure.ac:12: -1- AM_INIT_AUTOMAKE([$PACKAGE_NAME], [$PACKAGE_VERSION])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
||||
m4trace:configure.ac:12: -1- AM_AUTOMAKE_VERSION([1.11.6])
|
||||
m4trace:configure.ac:12: -1- AC_REQUIRE_AUX_FILE([install-sh])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([INSTALL_PROGRAM])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([INSTALL_SCRIPT])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([INSTALL_DATA])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([INSTALL_DATA])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_DATA$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([am__isrc], [' -I$(srcdir)'])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__isrc])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__isrc$])
|
||||
m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([CYGPATH_W])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([CYGPATH_W])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^CYGPATH_W$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([PACKAGE], [$PACKAGE_NAME])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([PACKAGE])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^PACKAGE$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([VERSION], [$PACKAGE_VERSION])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([VERSION])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^VERSION$])
|
||||
m4trace:configure.ac:12: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^PACKAGE$])
|
||||
m4trace:configure.ac:12: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
|
||||
@%:@undef PACKAGE])
|
||||
m4trace:configure.ac:12: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^VERSION$])
|
||||
m4trace:configure.ac:12: -1- AH_OUTPUT([VERSION], [/* Version number of package */
|
||||
@%:@undef VERSION])
|
||||
m4trace:configure.ac:12: -1- AC_REQUIRE_AUX_FILE([missing])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([ACLOCAL])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([ACLOCAL])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^ACLOCAL$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([AUTOCONF])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AUTOCONF])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOCONF$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([AUTOMAKE])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AUTOMAKE])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOMAKE$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([AUTOHEADER])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AUTOHEADER])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOHEADER$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([MAKEINFO])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([MAKEINFO])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^MAKEINFO$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([install_sh])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([install_sh])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^install_sh$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([STRIP])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([STRIP])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^STRIP$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
||||
m4trace:configure.ac:12: -1- AC_REQUIRE_AUX_FILE([install-sh])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([MKDIR_P])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([MKDIR_P])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^MKDIR_P$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([mkdir_p])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^mkdir_p$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([AWK])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AWK])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AWK$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([SET_MAKE])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([SET_MAKE])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^SET_MAKE$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([am__leading_dot])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__leading_dot])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__leading_dot$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AMTAR])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^AMTAR$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([am__tar])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__tar])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__tar$])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST([am__untar])
|
||||
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__untar])
|
||||
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__untar$])
|
||||
m4trace:configure.ac:13: -1- AC_CONFIG_HEADERS([config.h])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CFLAGS])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CFLAGS])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CFLAGS$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([LDFLAGS])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([LDFLAGS])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^LDFLAGS$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([LIBS])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([LIBS])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^LIBS$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([ac_ct_CC])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([ac_ct_CC])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^ac_ct_CC$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([EXEEXT])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^EXEEXT$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([OBJEXT])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^OBJEXT$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([DEPDIR])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^DEPDIR$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([am__include])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([am__include])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__include$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([am__quote])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([am__quote])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__quote$])
|
||||
m4trace:configure.ac:16: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([AMDEP_TRUE])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([AMDEP_TRUE])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([AMDEP_FALSE])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([AMDEP_FALSE])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([am__nodep])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([am__nodep])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__nodep$])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__nodep])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CCDEPMODE])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^CCDEPMODE$])
|
||||
m4trace:configure.ac:16: -1- AM_CONDITIONAL([am__fastdepCC], [
|
||||
test "x$enable_dependency_tracking" != xno \
|
||||
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([CXX])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CXX])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^CXX$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([CXXFLAGS])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CXXFLAGS])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^CXXFLAGS$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([LDFLAGS])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([LDFLAGS])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^LDFLAGS$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([LIBS])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([LIBS])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^LIBS$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([CXX])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CXX])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^CXX$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([ac_ct_CXX])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([ac_ct_CXX])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^ac_ct_CXX$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CXXDEPMODE])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^CXXDEPMODE$])
|
||||
m4trace:configure.ac:17: -1- AM_CONDITIONAL([am__fastdepCXX], [
|
||||
test "x$enable_dependency_tracking" != xno \
|
||||
&& test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([am__fastdepCXX_TRUE])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([am__fastdepCXX_TRUE])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST([am__fastdepCXX_FALSE])
|
||||
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([am__fastdepCXX_FALSE])
|
||||
m4trace:configure.ac:17: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
|
||||
m4trace:configure.ac:17: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
|
||||
m4trace:configure.ac:17: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
|
||||
m4trace:configure.ac:19: -1- _m4_warn([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
|
||||
You should run autoupdate.], [aclocal.m4:122: AM_PROG_LIBTOOL is expanded from...
|
||||
configure.ac:19: the top level])
|
||||
m4trace:configure.ac:19: -1- LT_INIT
|
||||
m4trace:configure.ac:19: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
||||
m4trace:configure.ac:19: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LIBTOOL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LIBTOOL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LIBTOOL$])
|
||||
m4trace:configure.ac:19: -1- AC_CANONICAL_HOST
|
||||
m4trace:configure.ac:19: -1- AC_CANONICAL_BUILD
|
||||
m4trace:configure.ac:19: -1- AC_REQUIRE_AUX_FILE([config.sub])
|
||||
m4trace:configure.ac:19: -1- AC_REQUIRE_AUX_FILE([config.guess])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([build], [$ac_cv_build])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([build])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^build$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([build_cpu], [$[1]])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([build_cpu])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^build_cpu$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([build_vendor], [$[2]])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([build_vendor])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^build_vendor$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([build_os])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([build_os])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^build_os$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([host], [$ac_cv_host])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([host])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^host$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([host_cpu], [$[1]])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([host_cpu])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^host_cpu$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([host_vendor], [$[2]])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([host_vendor])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^host_vendor$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([host_os])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([host_os])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^host_os$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([SED])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([SED])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^SED$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([GREP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([GREP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^GREP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([EGREP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([EGREP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^EGREP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([FGREP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([FGREP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^FGREP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([GREP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([GREP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^GREP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LD])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LD])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LD$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^DUMPBIN$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([ac_ct_DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([DUMPBIN])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^DUMPBIN$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([NM])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([NM])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^NM$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LN_S], [$as_ln_s])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LN_S])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LN_S$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([OBJDUMP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([OBJDUMP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^OBJDUMP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([OBJDUMP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([OBJDUMP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^OBJDUMP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([DLLTOOL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([DLLTOOL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^DLLTOOL$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([DLLTOOL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([DLLTOOL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^DLLTOOL$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([AR])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([AR])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^AR$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([ac_ct_AR])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([ac_ct_AR])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^ac_ct_AR$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([STRIP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([STRIP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^STRIP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([RANLIB])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([RANLIB])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^RANLIB$])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([LT_OBJDIR])
|
||||
m4trace:configure.ac:19: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LT_OBJDIR$])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
@%:@undef LT_OBJDIR])
|
||||
m4trace:configure.ac:19: -1- LT_SUPPORTED_TAG([CC])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([MANIFEST_TOOL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([MANIFEST_TOOL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^MANIFEST_TOOL$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([DSYMUTIL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([DSYMUTIL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^DSYMUTIL$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([NMEDIT])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([NMEDIT])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^NMEDIT$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LIPO])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LIPO])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LIPO$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([OTOOL])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([OTOOL])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^OTOOL$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([OTOOL64])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([OTOOL64])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^OTOOL64$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
@%:@undef HAVE_DLFCN_H])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CPP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CPP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CPP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CPP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CPP$])
|
||||
m4trace:configure.ac:19: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^STDC_HEADERS$])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
||||
@%:@undef STDC_HEADERS])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
@%:@undef HAVE_SYS_TYPES_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
@%:@undef HAVE_SYS_STAT_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
@%:@undef HAVE_STDLIB_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
||||
@%:@undef HAVE_STRING_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
|
||||
@%:@undef HAVE_MEMORY_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
|
||||
@%:@undef HAVE_STRINGS_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
@%:@undef HAVE_INTTYPES_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
||||
@%:@undef HAVE_STDINT_H])
|
||||
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
||||
@%:@undef HAVE_UNISTD_H])
|
||||
m4trace:configure.ac:19: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
||||
m4trace:configure.ac:19: -1- LT_SUPPORTED_TAG([CXX])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CXXCPP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CXXCPP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([CXXCPP])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([CXXCPP])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^CXXCPP$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LD])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LD])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LD$])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:19: -1- AC_SUBST_TRACE([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:19: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
|
||||
m4trace:configure.ac:22: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
||||
m4trace:configure.ac:22: -1- m4_pattern_allow([^STDC_HEADERS$])
|
||||
m4trace:configure.ac:22: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
||||
@%:@undef STDC_HEADERS])
|
||||
m4trace:configure.ac:23: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
@%:@undef HAVE_FCNTL_H])
|
||||
m4trace:configure.ac:23: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
||||
@%:@undef HAVE_UNISTD_H])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([const])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^const$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */
|
||||
@%:@undef const])
|
||||
m4trace:configure.ac:27: -1- AH_OUTPUT([WORDS_BIGENDIAN], [/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# undef WORDS_BIGENDIAN
|
||||
# endif
|
||||
#endif])
|
||||
m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([WORDS_BIGENDIAN])
|
||||
m4trace:configure.ac:27: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
|
||||
m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([AC_APPLE_UNIVERSAL_BUILD])
|
||||
m4trace:configure.ac:27: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
|
||||
m4trace:configure.ac:27: -1- AH_OUTPUT([AC_APPLE_UNIVERSAL_BUILD], [/* Define if building universal (internal helper macro) */
|
||||
@%:@undef AC_APPLE_UNIVERSAL_BUILD])
|
||||
m4trace:configure.ac:30: -1- AC_DEFINE_TRACE_LITERAL([_FILE_OFFSET_BITS])
|
||||
m4trace:configure.ac:30: -1- m4_pattern_allow([^_FILE_OFFSET_BITS$])
|
||||
m4trace:configure.ac:30: -1- AH_OUTPUT([_FILE_OFFSET_BITS], [/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
@%:@undef _FILE_OFFSET_BITS])
|
||||
m4trace:configure.ac:30: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILES])
|
||||
m4trace:configure.ac:30: -1- m4_pattern_allow([^_LARGE_FILES$])
|
||||
m4trace:configure.ac:30: -1- AH_OUTPUT([_LARGE_FILES], [/* Define for large files, on AIX-style hosts. */
|
||||
@%:@undef _LARGE_FILES])
|
||||
m4trace:configure.ac:30: -1- AH_OUTPUT([_DARWIN_USE_64_BIT_INODE], [/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif])
|
||||
m4trace:configure.ac:31: -1- AC_DEFINE_TRACE_LITERAL([off_t])
|
||||
m4trace:configure.ac:31: -1- m4_pattern_allow([^off_t$])
|
||||
m4trace:configure.ac:31: -1- AH_OUTPUT([off_t], [/* Define to `long int\' if <sys/types.h> does not define. */
|
||||
@%:@undef off_t])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([size_t])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^size_t$])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
|
||||
@%:@undef size_t])
|
||||
m4trace:configure.ac:54: -1- AC_SUBST([TEST_BIN])
|
||||
m4trace:configure.ac:54: -1- AC_SUBST_TRACE([TEST_BIN])
|
||||
m4trace:configure.ac:54: -1- m4_pattern_allow([^TEST_BIN$])
|
||||
m4trace:configure.ac:60: -1- AM_CONDITIONAL([ENABLE_WERROR], [test "$enable_werror" = "yes"])
|
||||
m4trace:configure.ac:60: -1- AC_SUBST([ENABLE_WERROR_TRUE])
|
||||
m4trace:configure.ac:60: -1- AC_SUBST_TRACE([ENABLE_WERROR_TRUE])
|
||||
m4trace:configure.ac:60: -1- m4_pattern_allow([^ENABLE_WERROR_TRUE$])
|
||||
m4trace:configure.ac:60: -1- AC_SUBST([ENABLE_WERROR_FALSE])
|
||||
m4trace:configure.ac:60: -1- AC_SUBST_TRACE([ENABLE_WERROR_FALSE])
|
||||
m4trace:configure.ac:60: -1- m4_pattern_allow([^ENABLE_WERROR_FALSE$])
|
||||
m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([ENABLE_WERROR_TRUE])
|
||||
m4trace:configure.ac:60: -1- _AM_SUBST_NOTMAKE([ENABLE_WERROR_FALSE])
|
||||
m4trace:configure.ac:62: -1- AC_SUBST([WERROR_CFLAGS])
|
||||
m4trace:configure.ac:62: -1- AC_SUBST_TRACE([WERROR_CFLAGS])
|
||||
m4trace:configure.ac:62: -1- m4_pattern_allow([^WERROR_CFLAGS$])
|
||||
m4trace:configure.ac:70: -1- AM_CONDITIONAL([ENABLE_COVERAGE], [test "$enable_coverage" = "yes"])
|
||||
m4trace:configure.ac:70: -1- AC_SUBST([ENABLE_COVERAGE_TRUE])
|
||||
m4trace:configure.ac:70: -1- AC_SUBST_TRACE([ENABLE_COVERAGE_TRUE])
|
||||
m4trace:configure.ac:70: -1- m4_pattern_allow([^ENABLE_COVERAGE_TRUE$])
|
||||
m4trace:configure.ac:70: -1- AC_SUBST([ENABLE_COVERAGE_FALSE])
|
||||
m4trace:configure.ac:70: -1- AC_SUBST_TRACE([ENABLE_COVERAGE_FALSE])
|
||||
m4trace:configure.ac:70: -1- m4_pattern_allow([^ENABLE_COVERAGE_FALSE$])
|
||||
m4trace:configure.ac:70: -1- _AM_SUBST_NOTMAKE([ENABLE_COVERAGE_TRUE])
|
||||
m4trace:configure.ac:70: -1- _AM_SUBST_NOTMAKE([ENABLE_COVERAGE_FALSE])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([COVERAGE_CFLAGS])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([COVERAGE_CFLAGS])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^COVERAGE_CFLAGS$])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([COVERAGE_LIBS])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([COVERAGE_LIBS])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^COVERAGE_LIBS$])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([LCOV])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([LCOV])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^LCOV$])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([GENHTML])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([GENHTML])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^GENHTML$])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([LCOV])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([LCOV])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^LCOV$])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST([GENHTML])
|
||||
m4trace:configure.ac:72: -1- AC_SUBST_TRACE([GENHTML])
|
||||
m4trace:configure.ac:72: -1- m4_pattern_allow([^GENHTML$])
|
||||
m4trace:configure.ac:91: -1- AM_CONDITIONAL([ENABLE_VALGRIND], [test "$enable_valgrind" = "yes"])
|
||||
m4trace:configure.ac:91: -1- AC_SUBST([ENABLE_VALGRIND_TRUE])
|
||||
m4trace:configure.ac:91: -1- AC_SUBST_TRACE([ENABLE_VALGRIND_TRUE])
|
||||
m4trace:configure.ac:91: -1- m4_pattern_allow([^ENABLE_VALGRIND_TRUE$])
|
||||
m4trace:configure.ac:91: -1- AC_SUBST([ENABLE_VALGRIND_FALSE])
|
||||
m4trace:configure.ac:91: -1- AC_SUBST_TRACE([ENABLE_VALGRIND_FALSE])
|
||||
m4trace:configure.ac:91: -1- m4_pattern_allow([^ENABLE_VALGRIND_FALSE$])
|
||||
m4trace:configure.ac:91: -1- _AM_SUBST_NOTMAKE([ENABLE_VALGRIND_TRUE])
|
||||
m4trace:configure.ac:91: -1- _AM_SUBST_NOTMAKE([ENABLE_VALGRIND_FALSE])
|
||||
m4trace:configure.ac:93: -1- AC_SUBST([VALGRIND])
|
||||
m4trace:configure.ac:93: -1- AC_SUBST_TRACE([VALGRIND])
|
||||
m4trace:configure.ac:93: -1- m4_pattern_allow([^VALGRIND$])
|
||||
m4trace:configure.ac:93: -1- AC_SUBST([VALGRIND])
|
||||
m4trace:configure.ac:93: -1- AC_SUBST_TRACE([VALGRIND])
|
||||
m4trace:configure.ac:93: -1- m4_pattern_allow([^VALGRIND$])
|
||||
m4trace:configure.ac:106: -1- AM_CONDITIONAL([ENABLE_DOCUMENTATION], [test "$enable_documentation" = "yes"])
|
||||
m4trace:configure.ac:106: -1- AC_SUBST([ENABLE_DOCUMENTATION_TRUE])
|
||||
m4trace:configure.ac:106: -1- AC_SUBST_TRACE([ENABLE_DOCUMENTATION_TRUE])
|
||||
m4trace:configure.ac:106: -1- m4_pattern_allow([^ENABLE_DOCUMENTATION_TRUE$])
|
||||
m4trace:configure.ac:106: -1- AC_SUBST([ENABLE_DOCUMENTATION_FALSE])
|
||||
m4trace:configure.ac:106: -1- AC_SUBST_TRACE([ENABLE_DOCUMENTATION_FALSE])
|
||||
m4trace:configure.ac:106: -1- m4_pattern_allow([^ENABLE_DOCUMENTATION_FALSE$])
|
||||
m4trace:configure.ac:106: -1- _AM_SUBST_NOTMAKE([ENABLE_DOCUMENTATION_TRUE])
|
||||
m4trace:configure.ac:106: -1- _AM_SUBST_NOTMAKE([ENABLE_DOCUMENTATION_FALSE])
|
||||
m4trace:configure.ac:108: -1- AC_SUBST([A2X])
|
||||
m4trace:configure.ac:108: -1- AC_SUBST_TRACE([A2X])
|
||||
m4trace:configure.ac:108: -1- m4_pattern_allow([^A2X$])
|
||||
m4trace:configure.ac:108: -1- AC_SUBST([ASCIIDOC])
|
||||
m4trace:configure.ac:108: -1- AC_SUBST_TRACE([ASCIIDOC])
|
||||
m4trace:configure.ac:108: -1- m4_pattern_allow([^ASCIIDOC$])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([PKG_CONFIG])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([PKG_CONFIG])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG$])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([PKG_CONFIG_PATH])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([PKG_CONFIG_PATH])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([PKG_CONFIG_LIBDIR])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([PKG_CONFIG_LIBDIR])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([PKG_CONFIG])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([PKG_CONFIG])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^PKG_CONFIG$])
|
||||
m4trace:configure.ac:137: -1- AC_SUBST([FLAC_CFLAGS])
|
||||
m4trace:configure.ac:137: -1- AC_SUBST_TRACE([FLAC_CFLAGS])
|
||||
m4trace:configure.ac:137: -1- m4_pattern_allow([^FLAC_CFLAGS$])
|
||||
m4trace:configure.ac:137: -1- AC_SUBST([FLAC_LIBS])
|
||||
m4trace:configure.ac:137: -1- AC_SUBST_TRACE([FLAC_LIBS])
|
||||
m4trace:configure.ac:137: -1- m4_pattern_allow([^FLAC_LIBS$])
|
||||
m4trace:configure.ac:147: -1- AC_SUBST([FLAC_CFLAGS])
|
||||
m4trace:configure.ac:147: -1- AC_SUBST_TRACE([FLAC_CFLAGS])
|
||||
m4trace:configure.ac:147: -1- m4_pattern_allow([^FLAC_CFLAGS$])
|
||||
m4trace:configure.ac:148: -1- AC_SUBST([FLAC_LIBS])
|
||||
m4trace:configure.ac:148: -1- AC_SUBST_TRACE([FLAC_LIBS])
|
||||
m4trace:configure.ac:148: -1- m4_pattern_allow([^FLAC_LIBS$])
|
||||
m4trace:configure.ac:150: -1- AM_CONDITIONAL([ENABLE_FLAC], [test "$enable_flac" = "yes"])
|
||||
m4trace:configure.ac:150: -1- AC_SUBST([ENABLE_FLAC_TRUE])
|
||||
m4trace:configure.ac:150: -1- AC_SUBST_TRACE([ENABLE_FLAC_TRUE])
|
||||
m4trace:configure.ac:150: -1- m4_pattern_allow([^ENABLE_FLAC_TRUE$])
|
||||
m4trace:configure.ac:150: -1- AC_SUBST([ENABLE_FLAC_FALSE])
|
||||
m4trace:configure.ac:150: -1- AC_SUBST_TRACE([ENABLE_FLAC_FALSE])
|
||||
m4trace:configure.ac:150: -1- m4_pattern_allow([^ENABLE_FLAC_FALSE$])
|
||||
m4trace:configure.ac:150: -1- _AM_SUBST_NOTMAKE([ENABLE_FLAC_TRUE])
|
||||
m4trace:configure.ac:150: -1- _AM_SUBST_NOTMAKE([ENABLE_FLAC_FALSE])
|
||||
m4trace:configure.ac:152: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_FLAC])
|
||||
m4trace:configure.ac:152: -1- m4_pattern_allow([^ENABLE_FLAC$])
|
||||
m4trace:configure.ac:152: -1- AH_OUTPUT([ENABLE_FLAC], [/* Whether FLAC is enabled. */
|
||||
@%:@undef ENABLE_FLAC])
|
||||
m4trace:configure.ac:154: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_FLAC])
|
||||
m4trace:configure.ac:154: -1- m4_pattern_allow([^ENABLE_FLAC$])
|
||||
m4trace:configure.ac:154: -1- AH_OUTPUT([ENABLE_FLAC], [/* Whether FLAC is enabled. */
|
||||
@%:@undef ENABLE_FLAC])
|
||||
m4trace:configure.ac:157: -1- AC_CONFIG_FILES([
|
||||
audiofile.spec
|
||||
audiofile.pc
|
||||
audiofile-uninstalled.pc
|
||||
sfcommands/Makefile
|
||||
test/Makefile
|
||||
gtest/Makefile
|
||||
examples/Makefile
|
||||
libaudiofile/Makefile
|
||||
libaudiofile/alac/Makefile
|
||||
libaudiofile/modules/Makefile
|
||||
docs/Makefile
|
||||
Makefile])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.ac:170: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([LTLIBOBJS])
|
||||
m4trace:configure.ac:170: -1- m4_pattern_allow([^LTLIBOBJS$])
|
||||
m4trace:configure.ac:170: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:170: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:170: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
||||
m4trace:configure.ac:170: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:170: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([top_builddir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([top_build_prefix])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([srcdir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([abs_srcdir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([top_srcdir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([abs_top_srcdir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([builddir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([abs_builddir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([abs_top_builddir])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([INSTALL])
|
||||
m4trace:configure.ac:170: -1- AC_SUBST_TRACE([MKDIR_P])
|
||||
m4trace:configure.ac:170: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
|
File diff suppressed because it is too large
Load diff
1530
tools/audiofile-0.3.6/config.guess
vendored
1530
tools/audiofile-0.3.6/config.guess
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,103 +0,0 @@
|
|||
/* config.h. Generated from config.h.in by configure. */
|
||||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define if building universal (internal helper macro) */
|
||||
/* #undef AC_APPLE_UNIVERSAL_BUILD */
|
||||
|
||||
/* Whether FLAC is enabled. */
|
||||
#define ENABLE_FLAC 0
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
/* #undef HAVE_DLFCN_H */
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#define HAVE_FCNTL_H 1
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#define HAVE_INTTYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#define HAVE_MEMORY_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#define HAVE_STDINT_H 1
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#define HAVE_STDLIB_H 1
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#define HAVE_STRINGS_H 1
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#define HAVE_STRING_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#define HAVE_SYS_STAT_H 1
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#define HAVE_UNISTD_H 1
|
||||
|
||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
#define LT_OBJDIR ".libs/"
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "audiofile"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT ""
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "audiofile"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "audiofile 0.3.6"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "audiofile"
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#define PACKAGE_URL ""
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "0.3.6"
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.3.6"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
/* # undef WORDS_BIGENDIAN */
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#define _FILE_OFFSET_BITS 64
|
||||
|
||||
/* Define for large files, on AIX-style hosts. */
|
||||
/* #undef _LARGE_FILES */
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
/* #undef const */
|
||||
|
||||
/* Define to `long int' if <sys/types.h> does not define. */
|
||||
/* #undef off_t */
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
/* #undef size_t */
|
|
@ -1,102 +0,0 @@
|
|||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Whether FLAC is enabled. */
|
||||
#undef ENABLE_FLAC
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#undef HAVE_FCNTL_H
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
#undef LT_OBJDIR
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# undef WORDS_BIGENDIAN
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#undef _FILE_OFFSET_BITS
|
||||
|
||||
/* Define for large files, on AIX-style hosts. */
|
||||
#undef _LARGE_FILES
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#undef const
|
||||
|
||||
/* Define to `long int' if <sys/types.h> does not define. */
|
||||
#undef off_t
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
|
@ -1,103 +0,0 @@
|
|||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Whether FLAC is enabled. */
|
||||
#undef ENABLE_FLAC
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#undef HAVE_FCNTL_H
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||
*/
|
||||
#undef LT_OBJDIR
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
# if defined __BIG_ENDIAN__
|
||||
# define WORDS_BIGENDIAN 1
|
||||
# endif
|
||||
#else
|
||||
# ifndef WORDS_BIGENDIAN
|
||||
# undef WORDS_BIGENDIAN
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#undef _FILE_OFFSET_BITS
|
||||
|
||||
/* Define for large files, on AIX-style hosts. */
|
||||
#undef _LARGE_FILES
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
#undef const
|
||||
|
||||
/* Define to `long int' if <sys/types.h> does not define. */
|
||||
#undef off_t
|
||||
|
||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
||||
#undef size_t
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1782
tools/audiofile-0.3.6/config.sub
vendored
1782
tools/audiofile-0.3.6/config.sub
vendored
File diff suppressed because it is too large
Load diff
19712
tools/audiofile-0.3.6/configure
vendored
19712
tools/audiofile-0.3.6/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,170 +0,0 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT([audiofile], [0.3.6])
|
||||
AC_CONFIG_SRCDIR([libaudiofile/AIFF.cpp])
|
||||
|
||||
dnl Set libtool version information.
|
||||
AUDIOFILE_VERSION_INFO=1:0:0
|
||||
AUDIOFILE_VERSION=$PACKAGE_VERSION
|
||||
|
||||
AC_SUBST(AUDIOFILE_VERSION)
|
||||
AC_SUBST(AUDIOFILE_VERSION_INFO)
|
||||
|
||||
AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION)
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC_C99
|
||||
AC_PROG_CXX
|
||||
AC_PROG_INSTALL
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl Checks for header files.
|
||||
AC_HEADER_STDC
|
||||
AC_CHECK_HEADERS(fcntl.h unistd.h)
|
||||
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_C_CONST
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
dnl Enable large file support by default.
|
||||
AC_SYS_LARGEFILE
|
||||
AC_TYPE_OFF_T
|
||||
AC_TYPE_SIZE_T
|
||||
|
||||
dnl Set up platform specific stuff
|
||||
platform=none
|
||||
AC_MSG_CHECKING([for platform specific tests to compile])
|
||||
case "$host_os" in
|
||||
linux*)
|
||||
TEST_BIN="linuxtest alsaplay"
|
||||
platform=linux
|
||||
;;
|
||||
irix5* | irix6*)
|
||||
TEST_BIN="irixread irixtestloop"
|
||||
platform=irix
|
||||
;;
|
||||
darwin*)
|
||||
if test -e /System/Library/Frameworks/CoreAudio.framework; then
|
||||
TEST_BIN="osxplay"
|
||||
platform="Mac OS X"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
AC_MSG_RESULT($platform)
|
||||
AC_SUBST(TEST_BIN)
|
||||
|
||||
AC_ARG_ENABLE(werror,
|
||||
AS_HELP_STRING([--enable-werror], [treat compiler warnings as errors]),
|
||||
[enable_werror=$enableval],
|
||||
[enable_werror=no])
|
||||
AM_CONDITIONAL(ENABLE_WERROR, [test "$enable_werror" = "yes"])
|
||||
|
||||
AS_IF([test "$enable_werror" = "yes"],
|
||||
[WERROR_CFLAGS="-Werror"
|
||||
AC_SUBST(WERROR_CFLAGS)])
|
||||
|
||||
AC_ARG_ENABLE(coverage,
|
||||
AS_HELP_STRING([--enable-coverage], [enable code coverage]),
|
||||
[enable_coverage=$enableval],
|
||||
[enable_coverage=no])
|
||||
AM_CONDITIONAL(ENABLE_COVERAGE, [test "$enable_coverage" = "yes"])
|
||||
|
||||
AS_IF([test "$enable_coverage" = "yes"],
|
||||
[COVERAGE_CFLAGS="-fprofile-arcs -ftest-coverage"
|
||||
COVERAGE_LIBS="-lgcov"
|
||||
AC_SUBST(COVERAGE_CFLAGS)
|
||||
AC_SUBST(COVERAGE_LIBS)
|
||||
|
||||
AC_PATH_PROG(LCOV, lcov, :)
|
||||
AC_PATH_PROG(GENHTML, genhtml, :)
|
||||
AC_SUBST(LCOV)
|
||||
AC_SUBST(GENHTML)
|
||||
AS_IF([test "$LCOV" = :],
|
||||
[AC_MSG_ERROR([lcov must be installed for code coverage: http://ltp.sourceforge.net/coverage/lcov.php])]
|
||||
)]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(valgrind,
|
||||
AS_HELP_STRING([--enable-valgrind], [enable testing with Valgrind]),
|
||||
[enable_valgrind=$enableval],
|
||||
[enable_valgrind=no])
|
||||
AM_CONDITIONAL(ENABLE_VALGRIND, [test "$enable_valgrind" = "yes"])
|
||||
|
||||
AS_IF([test "$enable_valgrind" = "yes"],
|
||||
[AC_PATH_PROG(VALGRIND, valgrind, :)
|
||||
AC_SUBST(VALGRIND)
|
||||
AS_IF([test "$VALGRIND" = :],
|
||||
[AC_MSG_ERROR([Could not find Valgrind.])]
|
||||
)]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(docs,
|
||||
AS_HELP_STRING([--disable-docs], [disable documentation]),
|
||||
[enable_documentation=$enableval],
|
||||
[enable_documentation=yes])
|
||||
|
||||
AM_CONDITIONAL(ENABLE_DOCUMENTATION, [test "$enable_documentation" = "yes"])
|
||||
|
||||
AS_IF([test "$enable_documentation" = "yes"],
|
||||
[AC_PATH_PROG(A2X, a2x, :)
|
||||
AC_PATH_PROG(ASCIIDOC, asciidoc, :)
|
||||
AS_IF([test "$A2X" = :],
|
||||
[AC_MSG_WARN([Could not find a2x.])]
|
||||
)
|
||||
AS_IF([test "$ASCIIDOC" = :],
|
||||
[AC_MSG_WARN([Could not find asciidoc.])]
|
||||
)]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(examples,
|
||||
AS_HELP_STRING([--disable-examples], [disable examples]),
|
||||
[enable_examples=$enableval],
|
||||
[enable_examples=yes])
|
||||
AS_IF([test "$enable_examples" != "yes"], [TEST_BIN=""])
|
||||
|
||||
AC_ARG_ENABLE(flac,
|
||||
AS_HELP_STRING([--disable-flac], [disable FLAC]),
|
||||
[enable_flac=$enableval],
|
||||
[enable_flac=yes])
|
||||
|
||||
PKG_PROG_PKG_CONFIG
|
||||
|
||||
FLAC_CFLAGS=""
|
||||
FLAC_LIBS=""
|
||||
|
||||
if test -n "$PKG_CONFIG" ; then
|
||||
if test "$enable_flac" = "yes" ; then
|
||||
PKG_CHECK_MODULES([FLAC], [flac >= 1.2.1], [ac_cv_flac=yes], [ac_cv_flac=no])
|
||||
FLAC_CFLAGS=`echo $FLAC_CFLAGS | $SED "s/FLAC$//"`
|
||||
if test "$ac_cv_flac" = "no" ; then
|
||||
enable_flac=no
|
||||
fi
|
||||
fi
|
||||
else
|
||||
enable_flac=no
|
||||
fi
|
||||
|
||||
AC_SUBST(FLAC_CFLAGS)
|
||||
AC_SUBST(FLAC_LIBS)
|
||||
|
||||
AM_CONDITIONAL(ENABLE_FLAC, [test "$enable_flac" = "yes"])
|
||||
if test "$enable_flac" = "yes" ; then
|
||||
AC_DEFINE_UNQUOTED([ENABLE_FLAC], [1], [Whether FLAC is enabled.])
|
||||
else
|
||||
AC_DEFINE_UNQUOTED([ENABLE_FLAC], [0], [Whether FLAC is enabled.])
|
||||
fi
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
audiofile.spec
|
||||
audiofile.pc
|
||||
audiofile-uninstalled.pc
|
||||
sfcommands/Makefile
|
||||
test/Makefile
|
||||
gtest/Makefile
|
||||
examples/Makefile
|
||||
libaudiofile/Makefile
|
||||
libaudiofile/alac/Makefile
|
||||
libaudiofile/modules/Makefile
|
||||
docs/Makefile
|
||||
Makefile])
|
||||
AC_OUTPUT
|
|
@ -1,708 +0,0 @@
|
|||
#! /bin/sh
|
||||
# depcomp - compile a program generating dependencies as side-effects
|
||||
|
||||
scriptversion=2012-03-27.16; # UTC
|
||||
|
||||
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010,
|
||||
# 2011, 2012 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||
|
||||
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||
as side-effects.
|
||||
|
||||
Environment variables:
|
||||
depmode Dependency tracking mode.
|
||||
source Source file read by 'PROGRAMS ARGS'.
|
||||
object Object file output by 'PROGRAMS ARGS'.
|
||||
DEPDIR directory where to store dependencies.
|
||||
depfile Dependency file to output.
|
||||
tmpdepfile Temporary file to use when outputting dependencies.
|
||||
libtool Whether libtool is used (yes/no).
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "depcomp $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
esac
|
||||
|
||||
# A tabulation character.
|
||||
tab=' '
|
||||
# A newline character.
|
||||
nl='
|
||||
'
|
||||
|
||||
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||
depfile=${depfile-`echo "$object" |
|
||||
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||
|
||||
rm -f "$tmpdepfile"
|
||||
|
||||
# Some modes work just like other modes, but use different flags. We
|
||||
# parameterize here, but still list the modes in the big case below,
|
||||
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||
# here, because this file can only contain one case statement.
|
||||
if test "$depmode" = hp; then
|
||||
# HP compiler uses -M and no extra arg.
|
||||
gccflag=-M
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
if test "$depmode" = dashXmstdout; then
|
||||
# This is just like dashmstdout with a different argument.
|
||||
dashmflag=-xM
|
||||
depmode=dashmstdout
|
||||
fi
|
||||
|
||||
cygpath_u="cygpath -u -f -"
|
||||
if test "$depmode" = msvcmsys; then
|
||||
# This is just like msvisualcpp but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvisualcpp
|
||||
fi
|
||||
|
||||
if test "$depmode" = msvc7msys; then
|
||||
# This is just like msvc7 but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvc7
|
||||
fi
|
||||
|
||||
if test "$depmode" = xlc; then
|
||||
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations.
|
||||
gccflag=-qmakedep=gcc,-MF
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
case "$depmode" in
|
||||
gcc3)
|
||||
## gcc 3 implements dependency tracking that does exactly what
|
||||
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
||||
## the command line argument order; so add the flags where they
|
||||
## appear in depend2.am. Note that the slowdown incurred here
|
||||
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
||||
*) set fnord "$@" "$arg" ;;
|
||||
esac
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
done
|
||||
"$@"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
mv "$tmpdepfile" "$depfile"
|
||||
;;
|
||||
|
||||
gcc)
|
||||
## There are various ways to get dependency output from gcc. Here's
|
||||
## why we pick this rather obscure method:
|
||||
## - Don't want to use -MD because we'd like the dependencies to end
|
||||
## up in a subdir. Having to rename by hand is ugly.
|
||||
## (We might end up doing this anyway to support other compilers.)
|
||||
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||
## -MM, not -M (despite what the docs say).
|
||||
## - Using -M directly means running the compiler twice (even worse
|
||||
## than renaming).
|
||||
if test -z "$gccflag"; then
|
||||
gccflag=-MD,
|
||||
fi
|
||||
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
||||
## The second -e expression handles DOS-style file names with drive letters.
|
||||
sed -e 's/^[^:]*: / /' \
|
||||
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||
## This next piece of magic avoids the "deleted header file" problem.
|
||||
## The problem is that when a header file which appears in a .P file
|
||||
## is deleted, the dependency causes make to die (because there is
|
||||
## typically no way to rebuild the header). We avoid this by adding
|
||||
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||
## this for us directly.
|
||||
tr ' ' "$nl" < "$tmpdepfile" |
|
||||
## Some versions of gcc put a space before the ':'. On the theory
|
||||
## that the space means something, we add a space to the output as
|
||||
## well. hp depmode also adds that space, but also prefixes the VPATH
|
||||
## to the object. Take care to not repeat it in the output.
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
sgi)
|
||||
if test "$libtool" = yes; then
|
||||
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||
else
|
||||
"$@" -MDupdate "$tmpdepfile"
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
|
||||
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||
echo "$object : \\" > "$depfile"
|
||||
|
||||
# Clip off the initial element (the dependent). Don't try to be
|
||||
# clever and replace this with sed code, as IRIX sed won't handle
|
||||
# lines with more than a fixed number of characters (4096 in
|
||||
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||
# the IRIX cc adds comments like '#:fec' to the end of the
|
||||
# dependency line.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
|
||||
tr "$nl" ' ' >> "$depfile"
|
||||
echo >> "$depfile"
|
||||
|
||||
# The second pass generates a dummy entry for each header file.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||
>> "$depfile"
|
||||
else
|
||||
# The sourcefile does not contain any dependencies, so just
|
||||
# store a dummy comment line, to avoid errors with the Makefile
|
||||
# "include basename.Plo" scheme.
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
xlc)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
aix)
|
||||
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||
# in a .u file. In older versions, this file always lives in the
|
||||
# current directory. Also, the AIX compiler puts '$object:' at the
|
||||
# start of each line; $object doesn't have directory information.
|
||||
# Version 6 uses the directory in both cases.
|
||||
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||
test "x$dir" = "x$object" && dir=
|
||||
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$base.u
|
||||
tmpdepfile3=$dir.libs/$base.u
|
||||
"$@" -Wc,-M
|
||||
else
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$dir$base.u
|
||||
tmpdepfile3=$dir$base.u
|
||||
"$@" -M
|
||||
fi
|
||||
stat=$?
|
||||
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
if test -f "$tmpdepfile"; then
|
||||
# Each line is of the form 'foo.o: dependent.h'.
|
||||
# Do two passes, one to just change these to
|
||||
# '$object: dependent.h' and one to simply 'dependent.h:'.
|
||||
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
# The sourcefile does not contain any dependencies, so just
|
||||
# store a dummy comment line, to avoid errors with the Makefile
|
||||
# "include basename.Plo" scheme.
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
icc)
|
||||
# Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'.
|
||||
# However on
|
||||
# $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c
|
||||
# ICC 7.0 will fill foo.d with something like
|
||||
# foo.o: sub/foo.c
|
||||
# foo.o: sub/foo.h
|
||||
# which is wrong. We want
|
||||
# sub/foo.o: sub/foo.c
|
||||
# sub/foo.o: sub/foo.h
|
||||
# sub/foo.c:
|
||||
# sub/foo.h:
|
||||
# ICC 7.1 will output
|
||||
# foo.o: sub/foo.c sub/foo.h
|
||||
# and will wrap long lines using '\':
|
||||
# foo.o: sub/foo.c ... \
|
||||
# sub/foo.h ... \
|
||||
# ...
|
||||
# tcc 0.9.26 (FIXME still under development at the moment of writing)
|
||||
# will emit a similar output, but also prepend the continuation lines
|
||||
# with horizontal tabulation characters.
|
||||
"$@" -MD -MF "$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each line is of the form 'foo.o: dependent.h',
|
||||
# or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'.
|
||||
# Do two passes, one to just change these to
|
||||
# '$object: dependent.h' and one to simply 'dependent.h:'.
|
||||
sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
|
||||
< "$tmpdepfile" > "$depfile"
|
||||
sed '
|
||||
s/[ '"$tab"'][ '"$tab"']*/ /g
|
||||
s/^ *//
|
||||
s/ *\\*$//
|
||||
s/^[^:]*: *//
|
||||
/^$/d
|
||||
/:$/d
|
||||
s/$/ :/
|
||||
' < "$tmpdepfile" >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp2)
|
||||
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
||||
# compilers, which have integrated preprocessors. The correct option
|
||||
# to use with these is +Maked; it writes dependencies to a file named
|
||||
# 'foo.d', which lands next to the object file, wherever that
|
||||
# happens to be.
|
||||
# Much of this is similar to the tru64 case; see comments there.
|
||||
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||
test "x$dir" = "x$object" && dir=
|
||||
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir.libs/$base.d
|
||||
"$@" -Wc,+Maked
|
||||
else
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
"$@" +Maked
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
if test -f "$tmpdepfile"; then
|
||||
sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
|
||||
# Add 'dependent.h:' lines.
|
||||
sed -ne '2,${
|
||||
s/^ *//
|
||||
s/ \\*$//
|
||||
s/$/:/
|
||||
p
|
||||
}' "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile" "$tmpdepfile2"
|
||||
;;
|
||||
|
||||
tru64)
|
||||
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
||||
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||
# dependencies in 'foo.d' instead, so we check for that too.
|
||||
# Subdirectories are respected.
|
||||
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||
test "x$dir" = "x$object" && dir=
|
||||
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||
|
||||
if test "$libtool" = yes; then
|
||||
# With Tru64 cc, shared objects can also be used to make a
|
||||
# static library. This mechanism is used in libtool 1.4 series to
|
||||
# handle both shared and static libraries in a single compilation.
|
||||
# With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
|
||||
#
|
||||
# With libtool 1.5 this exception was removed, and libtool now
|
||||
# generates 2 separate objects for the 2 libraries. These two
|
||||
# compilations output dependencies in $dir.libs/$base.o.d and
|
||||
# in $dir$base.o.d. We have to check for both files, because
|
||||
# one of the two compilations can be disabled. We should prefer
|
||||
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||
# the former would cause a distcleancheck panic.
|
||||
tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
|
||||
tmpdepfile2=$dir$base.o.d # libtool 1.5
|
||||
tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
|
||||
tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||
"$@" -Wc,-MD
|
||||
else
|
||||
tmpdepfile1=$dir$base.o.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
tmpdepfile3=$dir$base.d
|
||||
tmpdepfile4=$dir$base.d
|
||||
"$@" -MD
|
||||
fi
|
||||
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
if test -f "$tmpdepfile"; then
|
||||
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvc7)
|
||||
if test "$libtool" = yes; then
|
||||
showIncludes=-Wc,-showIncludes
|
||||
else
|
||||
showIncludes=-showIncludes
|
||||
fi
|
||||
"$@" $showIncludes > "$tmpdepfile"
|
||||
stat=$?
|
||||
grep -v '^Note: including file: ' "$tmpdepfile"
|
||||
if test "$stat" = 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
# The first sed program below extracts the file names and escapes
|
||||
# backslashes for cygpath. The second sed program outputs the file
|
||||
# name when reading, but also accumulates all include files in the
|
||||
# hold buffer in order to output them again at the end. This only
|
||||
# works with sed implementations that can handle large buffers.
|
||||
sed < "$tmpdepfile" -n '
|
||||
/^Note: including file: *\(.*\)/ {
|
||||
s//\1/
|
||||
s/\\/\\\\/g
|
||||
p
|
||||
}' | $cygpath_u | sort -u | sed -n '
|
||||
s/ /\\ /g
|
||||
s/\(.*\)/'"$tab"'\1 \\/p
|
||||
s/.\(.*\) \\/\1:/
|
||||
H
|
||||
$ {
|
||||
s/.*/'"$tab"'/
|
||||
G
|
||||
p
|
||||
}' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvc7msys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
#nosideeffect)
|
||||
# This comment above is used by automake to tell side-effect
|
||||
# dependency tracking mechanisms from slower ones.
|
||||
|
||||
dashmstdout)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout, regardless of -o.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
test -z "$dashmflag" && dashmflag=-M
|
||||
# Require at least two characters before searching for ':'
|
||||
# in the target name. This is to cope with DOS-style filenames:
|
||||
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
||||
"$@" $dashmflag |
|
||||
sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
cat < "$tmpdepfile" > "$depfile"
|
||||
tr ' ' "$nl" < "$tmpdepfile" | \
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
dashXmstdout)
|
||||
# This case only exists to satisfy depend.m4. It is never actually
|
||||
# run, as this mode is specially recognized in the preamble.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
makedepend)
|
||||
"$@" || exit $?
|
||||
# Remove any Libtool call
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
# X makedepend
|
||||
shift
|
||||
cleared=no eat=no
|
||||
for arg
|
||||
do
|
||||
case $cleared in
|
||||
no)
|
||||
set ""; shift
|
||||
cleared=yes ;;
|
||||
esac
|
||||
if test $eat = yes; then
|
||||
eat=no
|
||||
continue
|
||||
fi
|
||||
case "$arg" in
|
||||
-D*|-I*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
# Strip any option that makedepend may not understand. Remove
|
||||
# the object too, otherwise makedepend will parse it as a source file.
|
||||
-arch)
|
||||
eat=yes ;;
|
||||
-*|$object)
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
esac
|
||||
done
|
||||
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
||||
touch "$tmpdepfile"
|
||||
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||
rm -f "$depfile"
|
||||
# makedepend may prepend the VPATH from the source file name to the object.
|
||||
# No need to regex-escape $object, excess matching of '.' is harmless.
|
||||
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
||||
sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||
;;
|
||||
|
||||
cpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
"$@" -E |
|
||||
sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
|
||||
sed '$ s: \\$::' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
cat < "$tmpdepfile" >> "$depfile"
|
||||
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvisualcpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case "$arg" in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||
set fnord "$@"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
done
|
||||
"$@" -E 2>/dev/null |
|
||||
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
||||
echo "$tab" >> "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvcmsys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
none)
|
||||
exec "$@"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unknown depmode $depmode" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
|
@ -1,597 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# docs/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/audiofile
|
||||
pkgincludedir = $(includedir)/audiofile
|
||||
pkglibdir = $(libdir)/audiofile
|
||||
pkglibexecdir = $(libexecdir)/audiofile
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-w64-mingw32
|
||||
host_triplet = x86_64-w64-mingw32
|
||||
subdir = docs
|
||||
DIST_COMMON = $(dist_man1_MANS) $(dist_man3_MANS) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
man1dir = $(mandir)/man1
|
||||
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"
|
||||
man3dir = $(mandir)/man3
|
||||
NROFF = nroff
|
||||
MANS = $(dist_man1_MANS) $(dist_man3_MANS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X =
|
||||
ACLOCAL = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run aclocal-1.11
|
||||
AMTAR = $${TAR-tar}
|
||||
AR = ar
|
||||
ASCIIDOC =
|
||||
AUDIOFILE_VERSION = 0.3.6
|
||||
AUDIOFILE_VERSION_INFO = 1:0:0
|
||||
AUTOCONF = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run automake-1.11
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2
|
||||
COVERAGE_CFLAGS =
|
||||
COVERAGE_LIBS =
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = cygpath -w
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT = .exe
|
||||
FGREP = /usr/bin/grep -F
|
||||
FLAC_CFLAGS =
|
||||
FLAC_LIBS =
|
||||
GENHTML =
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LCOV =
|
||||
LD = I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/bin/ld.exe
|
||||
LDFLAGS =
|
||||
LIBOBJS =
|
||||
LIBS = -lstdc++
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = cp -pR
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAKEINFO = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /mingw64/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = audiofile
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = audiofile
|
||||
PACKAGE_STRING = audiofile 0.3.6
|
||||
PACKAGE_TARNAME = audiofile
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.3.6
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /mingw64/bin/pkg-config
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH = /mingw64/lib/pkgconfig:/mingw64/share/pkgconfig
|
||||
RANLIB = ranlib
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TEST_BIN =
|
||||
VALGRIND =
|
||||
VERSION = 0.3.6
|
||||
WERROR_CFLAGS =
|
||||
abs_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6/docs
|
||||
abs_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6/docs
|
||||
abs_top_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_top_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-w64-mingw32
|
||||
build_alias = x86_64-w64-mingw32
|
||||
build_cpu = x86_64
|
||||
build_os = mingw32
|
||||
build_vendor = w64
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-w64-mingw32
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = mingw32
|
||||
host_vendor = w64
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /usr/bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /mingw64
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
#DOCS_TXT_MAN1 = \
|
||||
# sfconvert.1.txt \
|
||||
# sfinfo.1.txt
|
||||
|
||||
#DOCS_TXT_MAN3 = \
|
||||
# afCloseFile.3.txt \
|
||||
# afGetFrameCount.3.txt \
|
||||
# afGetFrameSize.3.txt \
|
||||
# afInitAESChannelDataTo.3.txt \
|
||||
# afInitCompression.3.txt \
|
||||
# afInitFileFormat.3.txt \
|
||||
# afInitSampleFormat.3.txt \
|
||||
# afNewFileSetup.3.txt \
|
||||
# afOpenFile.3.txt \
|
||||
# afQuery.3.txt \
|
||||
# afReadFrames.3.txt \
|
||||
# afReadMisc.3.txt \
|
||||
# afSeekFrame.3.txt \
|
||||
# afSetErrorHandler.3.txt \
|
||||
# afSetVirtualSampleFormat.3.txt \
|
||||
# afWriteFrames.3.txt
|
||||
|
||||
#DOCS_TXT = $(DOCS_TXT_MAN1) $(DOCS_TXT_MAN3)
|
||||
#EXTRA_DIST = \
|
||||
# $(DOCS_TXT) \
|
||||
# asciidoc.conf
|
||||
|
||||
#DOCS_MAN1 = $(DOCS_TXT_MAN1:.txt=)
|
||||
#DOCS_MAN3 = $(DOCS_TXT_MAN3:.txt=)
|
||||
#DOCS_MAN3_EXTRA = \
|
||||
# afInitAESChannelData.3 \
|
||||
# afInitByteOrder.3 \
|
||||
# afInitChannels.3 \
|
||||
# afInitRate.3 \
|
||||
# afGetDataOffset.3 \
|
||||
# afGetTrackBytes.3 \
|
||||
# afQueryLong.3 \
|
||||
# afQueryDouble.3 \
|
||||
# afQueryPointer.3 \
|
||||
# afSeekMisc.3 \
|
||||
# afSetVirtualByteOrder.3 \
|
||||
# afSetVirtualChannels.3 \
|
||||
# afSetVirtualPCMMapping.3 \
|
||||
# afTellFrame.3 \
|
||||
# afWriteMisc.3
|
||||
|
||||
#DOCS_HTML = $(DOCS_TXT:.txt=.html)
|
||||
#dist_man1_MANS = $(DOCS_MAN1)
|
||||
#dist_man3_MANS = $(DOCS_MAN3) $(DOCS_MAN3_EXTRA)
|
||||
#ASCIIDOCFLAGS = -arevnumber=$(VERSION) -amansource="Audio File Library"
|
||||
#A2XFLAGS = $(ASCIIDOCFLAGS) -d manpage -f manpage
|
||||
#CLEANFILES = *.1 *.3 *.html
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu docs/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-man1: $(dist_man1_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list1='$(dist_man1_MANS)'; \
|
||||
list2=''; \
|
||||
test -n "$(man1dir)" \
|
||||
&& test -n "`echo $$list1$$list2`" \
|
||||
|| exit 0; \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
|
||||
{ for i in $$list1; do echo "$$i"; done; \
|
||||
if test -n "$$list2"; then \
|
||||
for i in $$list2; do echo "$$i"; done \
|
||||
| sed -n '/\.1[a-z]*$$/p'; \
|
||||
fi; \
|
||||
} | while read p; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; echo "$$p"; \
|
||||
done | \
|
||||
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
|
||||
fi; \
|
||||
done; \
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man1:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dist_man1_MANS)'; test -n "$(man1dir)" || exit 0; \
|
||||
files=`{ for i in $$list; do echo "$$i"; done; \
|
||||
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
||||
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
|
||||
install-man3: $(dist_man3_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list1='$(dist_man3_MANS)'; \
|
||||
list2=''; \
|
||||
test -n "$(man3dir)" \
|
||||
&& test -n "`echo $$list1$$list2`" \
|
||||
|| exit 0; \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
|
||||
{ for i in $$list1; do echo "$$i"; done; \
|
||||
if test -n "$$list2"; then \
|
||||
for i in $$list2; do echo "$$i"; done \
|
||||
| sed -n '/\.3[a-z]*$$/p'; \
|
||||
fi; \
|
||||
} | while read p; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; echo "$$p"; \
|
||||
done | \
|
||||
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst" || exit $$?; \
|
||||
fi; \
|
||||
done; \
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man3dir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(man3dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man3:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dist_man3_MANS)'; test -n "$(man3dir)" || exit 0; \
|
||||
files=`{ for i in $$list; do echo "$$i"; done; \
|
||||
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
||||
dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(MANS)'; if test -n "$$list"; then \
|
||||
list=`for p in $$list; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
|
||||
if test -n "$$list" && \
|
||||
grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
|
||||
echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
|
||||
grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
|
||||
echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
|
||||
echo " typically \`make maintainer-clean' will remove them" >&2; \
|
||||
exit 1; \
|
||||
else :; fi; \
|
||||
else :; fi
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(MANS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-man
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man: install-man1 install-man3
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-man
|
||||
|
||||
uninstall-man: uninstall-man1 uninstall-man3
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
distclean distclean-generic distclean-libtool distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-man1 \
|
||||
install-man3 install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am uninstall uninstall-am uninstall-man uninstall-man1 \
|
||||
uninstall-man3
|
||||
|
||||
|
||||
#%.html: %.txt
|
||||
# $(ASCIIDOC) $(ASCIIDOCFLAGS) -b html4 -d manpage -f asciidoc.conf $<
|
||||
|
||||
#%.1: %.1.txt
|
||||
# $(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
#%.3: %.3.txt
|
||||
# $(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
#html: $(DOCS_HTML)
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,71 +0,0 @@
|
|||
if ENABLE_DOCUMENTATION
|
||||
|
||||
DOCS_TXT_MAN1 = \
|
||||
sfconvert.1.txt \
|
||||
sfinfo.1.txt
|
||||
|
||||
DOCS_TXT_MAN3 = \
|
||||
afCloseFile.3.txt \
|
||||
afGetFrameCount.3.txt \
|
||||
afGetFrameSize.3.txt \
|
||||
afInitAESChannelDataTo.3.txt \
|
||||
afInitCompression.3.txt \
|
||||
afInitFileFormat.3.txt \
|
||||
afInitSampleFormat.3.txt \
|
||||
afNewFileSetup.3.txt \
|
||||
afOpenFile.3.txt \
|
||||
afQuery.3.txt \
|
||||
afReadFrames.3.txt \
|
||||
afReadMisc.3.txt \
|
||||
afSeekFrame.3.txt \
|
||||
afSetErrorHandler.3.txt \
|
||||
afSetVirtualSampleFormat.3.txt \
|
||||
afWriteFrames.3.txt
|
||||
|
||||
DOCS_TXT = $(DOCS_TXT_MAN1) $(DOCS_TXT_MAN3)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(DOCS_TXT) \
|
||||
asciidoc.conf
|
||||
|
||||
DOCS_MAN1 = $(DOCS_TXT_MAN1:.txt=)
|
||||
DOCS_MAN3 = $(DOCS_TXT_MAN3:.txt=)
|
||||
DOCS_MAN3_EXTRA = \
|
||||
afInitAESChannelData.3 \
|
||||
afInitByteOrder.3 \
|
||||
afInitChannels.3 \
|
||||
afInitRate.3 \
|
||||
afGetDataOffset.3 \
|
||||
afGetTrackBytes.3 \
|
||||
afQueryLong.3 \
|
||||
afQueryDouble.3 \
|
||||
afQueryPointer.3 \
|
||||
afSeekMisc.3 \
|
||||
afSetVirtualByteOrder.3 \
|
||||
afSetVirtualChannels.3 \
|
||||
afSetVirtualPCMMapping.3 \
|
||||
afTellFrame.3 \
|
||||
afWriteMisc.3
|
||||
|
||||
DOCS_HTML = $(DOCS_TXT:.txt=.html)
|
||||
|
||||
dist_man1_MANS = $(DOCS_MAN1)
|
||||
dist_man3_MANS = $(DOCS_MAN3) $(DOCS_MAN3_EXTRA)
|
||||
|
||||
ASCIIDOCFLAGS = -arevnumber=$(VERSION) -amansource="Audio File Library"
|
||||
A2XFLAGS = $(ASCIIDOCFLAGS) -d manpage -f manpage
|
||||
|
||||
%.html: %.txt
|
||||
$(ASCIIDOC) $(ASCIIDOCFLAGS) -b html4 -d manpage -f asciidoc.conf $<
|
||||
|
||||
%.1: %.1.txt
|
||||
$(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
%.3: %.3.txt
|
||||
$(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
html: $(DOCS_HTML)
|
||||
|
||||
CLEANFILES = *.1 *.3 *.html
|
||||
|
||||
endif
|
|
@ -1,597 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
VPATH = @srcdir@
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
subdir = docs
|
||||
DIST_COMMON = $(dist_man1_MANS) $(dist_man3_MANS) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__uninstall_files_from_dir = { \
|
||||
test -z "$$files" \
|
||||
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
||||
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
||||
$(am__cd) "$$dir" && rm -f $$files; }; \
|
||||
}
|
||||
man1dir = $(mandir)/man1
|
||||
am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"
|
||||
man3dir = $(mandir)/man3
|
||||
NROFF = nroff
|
||||
MANS = $(dist_man1_MANS) $(dist_man3_MANS)
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X = @A2X@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASCIIDOC = @ASCIIDOC@
|
||||
AUDIOFILE_VERSION = @AUDIOFILE_VERSION@
|
||||
AUDIOFILE_VERSION_INFO = @AUDIOFILE_VERSION_INFO@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
|
||||
COVERAGE_LIBS = @COVERAGE_LIBS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLAC_CFLAGS = @FLAC_CFLAGS@
|
||||
FLAC_LIBS = @FLAC_LIBS@
|
||||
GENHTML = @GENHTML@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LCOV = @LCOV@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
||||
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TEST_BIN = @TEST_BIN@
|
||||
VALGRIND = @VALGRIND@
|
||||
VERSION = @VERSION@
|
||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_TXT_MAN1 = \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ sfconvert.1.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ sfinfo.1.txt
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_TXT_MAN3 = \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afCloseFile.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afGetFrameCount.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afGetFrameSize.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitAESChannelDataTo.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitCompression.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitFileFormat.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitSampleFormat.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afNewFileSetup.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afOpenFile.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afQuery.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afReadFrames.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afReadMisc.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSeekFrame.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSetErrorHandler.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSetVirtualSampleFormat.3.txt \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afWriteFrames.3.txt
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_TXT = $(DOCS_TXT_MAN1) $(DOCS_TXT_MAN3)
|
||||
@ENABLE_DOCUMENTATION_TRUE@EXTRA_DIST = \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ $(DOCS_TXT) \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ asciidoc.conf
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_MAN1 = $(DOCS_TXT_MAN1:.txt=)
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_MAN3 = $(DOCS_TXT_MAN3:.txt=)
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_MAN3_EXTRA = \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitAESChannelData.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitByteOrder.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitChannels.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afInitRate.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afGetDataOffset.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afGetTrackBytes.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afQueryLong.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afQueryDouble.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afQueryPointer.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSeekMisc.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSetVirtualByteOrder.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSetVirtualChannels.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afSetVirtualPCMMapping.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afTellFrame.3 \
|
||||
@ENABLE_DOCUMENTATION_TRUE@ afWriteMisc.3
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@DOCS_HTML = $(DOCS_TXT:.txt=.html)
|
||||
@ENABLE_DOCUMENTATION_TRUE@dist_man1_MANS = $(DOCS_MAN1)
|
||||
@ENABLE_DOCUMENTATION_TRUE@dist_man3_MANS = $(DOCS_MAN3) $(DOCS_MAN3_EXTRA)
|
||||
@ENABLE_DOCUMENTATION_TRUE@ASCIIDOCFLAGS = -arevnumber=$(VERSION) -amansource="Audio File Library"
|
||||
@ENABLE_DOCUMENTATION_TRUE@A2XFLAGS = $(ASCIIDOCFLAGS) -d manpage -f manpage
|
||||
@ENABLE_DOCUMENTATION_TRUE@CLEANFILES = *.1 *.3 *.html
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu docs/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-man1: $(dist_man1_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list1='$(dist_man1_MANS)'; \
|
||||
list2=''; \
|
||||
test -n "$(man1dir)" \
|
||||
&& test -n "`echo $$list1$$list2`" \
|
||||
|| exit 0; \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
|
||||
{ for i in $$list1; do echo "$$i"; done; \
|
||||
if test -n "$$list2"; then \
|
||||
for i in $$list2; do echo "$$i"; done \
|
||||
| sed -n '/\.1[a-z]*$$/p'; \
|
||||
fi; \
|
||||
} | while read p; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; echo "$$p"; \
|
||||
done | \
|
||||
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
|
||||
fi; \
|
||||
done; \
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man1:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dist_man1_MANS)'; test -n "$(man1dir)" || exit 0; \
|
||||
files=`{ for i in $$list; do echo "$$i"; done; \
|
||||
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
||||
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
|
||||
install-man3: $(dist_man3_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list1='$(dist_man3_MANS)'; \
|
||||
list2=''; \
|
||||
test -n "$(man3dir)" \
|
||||
&& test -n "`echo $$list1$$list2`" \
|
||||
|| exit 0; \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
|
||||
{ for i in $$list1; do echo "$$i"; done; \
|
||||
if test -n "$$list2"; then \
|
||||
for i in $$list2; do echo "$$i"; done \
|
||||
| sed -n '/\.3[a-z]*$$/p'; \
|
||||
fi; \
|
||||
} | while read p; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; echo "$$p"; \
|
||||
done | \
|
||||
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
||||
sed 'N;N;s,\n, ,g' | { \
|
||||
list=; while read file base inst; do \
|
||||
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
||||
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
|
||||
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst" || exit $$?; \
|
||||
fi; \
|
||||
done; \
|
||||
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man3dir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(man3dir)" || exit $$?; }; \
|
||||
done; }
|
||||
|
||||
uninstall-man3:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(dist_man3_MANS)'; test -n "$(man3dir)" || exit 0; \
|
||||
files=`{ for i in $$list; do echo "$$i"; done; \
|
||||
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
||||
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
||||
dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@list='$(MANS)'; if test -n "$$list"; then \
|
||||
list=`for p in $$list; do \
|
||||
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
||||
if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
|
||||
if test -n "$$list" && \
|
||||
grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
|
||||
echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
|
||||
grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
|
||||
echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
|
||||
echo " typically \`make maintainer-clean' will remove them" >&2; \
|
||||
exit 1; \
|
||||
else :; fi; \
|
||||
else :; fi
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(MANS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
@ENABLE_DOCUMENTATION_FALSE@html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-man
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man: install-man1 install-man3
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-man
|
||||
|
||||
uninstall-man: uninstall-man1 uninstall-man3
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
||||
distclean distclean-generic distclean-libtool distdir dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-man1 \
|
||||
install-man3 install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am uninstall uninstall-am uninstall-man uninstall-man1 \
|
||||
uninstall-man3
|
||||
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@%.html: %.txt
|
||||
@ENABLE_DOCUMENTATION_TRUE@ $(ASCIIDOC) $(ASCIIDOCFLAGS) -b html4 -d manpage -f asciidoc.conf $<
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@%.1: %.1.txt
|
||||
@ENABLE_DOCUMENTATION_TRUE@ $(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@%.3: %.3.txt
|
||||
@ENABLE_DOCUMENTATION_TRUE@ $(A2X) $(A2XFLAGS) --asciidoc-opts="-f asciidoc.conf" $<
|
||||
|
||||
@ENABLE_DOCUMENTATION_TRUE@html: $(DOCS_HTML)
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,42 +0,0 @@
|
|||
afCloseFile(3)
|
||||
==============
|
||||
|
||||
NAME
|
||||
----
|
||||
afCloseFile - close an open audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
int afCloseFile(AFfilehandle file);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
`file` is a valid file handle created by linkaf:afOpenFile[3].
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afCloseFile` closes the audio file 'file', updating the file if it was
|
||||
opened for writing.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afCloseFile` returns 0 if the file was closed properly and -1 if an
|
||||
error occurred while closing the file.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afCloseFile` can generate these possible errors:
|
||||
|
||||
* `AF_BAD_FILEHANDLE`
|
||||
* `AF_BAD_LSEEK`
|
||||
* `AF_BAD_WRITE`
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afOpenFile[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,63 +0,0 @@
|
|||
afGetFrameCount(3)
|
||||
==================
|
||||
|
||||
NAME
|
||||
----
|
||||
afGetFrameCount, afGetTrackBytes, afGetDataOffset - get the total sample
|
||||
frame count, length of audio track in bytes, offset of the audio track for a
|
||||
track in an audio file
|
||||
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFframecount afGetFrameCount (AFfilehandle file, int track);
|
||||
|
||||
AFfileoffset afGetTrackBytes (AFfilehandle file, int track);
|
||||
|
||||
AFfileoffset afGetDataOffset (AFfilehandle file, int track);
|
||||
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'file' is an audio file handle created by a previous call to
|
||||
linkaf:afOpenFile[3].
|
||||
|
||||
'track' is an integer which specifies an audio track within 'file'.
|
||||
All supported file formats contain exactly one audio track per file,
|
||||
so the constant `AF_DEFAULT_TRACK` should always be used.
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afGetFrameCount` returns the total number of sample frames contained
|
||||
within the specified track of the specified file.
|
||||
|
||||
Each sample frame of audio consists of a fixed number of samples
|
||||
(equal to the number of audio channels in the track. For monaural data,
|
||||
a sample frame consists of one audio sample. For stereophonic data,
|
||||
a sample frame consists of a stereo pair.
|
||||
|
||||
`afGetTrackBytes` returns the total number of bytes of raw audio data
|
||||
(i.e., prior to decompression or conversion) in the track.
|
||||
|
||||
`afGetDataOffset` returns the offset in bytes of the start of the audio
|
||||
data contained within the specified track of the specified file.
|
||||
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afGetFrameCount` returns the total number of sample frames in 'track'.
|
||||
|
||||
`afGetTrackBytes` returns the total number of bytes of audio data
|
||||
in 'track'.
|
||||
|
||||
`afGetDataOffset` returns the offset in bytes to the beginning of the
|
||||
audio data in 'track'.
|
||||
|
||||
Each of these routines returns -1 in case of error.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,46 +0,0 @@
|
|||
afGetFrameSize(3)
|
||||
=================
|
||||
|
||||
NAME
|
||||
----
|
||||
afGetFrameSize - calculate the frame size in bytes for an audio track
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
float afGetFrameSize (AFfilehandle file, int track, int expand3to4);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'file' is a valid AFfilehandle.
|
||||
|
||||
'track' is an integer which refers to a specific audio track in the
|
||||
file. At present no supported audio file format allows for more than
|
||||
one audio track within a file, so track should always be
|
||||
`AF_DEFAULT_TRACK`.
|
||||
|
||||
'expand3to4' is a boolean-valued integer indicating whether frame size
|
||||
calculation will treat 24-bit data as having a size of 3 bytes or 4
|
||||
bytes.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afGetFrameSize` returns the number of bytes in a frame in a given
|
||||
audio track.
|
||||
|
||||
A sample frame consists of one or more samples. For a monaural track,
|
||||
a sample frame will always contain one sample. For a stereophonic
|
||||
track, a sample frame will always contain two samples, one for the left
|
||||
channel and one for the right channel.
|
||||
|
||||
A non-zero value of 'expand3to4' should be used when calculating the
|
||||
frame size for storage in memory (since 24-bit audio data is presented
|
||||
in memory as a 4-byte sign-extended integer), while a value of zero
|
||||
should be used for calculating storage on disk where no padding is added.
|
||||
The parameter 'expand3to4' is ignored unless the specified audio track
|
||||
contains 24-bit audio data.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,51 +0,0 @@
|
|||
afInitAESChannelDataTo(3)
|
||||
=========================
|
||||
|
||||
NAME
|
||||
----
|
||||
afInitAESChannelDataTo, afInitAESChannelData - initialize AES non-audio
|
||||
data in an audio file setup
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
void afInitAESChannelDataTo(AFfilesetup setup, int track, int willHaveData);
|
||||
void afInitAESChannelData(AFfilesetup setup, int track);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
`setup` is a valid file setup returned by linkaf:afNewFileSetup[3].
|
||||
|
||||
`track` specifies a track within the audio file setup. `track` is always
|
||||
`AF_DEFAULT_TRACK` for all currently supported file formats.
|
||||
|
||||
`willHaveData` is a boolean-valued integer indicating whether AES
|
||||
non-audio data will be present.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
Given an `AFfilesetup` structure created with linkaf:afNewFileSetup[3]
|
||||
and a track identified by `track` (`AF_DEFAULT_TRACK` for all currently
|
||||
supported file formats), `afInitAESChannelDataTo` initializes the track to
|
||||
contain or not contain AES non-audio data. `afInitAESChannelData` behaves
|
||||
similarly but always initializes the track to contain AES non-audio data.
|
||||
|
||||
Currently only AIFF and AIFF-C file formats can store AES non-audio data;
|
||||
this data is ignored in all other file formats.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afInitAESChannelDataTo` and `afInitAESChannelData` can produce the
|
||||
following errors:
|
||||
|
||||
`AF_BAD_FILESETUP`:: `setup` represents an invalid file setup.
|
||||
`AF_BAD_TRACKID`:: `track` represents an invalid track identifier.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afNewFileSetup[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,57 +0,0 @@
|
|||
afInitByteOrder(3)
|
||||
==================
|
||||
|
||||
NAME
|
||||
----
|
||||
afInitCompression - initialize compression for a track in an audio
|
||||
file setup
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
void afInitCompression(AFfilesetup setup, int track, int compression);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
`setup` is a valid file setup returned by linkaf:afNewFileSetup[3].
|
||||
|
||||
`track` specifies a track within the audio file setup. `track` is always
|
||||
`AF_DEFAULT_TRACK` for all currently supported file formats.
|
||||
|
||||
`compression` is an identifier specifying the compression type (such as
|
||||
`AF_COMPRESSION_G711_ULAW`) to be used for audio data in the track.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
Given an `AFfilesetup` structure created with linkaf:afNewFileSetup[3]
|
||||
and a track identified by `track` (`AF_DEFAULT_TRACK` for all currently
|
||||
supported file formats), `afInitCompression` initializes the track to
|
||||
the specified compression.
|
||||
|
||||
The following compression types are currently supported:
|
||||
|
||||
`AF_COMPRESSION_NONE`:: no compression
|
||||
`AF_COMPRESSION_G711_ULAW`:: CCITT G.711 mu-law encoding
|
||||
`AF_COMPRESSION_G711_ALAW`:: CCITT G.711 A-law encoding
|
||||
`AF_COMPRESSION_IMA`:: IMA ADPCM encoding
|
||||
`AF_COMPRESSION_MS_ADPCM`:: MS ADPCM encoding
|
||||
`AF_COMPRESSION_FLAC`:: FLAC
|
||||
`AF_COMPRESSION_ALAC`:: Apple Lossless Audio Codec
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afInitCompression` can produce the following errors:
|
||||
|
||||
`AF_BAD_FILESETUP`:: `setup` represents an invalid file setup.
|
||||
`AF_BAD_TRACKID`:: `track` represents an invalid track identifier.
|
||||
`AF_BAD_COMPTYPE`:: `compression` represents an invalid compression type.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afNewFileSetup[3],
|
||||
linkaf:afInitSampleFormat[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,56 +0,0 @@
|
|||
afInitFileFormat(3)
|
||||
===================
|
||||
|
||||
NAME
|
||||
----
|
||||
afInitFileFormat - initialize file format of an audio file setup
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
void afInitFileFormat(AFfilesetup setup, int fileFormat);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
`setup` is a valid file setup created by linkaf:afNewFileSetup[3].
|
||||
|
||||
`fileFormat` is an integer constant specifying a file format.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
Given an `AFfilesetup` structure created with linkaf:afNewFileSetup[3],
|
||||
`afInitFileFormat` initializes the file format to that specified by
|
||||
`fileFormat`.
|
||||
|
||||
The following file formats are currently supported:
|
||||
|
||||
`AF_FILE_RAWDATA`:: raw audio data
|
||||
`AF_FILE_AIFF`:: Audio Interchange File Format
|
||||
`AF_FILE_AIFFC`:: Audio Interchange File Format AIFF-C
|
||||
`AF_FILE_NEXTSND`:: NeXT .snd/Sun .au
|
||||
`AF_FILE_WAVE`:: Microsoft RIFF WAVE
|
||||
`AF_FILE_BICSF`:: Berkeley/IRCAM/CARL Sound File
|
||||
`AF_FILE_AVR`:: Audio Visual Research
|
||||
`AF_FILE_IFF_8SVX`:: Amiga IFF/8SVX
|
||||
`AF_FILE_SAMPLEVISION`:: Sample Vision
|
||||
`AF_FILE_VOC`:: Creative Voice File
|
||||
`AF_FILE_NIST_SPHERE`:: NIST SPHERE
|
||||
`AF_FILE_CAF`:: Core Audio Format
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afInitFileFormat` can produce the following errors:
|
||||
|
||||
`AF_BAD_FILESETUP`:: `setup` represents an invalid file setup.
|
||||
`AF_BAD_FILEFMT`:: `fileFormat` represents an unknown file format.
|
||||
`AF_BAD_NOT_IMPLEMENTED`:: `fileFormat` represents a file format which
|
||||
is not currently implemented.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afNewFileSetup[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,94 +0,0 @@
|
|||
afInitSampleFormat(3)
|
||||
=====================
|
||||
|
||||
NAME
|
||||
----
|
||||
afInitSampleFormat, afInitByteOrder, afInitChannels, afInitRate -
|
||||
initialize audio data format for a track in an audio file setup
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
void afInitSampleFormat(AFfilesetup setup, int track, int sampleFormat,
|
||||
int sampleWidth);
|
||||
void afInitByteOrder(AFfilesetup setup, int track, int byteOrder);
|
||||
void afInitChannels(AFfilesetup setup, int track, int channels);
|
||||
void afInitRate(AFfilesetup setup, int track, double rate);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
`setup` is a valid file setup returned by linkaf:afNewFileSetup[3].
|
||||
|
||||
`track` specifies a track within the audio file setup. `track` is always
|
||||
`AF_DEFAULT_TRACK` for all currently supported file formats.
|
||||
|
||||
`sampleFormat` is a symbolic constant specifying the sample format
|
||||
for the audio data in the track. `sampleFormat` must be one of
|
||||
`AF_SAMPFMT_TWOSCOMP`, `AF_SAMPFMT_UNSIGNED`, `AF_SAMPFMT_FLOAT`, or
|
||||
`AF_SAMPFMT_DOUBLE`.
|
||||
|
||||
`sampleWidth` is a positive integer specifying the number of bits for
|
||||
each sample in the track.
|
||||
|
||||
`byteOrder` is a symbolic constant specifying the byte order of
|
||||
the track. `byteOrder` must be one of `AF_BYTEORDER_BIGENDIAN` or
|
||||
`AF_BYTEORDER_LITTLEENDIAN`.
|
||||
|
||||
`channels` is a positive integer specifying the number of channels in
|
||||
the track.
|
||||
|
||||
`rate` is a positive double-precision floating-point number specifying
|
||||
the sample rate of the track.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afInitSampleFormat` initializes the track to the specified sample format
|
||||
and sample width.
|
||||
|
||||
`afInitByteOrder` initializes the track to the specified byte order.
|
||||
|
||||
`afInitChannels` initializes the track to the specified number of channels.
|
||||
|
||||
`afInitRate` initializes the track to the specified sample rate.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afInitSampleFormat`, `afInitByteOrder`, `afInitChannels`, and
|
||||
`afInitRate` can produce the following errors:
|
||||
|
||||
[horizontal]
|
||||
`AF_BAD_FILESETUP`:: `setup` represents an invalid file setup.
|
||||
`AF_BAD_TRACK`:: `track` represents an invalid track identifier.
|
||||
|
||||
`afInitSampleFormat` can also produce the following errors:
|
||||
|
||||
[horizontal]
|
||||
`AF_BAD_SAMPFMT`:: `sampleFormat` does not represent a valid sample format.
|
||||
`AF_BAD_WIDTH`:: `sampleWidth` is not a valid sample width.
|
||||
|
||||
`afInitByteOrder` can also produce the following error:
|
||||
|
||||
[horizontal]
|
||||
`AF_BAD_BYTEORDER`:: `byteOrder` does not represent a valid byte order.
|
||||
|
||||
`afInitChannels` can also produce the following error:
|
||||
|
||||
[horizontal]
|
||||
`AF_BAD_CHANNELS`:: `channels` specifies an invalid number of channels.
|
||||
|
||||
`afInitRate` can also produce the following error:
|
||||
|
||||
[horizontal]
|
||||
`AF_BAD_RATE`:: `rate` specifies an invalid sample rate.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afNewFileSetup[3],
|
||||
linkaf:afInitFileFormat[3],
|
||||
linkaf:afInitCompression[3],
|
||||
linkaf:afOpenFile[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,33 +0,0 @@
|
|||
afNewFileSetup(3)
|
||||
=================
|
||||
|
||||
NAME
|
||||
----
|
||||
afNewFileSetup - create and initialize a new AFfilesetup structure
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFfilesetup afNewFileSetup(void);
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afNewFileSetup` returns, upon success, a valid AFfilesetup structure.
|
||||
|
||||
Upon failure, `afNewFileSetup` returns a null `AFfilesetup`. This case
|
||||
should only occur when no memory is available.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
The opaque `AFfilesetup` structure returned by `afNewFileSetup` can
|
||||
be used to specify parameters for a file to be opened for writing by
|
||||
linkaf:afOpenFile[3].
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afOpenFile[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,63 +0,0 @@
|
|||
afOpenFile(3)
|
||||
=============
|
||||
|
||||
NAME
|
||||
----
|
||||
afOpenFile - open an audio file and create a file handle structure used
|
||||
for subsequent calls to the Audio File Library
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFfilehandle afOpenFile(const char *path, const char *mode,
|
||||
AFfilesetup setup);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'path' is the path to the file to be opened.
|
||||
|
||||
'mode' specifies a mode for opening the file: `"r"` for reading or
|
||||
`"w"` for writing.
|
||||
|
||||
'setup' is an AFfilesetup created by linkaf:afNewFileSetup[3]. This value
|
||||
is ignored for files opened for reading except when the file format is
|
||||
`AF_FILE_RAWDATA`.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
Upon success, `afOpenFile` returns a valid `AFfilehandle` which can
|
||||
be used in subsequent calls to the Audio File Library. Upon failure,
|
||||
`afOpenFile` returns NULL and generates an error.
|
||||
|
||||
linkaf:afCloseFile[3] is used to close the file when it is no longer
|
||||
needed.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afOpenFile` can produce the following errors:
|
||||
|
||||
`AF_BAD_OPEN`:: A call to `open` failed.
|
||||
`AF_BAD_READ`:: A call to `read` failed
|
||||
`AF_BAD_WRITE`:: A call to `write` failed.
|
||||
`AF_BAD_LSEEK`:: A call to `lseek` failed.
|
||||
`AF_BAD_MALLOC`:: Memory allocation failed.
|
||||
`AF_BAD_FILEFMT`:: `setup` specifies a file format which is unsupported for `mode`.
|
||||
`AF_BAD_SAMPFMT`:: The file's sample format is not supported.
|
||||
`AF_BAD_WIDTH`:: The file's sample width is not supported.
|
||||
`AF_BAD_RATE`:: The file's sample rate is not supported.
|
||||
`AF_BAD_CHANNELS`:: The number of channels in the file is not supported.
|
||||
`AF_BAD_FILESETUP`:: `setup` specifies an invalid or unsupported configuration.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afCloseFile[3],
|
||||
linkaf:afNewFileSetup[3],
|
||||
linkaf:afInitFileFormat[3],
|
||||
linkaf:afInitSampleFormat[3],
|
||||
linkaf:afReadFrames[3],
|
||||
linkaf:afWriteFrames[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,124 +0,0 @@
|
|||
afQuery(3)
|
||||
==========
|
||||
|
||||
NAME
|
||||
----
|
||||
afQuery, afQueryLong, afQueryDouble, afQueryPointer - query the
|
||||
capabilities of the Audio File Library
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AUpvlist afQuery (int querytype, int arg1, int arg2, int arg3, int arg4);
|
||||
|
||||
long afQueryLong (int querytype, int arg1, int arg2, int arg3, int arg4);
|
||||
|
||||
double afQueryDouble (int querytype, int arg1, int arg2, int arg3,
|
||||
int arg4);
|
||||
|
||||
void *afQueryPointer (int querytype, int arg1, int arg2, int arg3,
|
||||
int arg4);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'querytype' can be one of the following:
|
||||
|
||||
* `AF_QUERYTYPE_FILEFMT`
|
||||
* `AF_QUERYTYPE_INST`
|
||||
* `AF_QUERYTYPE_INSTPARAM`
|
||||
* `AF_QUERYTYPE_COMPRESSION`
|
||||
* `AF_QUERYTYPE_COMPRESSIONPARAM`
|
||||
* `AF_QUERYTYPE_MISC`
|
||||
* `AF_QUERYTYPE_MARK`
|
||||
* `AF_QUERYTYPE_LOOP`
|
||||
|
||||
'arg1', 'arg2', 'arg3', and 'arg4' are integer selectors whose
|
||||
meaning depends upon 'querytype'.
|
||||
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
Upon success, `afQuery` will return a non-null `AUpvlist` value.
|
||||
Upon failure, `afQuery` will return null while `afQueryLong` and
|
||||
`afQueryDouble` will return -1 and `afQueryPointer` will return
|
||||
null.
|
||||
|
||||
Pointers representing character strings are owned by the Audio File
|
||||
Library and must not be freed; all other pointer values must be
|
||||
freed by the caller.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
For `AF_QUERYTYPE_FILEFMT`, the following selectors are valid values for 'arg1':
|
||||
|
||||
`AF_QUERY_LABEL`:: Request a short label string for the format (e.g., "aiff").
|
||||
|
||||
`AF_QUERY_NAME`:: Request a short name for the format (e.g., "MS RIFF WAVE").
|
||||
|
||||
`AF_QUERY_DESC`:: Request a descriptive name for the format (e.g., "Audio
|
||||
Interchange File Format").
|
||||
|
||||
`AF_QUERY_IMPLEMENTED`:: Request a boolean value indicating whether the
|
||||
format is implemented for reading and writing in the Audio File Library.
|
||||
|
||||
`AF_QUERY_ID_COUNT`:: Request the total number of formats implemented.
|
||||
|
||||
`AF_QUERY_IDS`:: Request an integer array of the id token values of all
|
||||
implemented file formats.
|
||||
|
||||
`AF_QUERY_COMPRESSION_TYPES`:: Used with the selector AF_QUERY_VALUE_COUNT
|
||||
in 'arg2', this will return a long integer containing the number of
|
||||
compression schemes available for use within the format specified in 'arg3'.
|
||||
Used with selector `AF_QUERY_VALUES`, it returns a pointer to an integer
|
||||
array containing the compression id values of the compression schemes
|
||||
supported by the format specified in 'arg3'.
|
||||
|
||||
`AF_QUERY_SAMPLE_FORMATS`:: Used with the selector AF_QUERY_DEFAULT in 'arg2',
|
||||
this will return the default sample format for the file format specified in
|
||||
'arg3'.
|
||||
|
||||
`AF_QUERY_SAMPLE_SIZES`:: Used with selector AF_QUERY_DEFAULT in 'arg2', this
|
||||
will return the default sample width for the file format specified in 'arg3'.
|
||||
|
||||
|
||||
For `AF_QUERYTYPE_INST`, the following selectors are valid for 'arg1':
|
||||
|
||||
`AF_QUERY_SUPPORTED`:: Request a boolean value indicating whether
|
||||
the file format in 'arg2' supports instruments.
|
||||
|
||||
`AF_QUERY_MAX_NUMBER`:: Request an integer value indicating the
|
||||
maximum number of instruments supported by the file format in 'arg2'.
|
||||
|
||||
|
||||
For `AF_QUERYTYPE_INSTPARAM`, the following selectors are valid for 'arg1':
|
||||
|
||||
`AF_QUERY_SUPPORTED`:: Request a boolean value indicating whether
|
||||
the file format in 'arg2' supports instrument parameters.
|
||||
|
||||
`AF_QUERY_ID_COUNT`:: Request an integer value indicating the number
|
||||
of instrument parameters supported by the file format in 'arg2'.
|
||||
|
||||
`AF_QUERY_IDS`:: Request an integer array containing the instrument
|
||||
parameter values for the file format in 'arg2'.
|
||||
|
||||
`AF_QUERY_TYPE`:: For the file format in 'arg2', request the type
|
||||
of the instrument parameter in 'arg3'.
|
||||
|
||||
`AF_QUERY_NAME`:: For the file format in 'arg2', request the name
|
||||
of the instrument parameter in 'arg3'.
|
||||
|
||||
`AF_QUERY_DEFAULT`:: For the file format in 'arg2', request the
|
||||
default value of the instrument parameter in 'arg3'.
|
||||
|
||||
|
||||
ERRORS
|
||||
------
|
||||
afQuery can produce the following errors:
|
||||
|
||||
`AF_BAD_QUERYTYPE`:: The query type is unsupported.
|
||||
`AF_BAD_QUERY`:: The arguments to the query are bad.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,49 +0,0 @@
|
|||
afReadFrames(3)
|
||||
===============
|
||||
|
||||
NAME
|
||||
----
|
||||
afReadFrames - read sample frames from a track in an audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFframecount afReadFrames(AFfilehandle file, int track, void *data,
|
||||
int count);
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afReadFrames` attempts to read up to 'count' frames of audio data from
|
||||
the audio file handle 'file' into the buffer at 'data'.
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'file' is a valid file handle returned by linkaf:afOpenFile[3].
|
||||
|
||||
'track' is always `AF_DEFAULT_TRACK` for all currently supported file formats.
|
||||
|
||||
'data' is a buffer of storing 'count' frames of audio sample data.
|
||||
|
||||
'count' is the number of sample frames to be read.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afReadFrames` returns the number of frames successfully read from 'file'.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afReadFrames` can produce these errors:
|
||||
|
||||
`AF_BAD_FILEHANDLE`:: the file handle was invalid
|
||||
`AF_BAD_TRACKID`:: the track parameter is not `AF_DEFAULT_TRACK`
|
||||
`AF_BAD_READ`:: reading audio data from the file failed
|
||||
`AF_BAD_LSEEK`:: seeking within the file failed
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afWriteFrames[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,55 +0,0 @@
|
|||
afReadMisc(3)
|
||||
=============
|
||||
|
||||
NAME
|
||||
----
|
||||
afReadMisc, afWriteMisc, afSeekMisc - access miscellaneous metadata in an audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
int afReadMisc (AFfilehandle file, int miscid, void *buffer, int nbytes);
|
||||
|
||||
int afWriteMisc (AFfilehandle file, int miscid, const void *buffer, int nbytes);
|
||||
|
||||
int afSeekMisc (AFfilehandle file, int miscid, int offbytes);
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afReadMisc` reads up to 'nbytes' from the miscellaneous data chunk
|
||||
identified by 'miscid' in 'file'.
|
||||
|
||||
`afWriteMisc` writes up to 'nbytes' to the miscellaneous data chunk
|
||||
identified by 'miscid' in 'file'.
|
||||
|
||||
`afSeekMisc` changes the current offset within the miscellaneous data
|
||||
chunk identified by 'miscid' to the offset 'offbytes'.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afReadMisc` returns the number of bytes read from the specified
|
||||
miscellaneous chunk into the buffer referred to by 'buffer'.
|
||||
|
||||
`afWriteMisc` returns the number of bytes written to the specified
|
||||
miscellaneous chunk from the buffer referred to by 'buffer'.
|
||||
|
||||
`afSeekMisc` returns the new location of the logical data pointer as
|
||||
measured as an offset in bytes from the beginning of the miscellaneous
|
||||
chunk's data area.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afReadMisc`, `afWriteMisc`, and `afSeekMisc` can produce the following
|
||||
error codes:
|
||||
|
||||
* `AF_BAD_READ`
|
||||
* `AF_BAD_WRITE`
|
||||
* `AF_BAD_MISCSEEK`
|
||||
* `AF_BAD_MISCID`
|
||||
* `AF_BAD_TRACKID`
|
||||
* `AF_BAD_FILEHANDLE`
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,56 +0,0 @@
|
|||
afSeekFrame(3)
|
||||
==============
|
||||
|
||||
NAME
|
||||
----
|
||||
afSeekFrame, afTellFrame - update or access the current sample frame
|
||||
position for a track in an audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFframecount afSeekFrame(AFfilehandle file, int track,
|
||||
AFframecount frameOffset);
|
||||
|
||||
AFframecount afTellFrame(AFfilehandle file, int track);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'file' is a valid audio file handle created by linkaf:afOpenFile[3].
|
||||
|
||||
'track' identifies an audio track within the file. `track` is always
|
||||
`AF_DEFAULT_TRACK` for all currently supported audio file formats.
|
||||
|
||||
'frameOffset' is a sample frame offset. Valid sample frame offsets must
|
||||
be greater than or equal to zero and strictly less than the number of
|
||||
sample frames contained within the specified audio track. The special
|
||||
value `-1` is also allowed.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afSeekFrame` moves the logical file position for a specified audio
|
||||
track to a desired sample frame location. If `frameOffset` is `-1`,
|
||||
`afSeekFrame` will not modify the current file offset and will instead
|
||||
return the current file position.
|
||||
|
||||
`afTellFrame` returns current file position in sample frames.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
On success, `afSeekFrame` and `afTellFrame` will return the current file
|
||||
position as measured in sample frames from the start of the audio
|
||||
track. On failure, `afSeekFrame` and `afTellFrame` will return the value
|
||||
`-1`.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
The following errors can be generated by `afSeekFrame` or `afTellFrame`:
|
||||
|
||||
`AF_BAD_FILEHANDLE`:: `file` does not represent a valid file handle.
|
||||
`AF_BAD_TRACK`:: `track` does not identify a valid track.
|
||||
`AF_BAD_LSEEK`:: A call to `lseek` failed.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,30 +0,0 @@
|
|||
afSetErrorHandler(3)
|
||||
====================
|
||||
|
||||
NAME
|
||||
----
|
||||
afSetErrorHandler - install a custom error handling routine
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFerrfunc afSetErrorHandler (AFerrfunc errorFunction);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'errorFunction' is a pointer to an error handling function.
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afSetErrorHandler` allows the user to install an error handling function
|
||||
overriding the default function.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
The value returned from `afSetErrorHandler` is a pointer to the previous
|
||||
error handling function.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,62 +0,0 @@
|
|||
afSetVirtualSampleFormat(3)
|
||||
===========================
|
||||
|
||||
NAME
|
||||
----
|
||||
afSetVirtualByteOrder, afSetVirtualChannels, afSetVirtualPCMMapping,
|
||||
afSetVirtualSampleFormat - set the virtual data format for a track in
|
||||
an audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
int afSetVirtualByteOrder (AFfilehandle file, int track, int byteOrder);
|
||||
|
||||
int afSetVirtualChannels (AFfilehandle file, int track, int channels);
|
||||
|
||||
int afSetVirtualSampleFormat (AFfilehandle file, int track,
|
||||
int sampleFormat, int sampleWidth);
|
||||
|
||||
int afSetVirtualPCMMapping (AFfilehandle file, int track,
|
||||
double slope, double intercept, double minclip, double maxclip);
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
* 'file' is an AFfilehandle which refers to an open audio file and is
|
||||
usually created by afOpenFile.
|
||||
|
||||
* 'track' is an integer which identifies a particular track in an open
|
||||
audio file. The only valid track is `AF_DEFAULT_TRACK` for all
|
||||
currently supported file formats.
|
||||
|
||||
* 'sampleFormat' is an integer which denotes a virtual sample format.
|
||||
Valid values are `AF_SAMPFMT_TWOSCOMP`, `AF_SAMPFMT_UNSIGNED`,
|
||||
`AF_SAMPFMT_FLOAT`, and `AF_SAMPFMT_DOUBLE`.
|
||||
|
||||
* 'sampleWidth' is a positive integer which specifies the number of bits
|
||||
in a sample.
|
||||
|
||||
* 'channels' is a positive integer which specifies the number of
|
||||
interleaved audio channels in the given audio track.
|
||||
|
||||
* 'byteOrder' is an integer which specifies the virtual byte order of
|
||||
samples in the given audio track. 'byteOrder' can be either
|
||||
`AF_BYTEORDER_BIGENDIAN` or `AF_BYTEORDER_LITTLEENDIAN`.
|
||||
|
||||
* 'slope' and 'intercept' are double-precision floating point values which
|
||||
indicate the audio data sample slope and zero-crossing value,
|
||||
respectively, for the given sample format.
|
||||
|
||||
* 'minclip' and 'maxclip' are double-precision floating point values
|
||||
which indicates the minimum or maximum sample values to be returned.
|
||||
Any values less than 'minclip' will be set to 'minclip', and any values
|
||||
greater than 'maxclip' will be set to 'maxclip'.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
These functions return 0 for success and -1 for failure.
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,50 +0,0 @@
|
|||
afWriteFrames(3)
|
||||
================
|
||||
|
||||
NAME
|
||||
----
|
||||
afWriteFrames - write sample frames to a track in an audio file
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
#include <audiofile.h>
|
||||
|
||||
AFframecount afWriteFrames(AFfilehandle file, int track, const void *data,
|
||||
AFframecount count);
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`afWriteFrames` attempts to write up to 'count' frames of audio data
|
||||
from the buffer 'data' to the audio file handle 'file'.
|
||||
|
||||
PARAMETERS
|
||||
----------
|
||||
'file' is a valid file handle returned by linkaf:afOpenFile[3].
|
||||
|
||||
'track' is always `AF_DEFAULT_TRACK` for all currently supported file formats.
|
||||
|
||||
'data' is a buffer of sample frames to be written to the file.
|
||||
|
||||
'count' is the number of sample frames to be written.
|
||||
|
||||
RETURN VALUE
|
||||
------------
|
||||
`afWriteFrames` returns the number of sample frames successfully written
|
||||
to 'file'.
|
||||
|
||||
ERRORS
|
||||
------
|
||||
`afWriteFrames` can produce these errors:
|
||||
|
||||
`AF_BAD_FILEHANDLE`:: the file handle was invalid
|
||||
`AF_BAD_TRACKID`:: the track is not `AF_DEFAULT_TRACK`
|
||||
`AF_BAD_WRITE`:: writing audio data to the file failed
|
||||
`AF_BAD_LSEEK`:: seeking within the file failed
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:afReadFrames[3]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,23 +0,0 @@
|
|||
#
|
||||
# Usage: linkaf:command[manpage-section]
|
||||
#
|
||||
# Note, {0} is the manpage section, while {target} is the command.
|
||||
#
|
||||
# Show Audio File Library link as: <command>(<section>); if section is
|
||||
# defined, else just show the command.
|
||||
|
||||
[macros]
|
||||
(?su)[\\]?(?P<name>linkaf):(?P<target>\S*?)\[(?P<attrlist>.*?)\]=
|
||||
|
||||
ifdef::backend-docbook[]
|
||||
[linkaf-inlinemacro]
|
||||
{0%{target}}
|
||||
{0#<citerefentry>}
|
||||
{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
|
||||
{0#</citerefentry>}
|
||||
endif::backend-docbook[]
|
||||
|
||||
ifdef::backend-html4[]
|
||||
[linkaf-inlinemacro]
|
||||
<a href="{target}.{0}.html">{target}({0})</a>
|
||||
endif::backend-html4[]
|
|
@ -1,70 +0,0 @@
|
|||
sfconvert(1)
|
||||
============
|
||||
|
||||
NAME
|
||||
----
|
||||
sfconvert - convert audio files
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
*sfconvert* 'infile' 'outfile' ['output options']
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
The `sfconvert` command converts an audio file to another file format or data format.
|
||||
|
||||
OPTIONS
|
||||
-------
|
||||
The following keywords specify the format of the output sound file:
|
||||
|
||||
`format` 'f'::
|
||||
Output file format. 'f' must be one of the following:
|
||||
[horizontal]
|
||||
`aiff`::: Audio Interchange File Format
|
||||
`aifc`::: AIFF-C
|
||||
`next`::: NeXT/Sun .snd/.au Format
|
||||
`wave`::: MS RIFF WAVE
|
||||
`bicsf`::: Berkeley/IRCAM/CARL Sound File Format
|
||||
`smp`::: Sample Vision Format
|
||||
`voc`::: Creative Voice File Format
|
||||
`nist`::: NIST SPHERE Format
|
||||
`caf`::: Core Audio Format
|
||||
`flac`::: FLAC
|
||||
`compression` 'c'::
|
||||
[horizontal]
|
||||
`ulaw`::: G.711 mu-law
|
||||
`alaw`::: G.711 A-law
|
||||
`ima`::: IMA ADPCM
|
||||
`msadpcm`::: Microsoft ADPCM
|
||||
`flac`::: FLAC
|
||||
`alac`::: Apple Lossless Audio Codec
|
||||
`byteorder` 'e'::
|
||||
Output byte order. 'e' may be either `big` or `little`.
|
||||
`channels` 'n'::
|
||||
Number of output channels. 'n' is 1 for mono, and 2 for stereo.
|
||||
`integer` 'n' 's'::
|
||||
Convert to integer audio data. 'n' indicates the output sample width
|
||||
in bits. 's' specifies the sample format and may be either `2scomp`
|
||||
for 2's complement signed data or `unsigned` for unsigned data.
|
||||
`float` 'm'::
|
||||
Convert to floating-point audio data with a maximum amplitude of
|
||||
'm' (usually `1.0`). The `integer` and `float` options are mutually
|
||||
exclusive.
|
||||
|
||||
The following options take no additional arguments:
|
||||
|
||||
`--help`::
|
||||
`-h`::
|
||||
Print help message.
|
||||
|
||||
`--version`::
|
||||
`-v`::
|
||||
Print version information.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:sfinfo[1]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,76 +0,0 @@
|
|||
sfinfo(1)
|
||||
=========
|
||||
|
||||
NAME
|
||||
----
|
||||
sfinfo - display information about audio files
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
*sfinfo* ['options'] 'audio files'...
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
`sfinfo` prints information about the specified audio files, including
|
||||
file format, sample rate, duration, and audio data format.
|
||||
|
||||
By default `sfinfo` displays information in a longer, multi-line format;
|
||||
specifying the --short or -s option produces a short, single-line summary.
|
||||
|
||||
Any files which are not recognized as valid audio files will be ignored
|
||||
unless the --reporterror or -r option is given. The file formats
|
||||
currently supported by `sfinfo` are AIFF, AIFF-C, NeXT/Sun .snd/.au,
|
||||
WAVE, Berkeley/IRCAM/CARL Sound File, AVR, Amiga IFF/8SVX, Sample Vision,
|
||||
Creative Voice File, NIST SPHERE, and Core Audio Format.
|
||||
|
||||
OPTIONS
|
||||
-------
|
||||
|
||||
`--short`::
|
||||
`-s`::
|
||||
Print short single-line summary of each recognized audio file.
|
||||
|
||||
`--reporterror`::
|
||||
`-r`::
|
||||
Print an error message if any of the specified files are not recognized
|
||||
as valid audio files.
|
||||
|
||||
`--help`::
|
||||
`-h`::
|
||||
Print help message.
|
||||
|
||||
`--version`::
|
||||
`-v`::
|
||||
Print version information.
|
||||
|
||||
EXAMPLES
|
||||
--------
|
||||
Display summary of an audio file:
|
||||
|
||||
----
|
||||
% sfinfo drum.aiff
|
||||
File Name drum.aiff
|
||||
File Format Audio Interchange File Format (aiff)
|
||||
Data Format 16-bit integer (2's complement, big endian)
|
||||
Audio Data 1569972 bytes begins at offset 54 (36 hex)
|
||||
2 channels, 392493 frames
|
||||
Sampling Rate 44100.00 Hz
|
||||
Duration 8.900 seconds
|
||||
----
|
||||
|
||||
List all recognized audio files in the current directory using
|
||||
the short output format:
|
||||
|
||||
----
|
||||
% sfinfo -s *
|
||||
9.60s 44100.00 aiff 1ch 16b -- bass.aiff
|
||||
8.90s 44100.00 aiff 2ch 16b -- drum.aiff
|
||||
----
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
linkaf:sfconvert[1]
|
||||
|
||||
AUTHOR
|
||||
------
|
||||
Michael Pruett <michael@68k.org>
|
|
@ -1,52 +0,0 @@
|
|||
adddcoffset.o: adddcoffset.c \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
../libaudiofile/audiofile.h ../libaudiofile/aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
../libaudiofile/audiofile.h:
|
||||
../libaudiofile/aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1,55 +0,0 @@
|
|||
power.o: power.c ../config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/math.h \
|
||||
../libaudiofile/audiofile.h ../libaudiofile/aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h
|
||||
../config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/math.h:
|
||||
../libaudiofile/audiofile.h:
|
||||
../libaudiofile/aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1,213 +0,0 @@
|
|||
#! /bin/sh
|
||||
|
||||
# adddcoffset - temporary wrapper script for .libs/adddcoffset.exe
|
||||
# Generated by libtool (GNU libtool) 2.4.6
|
||||
#
|
||||
# The adddcoffset program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command=""
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.4.6'
|
||||
notinst_deplibs=' ../libaudiofile/libaudiofile.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../libtool value, followed by yes.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "adddcoffset.exe:adddcoffset:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "adddcoffset.exe:adddcoffset:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "adddcoffset.exe:adddcoffset:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=yes
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program='adddcoffset.exe'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
# Add the dll search path components to the executable PATH
|
||||
PATH=/i/Development/sm64pc/tools/audiofile-0.3.6/libaudiofile/.libs:/mingw64/lib:/mingw64/bin:$PATH
|
||||
|
||||
# Add our own library path to PATH
|
||||
PATH="/i/Development/sm64pc/tools/audiofile-0.3.6/libaudiofile/.libs:$PATH"
|
||||
|
||||
# Some systems cannot cope with colon-terminated PATH
|
||||
# The second colon is a workaround for a bug in BeOS R4 sed
|
||||
PATH=`$ECHO "$PATH" | /usr/bin/sed 's/::*$//'`
|
||||
|
||||
export PATH
|
||||
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,213 +0,0 @@
|
|||
#! /bin/sh
|
||||
|
||||
# power - temporary wrapper script for .libs/power.exe
|
||||
# Generated by libtool (GNU libtool) 2.4.6
|
||||
#
|
||||
# The power program cannot be directly executed until all the libtool
|
||||
# libraries that it depends on are installed.
|
||||
#
|
||||
# This wrapper script should never be moved out of the build directory.
|
||||
# If it is, it will not operate correctly.
|
||||
|
||||
# Sed substitution that helps us do robust quoting. It backslashifies
|
||||
# metacharacters that are still active within double-quoted strings.
|
||||
sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
|
||||
|
||||
# Be Bourne compatible
|
||||
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||
emulate sh
|
||||
NULLCMD=:
|
||||
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
||||
# is contrary to our usage. Disable this feature.
|
||||
alias -g '${1+"$@"}'='"$@"'
|
||||
setopt NO_GLOB_SUBST
|
||||
else
|
||||
case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
|
||||
fi
|
||||
BIN_SH=xpg4; export BIN_SH # for Tru64
|
||||
DUALCASE=1; export DUALCASE # for MKS sh
|
||||
|
||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||
# if CDPATH is set.
|
||||
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
||||
|
||||
relink_command=""
|
||||
|
||||
# This environment variable determines our operation mode.
|
||||
if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
|
||||
# install mode needs the following variables:
|
||||
generated_by_libtool_version='2.4.6'
|
||||
notinst_deplibs=' ../libaudiofile/libaudiofile.la'
|
||||
else
|
||||
# When we are sourced in execute mode, $file and $ECHO are already set.
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
file="$0"
|
||||
|
||||
# A function that is used when there is no print builtin or printf.
|
||||
func_fallback_echo ()
|
||||
{
|
||||
eval 'cat <<_LTECHO_EOF
|
||||
$1
|
||||
_LTECHO_EOF'
|
||||
}
|
||||
ECHO="printf %s\\n"
|
||||
fi
|
||||
|
||||
# Very basic option parsing. These options are (a) specific to
|
||||
# the libtool wrapper, (b) are identical between the wrapper
|
||||
# /script/ and the wrapper /executable/ that is used only on
|
||||
# windows platforms, and (c) all begin with the string --lt-
|
||||
# (application programs are unlikely to have options that match
|
||||
# this pattern).
|
||||
#
|
||||
# There are only two supported options: --lt-debug and
|
||||
# --lt-dump-script. There is, deliberately, no --lt-help.
|
||||
#
|
||||
# The first argument to this parsing function should be the
|
||||
# script's ../libtool value, followed by yes.
|
||||
lt_option_debug=
|
||||
func_parse_lt_options ()
|
||||
{
|
||||
lt_script_arg0=$0
|
||||
shift
|
||||
for lt_opt
|
||||
do
|
||||
case "$lt_opt" in
|
||||
--lt-debug) lt_option_debug=1 ;;
|
||||
--lt-dump-script)
|
||||
lt_dump_D=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
|
||||
test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
|
||||
lt_dump_F=`$ECHO "X$lt_script_arg0" | /usr/bin/sed -e 's/^X//' -e 's%^.*/%%'`
|
||||
cat "$lt_dump_D/$lt_dump_F"
|
||||
exit 0
|
||||
;;
|
||||
--lt-*)
|
||||
$ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Print the debug banner immediately:
|
||||
if test -n "$lt_option_debug"; then
|
||||
echo "power.exe:power:$LINENO: libtool wrapper (GNU libtool) 2.4.6" 1>&2
|
||||
fi
|
||||
}
|
||||
|
||||
# Used when --lt-debug. Prints its arguments to stdout
|
||||
# (redirection is the responsibility of the caller)
|
||||
func_lt_dump_args ()
|
||||
{
|
||||
lt_dump_args_N=1;
|
||||
for lt_arg
|
||||
do
|
||||
$ECHO "power.exe:power:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
|
||||
lt_dump_args_N=`expr $lt_dump_args_N + 1`
|
||||
done
|
||||
}
|
||||
|
||||
# Core function for launching the target application
|
||||
func_exec_program_core ()
|
||||
{
|
||||
|
||||
if test -n "$lt_option_debug"; then
|
||||
$ECHO "power.exe:power:$LINENO: newargv[0]: $progdir/$program" 1>&2
|
||||
func_lt_dump_args ${1+"$@"} 1>&2
|
||||
fi
|
||||
exec "$progdir/$program" ${1+"$@"}
|
||||
|
||||
$ECHO "$0: cannot exec $program $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
# A function to encapsulate launching the target application
|
||||
# Strips options in the --lt-* namespace from $@ and
|
||||
# launches target application with the remaining arguments.
|
||||
func_exec_program ()
|
||||
{
|
||||
case " $* " in
|
||||
*\ --lt-*)
|
||||
for lt_wr_arg
|
||||
do
|
||||
case $lt_wr_arg in
|
||||
--lt-*) ;;
|
||||
*) set x "$@" "$lt_wr_arg"; shift;;
|
||||
esac
|
||||
shift
|
||||
done ;;
|
||||
esac
|
||||
func_exec_program_core ${1+"$@"}
|
||||
}
|
||||
|
||||
# Parse options
|
||||
func_parse_lt_options "$0" ${1+"$@"}
|
||||
|
||||
# Find the directory that this script lives in.
|
||||
thisdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'`
|
||||
test "x$thisdir" = "x$file" && thisdir=.
|
||||
|
||||
# Follow symbolic links until we get to the real thisdir.
|
||||
file=`ls -ld "$file" | /usr/bin/sed -n 's/.*-> //p'`
|
||||
while test -n "$file"; do
|
||||
destdir=`$ECHO "$file" | /usr/bin/sed 's%/[^/]*$%%'`
|
||||
|
||||
# If there was a directory component, then change thisdir.
|
||||
if test "x$destdir" != "x$file"; then
|
||||
case "$destdir" in
|
||||
[\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
|
||||
*) thisdir="$thisdir/$destdir" ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
file=`$ECHO "$file" | /usr/bin/sed 's%^.*/%%'`
|
||||
file=`ls -ld "$thisdir/$file" | /usr/bin/sed -n 's/.*-> //p'`
|
||||
done
|
||||
|
||||
# Usually 'no', except on cygwin/mingw when embedded into
|
||||
# the cwrapper.
|
||||
WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=yes
|
||||
if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
|
||||
# special case for '.'
|
||||
if test "$thisdir" = "."; then
|
||||
thisdir=`pwd`
|
||||
fi
|
||||
# remove .libs from thisdir
|
||||
case "$thisdir" in
|
||||
*[\\/].libs ) thisdir=`$ECHO "$thisdir" | /usr/bin/sed 's%[\\/][^\\/]*$%%'` ;;
|
||||
.libs ) thisdir=. ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Try to get the absolute directory name.
|
||||
absdir=`cd "$thisdir" && pwd`
|
||||
test -n "$absdir" && thisdir="$absdir"
|
||||
|
||||
program='power.exe'
|
||||
progdir="$thisdir/.libs"
|
||||
|
||||
|
||||
if test -f "$progdir/$program"; then
|
||||
# Add the dll search path components to the executable PATH
|
||||
PATH=/i/Development/sm64pc/tools/audiofile-0.3.6/libaudiofile/.libs:/mingw64/lib:/mingw64/bin:$PATH
|
||||
|
||||
# Add our own library path to PATH
|
||||
PATH="/i/Development/sm64pc/tools/audiofile-0.3.6/libaudiofile/.libs:$PATH"
|
||||
|
||||
# Some systems cannot cope with colon-terminated PATH
|
||||
# The second colon is a workaround for a bug in BeOS R4 sed
|
||||
PATH=`$ECHO "$PATH" | /usr/bin/sed 's/::*$//'`
|
||||
|
||||
export PATH
|
||||
|
||||
if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
|
||||
# Run the actual program with our arguments.
|
||||
func_exec_program ${1+"$@"}
|
||||
fi
|
||||
else
|
||||
# The program doesn't exist.
|
||||
$ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
|
||||
$ECHO "This script is just a wrapper for $program." 1>&2
|
||||
$ECHO "See the libtool documentation for more information." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
|
@ -1,614 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# examples/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/audiofile
|
||||
pkgincludedir = $(includedir)/audiofile
|
||||
pkglibdir = $(libdir)/audiofile
|
||||
pkglibexecdir = $(libexecdir)/audiofile
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-w64-mingw32
|
||||
host_triplet = x86_64-w64-mingw32
|
||||
noinst_PROGRAMS = adddcoffset$(EXEEXT) power$(EXEEXT)
|
||||
EXTRA_PROGRAMS = alsaplay$(EXEEXT) irixread$(EXEEXT) \
|
||||
irixtestloop$(EXEEXT) linuxtest$(EXEEXT) osxplay$(EXEEXT)
|
||||
subdir = examples
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
PROGRAMS = $(noinst_PROGRAMS)
|
||||
adddcoffset_SOURCES = adddcoffset.c
|
||||
adddcoffset_OBJECTS = adddcoffset.$(OBJEXT)
|
||||
adddcoffset_LDADD = $(LDADD)
|
||||
adddcoffset_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_alsaplay_OBJECTS = alsaplay.$(OBJEXT)
|
||||
alsaplay_OBJECTS = $(am_alsaplay_OBJECTS)
|
||||
alsaplay_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_irixread_OBJECTS = irixread.$(OBJEXT) sgi.$(OBJEXT)
|
||||
irixread_OBJECTS = $(am_irixread_OBJECTS)
|
||||
irixread_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_irixtestloop_OBJECTS = irixtestloop.$(OBJEXT) sgi.$(OBJEXT)
|
||||
irixtestloop_OBJECTS = $(am_irixtestloop_OBJECTS)
|
||||
irixtestloop_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_linuxtest_OBJECTS = linuxtest.$(OBJEXT)
|
||||
linuxtest_OBJECTS = $(am_linuxtest_OBJECTS)
|
||||
linuxtest_LDADD = $(LDADD)
|
||||
linuxtest_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_osxplay_OBJECTS = osxplay.$(OBJEXT)
|
||||
osxplay_OBJECTS = $(am_osxplay_OBJECTS)
|
||||
osxplay_LDADD = $(LDADD)
|
||||
osxplay_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
osxplay_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(osxplay_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
am_power_OBJECTS = power.$(OBJEXT)
|
||||
power_OBJECTS = $(am_power_OBJECTS)
|
||||
power_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = adddcoffset.c $(alsaplay_SOURCES) $(irixread_SOURCES) \
|
||||
$(irixtestloop_SOURCES) $(linuxtest_SOURCES) \
|
||||
$(osxplay_SOURCES) $(power_SOURCES)
|
||||
DIST_SOURCES = adddcoffset.c $(alsaplay_SOURCES) $(irixread_SOURCES) \
|
||||
$(irixtestloop_SOURCES) $(linuxtest_SOURCES) \
|
||||
$(osxplay_SOURCES) $(power_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X =
|
||||
ACLOCAL = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run aclocal-1.11
|
||||
AMTAR = $${TAR-tar}
|
||||
AR = ar
|
||||
ASCIIDOC =
|
||||
AUDIOFILE_VERSION = 0.3.6
|
||||
AUDIOFILE_VERSION_INFO = 1:0:0
|
||||
AUTOCONF = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run automake-1.11
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2
|
||||
COVERAGE_CFLAGS =
|
||||
COVERAGE_LIBS =
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = cygpath -w
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT = .exe
|
||||
FGREP = /usr/bin/grep -F
|
||||
FLAC_CFLAGS =
|
||||
FLAC_LIBS =
|
||||
GENHTML =
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LCOV =
|
||||
LD = I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/bin/ld.exe
|
||||
LDFLAGS =
|
||||
LIBOBJS =
|
||||
LIBS = -lstdc++
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = cp -pR
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAKEINFO = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /mingw64/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = audiofile
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = audiofile
|
||||
PACKAGE_STRING = audiofile 0.3.6
|
||||
PACKAGE_TARNAME = audiofile
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.3.6
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /mingw64/bin/pkg-config
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH = /mingw64/lib/pkgconfig:/mingw64/share/pkgconfig
|
||||
RANLIB = ranlib
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TEST_BIN =
|
||||
VALGRIND =
|
||||
VERSION = 0.3.6
|
||||
WERROR_CFLAGS =
|
||||
abs_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6/examples
|
||||
abs_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6/examples
|
||||
abs_top_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_top_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-w64-mingw32
|
||||
build_alias = x86_64-w64-mingw32
|
||||
build_cpu = x86_64
|
||||
build_os = mingw32
|
||||
build_vendor = w64
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-w64-mingw32
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = mingw32
|
||||
host_vendor = w64
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /usr/bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /mingw64
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
INCLUDES = -I$(top_srcdir)/libaudiofile
|
||||
LIBAUDIOFILE = $(top_builddir)/libaudiofile/libaudiofile.la
|
||||
alsaplay_SOURCES = alsaplay.cpp
|
||||
alsaplay_LDADD = $(LIBAUDIOFILE) -lasound
|
||||
irixread_SOURCES = irixread.c sgi.c sgi.h
|
||||
irixread_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
irixtestloop_SOURCES = irixtestloop.c sgi.c sgi.h
|
||||
irixtestloop_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
linuxtest_SOURCES = linuxtest.c
|
||||
osxplay_SOURCES = osxplay.c
|
||||
osxplay_LDFLAGS = -framework AudioUnit -framework CoreServices
|
||||
power_SOURCES = power.c
|
||||
power_LDADD = $(LIBAUDIOFILE) -lm
|
||||
LDADD = $(LIBAUDIOFILE)
|
||||
DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu examples/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list || exit $$?; \
|
||||
test -n "$(EXEEXT)" || exit 0; \
|
||||
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list
|
||||
adddcoffset$(EXEEXT): $(adddcoffset_OBJECTS) $(adddcoffset_DEPENDENCIES) $(EXTRA_adddcoffset_DEPENDENCIES)
|
||||
@rm -f adddcoffset$(EXEEXT)
|
||||
$(LINK) $(adddcoffset_OBJECTS) $(adddcoffset_LDADD) $(LIBS)
|
||||
alsaplay$(EXEEXT): $(alsaplay_OBJECTS) $(alsaplay_DEPENDENCIES) $(EXTRA_alsaplay_DEPENDENCIES)
|
||||
@rm -f alsaplay$(EXEEXT)
|
||||
$(CXXLINK) $(alsaplay_OBJECTS) $(alsaplay_LDADD) $(LIBS)
|
||||
irixread$(EXEEXT): $(irixread_OBJECTS) $(irixread_DEPENDENCIES) $(EXTRA_irixread_DEPENDENCIES)
|
||||
@rm -f irixread$(EXEEXT)
|
||||
$(LINK) $(irixread_OBJECTS) $(irixread_LDADD) $(LIBS)
|
||||
irixtestloop$(EXEEXT): $(irixtestloop_OBJECTS) $(irixtestloop_DEPENDENCIES) $(EXTRA_irixtestloop_DEPENDENCIES)
|
||||
@rm -f irixtestloop$(EXEEXT)
|
||||
$(LINK) $(irixtestloop_OBJECTS) $(irixtestloop_LDADD) $(LIBS)
|
||||
linuxtest$(EXEEXT): $(linuxtest_OBJECTS) $(linuxtest_DEPENDENCIES) $(EXTRA_linuxtest_DEPENDENCIES)
|
||||
@rm -f linuxtest$(EXEEXT)
|
||||
$(LINK) $(linuxtest_OBJECTS) $(linuxtest_LDADD) $(LIBS)
|
||||
osxplay$(EXEEXT): $(osxplay_OBJECTS) $(osxplay_DEPENDENCIES) $(EXTRA_osxplay_DEPENDENCIES)
|
||||
@rm -f osxplay$(EXEEXT)
|
||||
$(osxplay_LINK) $(osxplay_OBJECTS) $(osxplay_LDADD) $(LIBS)
|
||||
power$(EXEEXT): $(power_OBJECTS) $(power_DEPENDENCIES) $(EXTRA_power_DEPENDENCIES)
|
||||
@rm -f power$(EXEEXT)
|
||||
$(LINK) $(power_OBJECTS) $(power_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/adddcoffset.Po
|
||||
include ./$(DEPDIR)/alsaplay.Po
|
||||
include ./$(DEPDIR)/irixread.Po
|
||||
include ./$(DEPDIR)/irixtestloop.Po
|
||||
include ./$(DEPDIR)/linuxtest.Po
|
||||
include ./$(DEPDIR)/osxplay.Po
|
||||
include ./$(DEPDIR)/power.Po
|
||||
include ./$(DEPDIR)/sgi.Po
|
||||
|
||||
.c.o:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
||||
# $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.o:
|
||||
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstPROGRAMS ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,31 +0,0 @@
|
|||
INCLUDES = -I$(top_srcdir)/libaudiofile
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
adddcoffset \
|
||||
power \
|
||||
@TEST_BIN@
|
||||
|
||||
EXTRA_PROGRAMS = alsaplay irixread irixtestloop linuxtest osxplay
|
||||
|
||||
LIBAUDIOFILE = $(top_builddir)/libaudiofile/libaudiofile.la
|
||||
|
||||
alsaplay_SOURCES = alsaplay.cpp
|
||||
alsaplay_LDADD = $(LIBAUDIOFILE) -lasound
|
||||
|
||||
irixread_SOURCES = irixread.c sgi.c sgi.h
|
||||
irixread_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
|
||||
irixtestloop_SOURCES = irixtestloop.c sgi.c sgi.h
|
||||
irixtestloop_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
|
||||
linuxtest_SOURCES = linuxtest.c
|
||||
|
||||
osxplay_SOURCES = osxplay.c
|
||||
osxplay_LDFLAGS = -framework AudioUnit -framework CoreServices
|
||||
|
||||
power_SOURCES = power.c
|
||||
power_LDADD = $(LIBAUDIOFILE) -lm
|
||||
|
||||
LDADD = $(LIBAUDIOFILE)
|
||||
|
||||
DEPENDENCIES = $(LIBAUDIOFILE)
|
|
@ -1,614 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
noinst_PROGRAMS = adddcoffset$(EXEEXT) power$(EXEEXT) @TEST_BIN@
|
||||
EXTRA_PROGRAMS = alsaplay$(EXEEXT) irixread$(EXEEXT) \
|
||||
irixtestloop$(EXEEXT) linuxtest$(EXEEXT) osxplay$(EXEEXT)
|
||||
subdir = examples
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
PROGRAMS = $(noinst_PROGRAMS)
|
||||
adddcoffset_SOURCES = adddcoffset.c
|
||||
adddcoffset_OBJECTS = adddcoffset.$(OBJEXT)
|
||||
adddcoffset_LDADD = $(LDADD)
|
||||
adddcoffset_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_alsaplay_OBJECTS = alsaplay.$(OBJEXT)
|
||||
alsaplay_OBJECTS = $(am_alsaplay_OBJECTS)
|
||||
alsaplay_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_irixread_OBJECTS = irixread.$(OBJEXT) sgi.$(OBJEXT)
|
||||
irixread_OBJECTS = $(am_irixread_OBJECTS)
|
||||
irixread_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_irixtestloop_OBJECTS = irixtestloop.$(OBJEXT) sgi.$(OBJEXT)
|
||||
irixtestloop_OBJECTS = $(am_irixtestloop_OBJECTS)
|
||||
irixtestloop_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_linuxtest_OBJECTS = linuxtest.$(OBJEXT)
|
||||
linuxtest_OBJECTS = $(am_linuxtest_OBJECTS)
|
||||
linuxtest_LDADD = $(LDADD)
|
||||
linuxtest_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
am_osxplay_OBJECTS = osxplay.$(OBJEXT)
|
||||
osxplay_OBJECTS = $(am_osxplay_OBJECTS)
|
||||
osxplay_LDADD = $(LDADD)
|
||||
osxplay_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
osxplay_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(osxplay_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
am_power_OBJECTS = power.$(OBJEXT)
|
||||
power_OBJECTS = $(am_power_OBJECTS)
|
||||
power_DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = adddcoffset.c $(alsaplay_SOURCES) $(irixread_SOURCES) \
|
||||
$(irixtestloop_SOURCES) $(linuxtest_SOURCES) \
|
||||
$(osxplay_SOURCES) $(power_SOURCES)
|
||||
DIST_SOURCES = adddcoffset.c $(alsaplay_SOURCES) $(irixread_SOURCES) \
|
||||
$(irixtestloop_SOURCES) $(linuxtest_SOURCES) \
|
||||
$(osxplay_SOURCES) $(power_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X = @A2X@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASCIIDOC = @ASCIIDOC@
|
||||
AUDIOFILE_VERSION = @AUDIOFILE_VERSION@
|
||||
AUDIOFILE_VERSION_INFO = @AUDIOFILE_VERSION_INFO@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
|
||||
COVERAGE_LIBS = @COVERAGE_LIBS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLAC_CFLAGS = @FLAC_CFLAGS@
|
||||
FLAC_LIBS = @FLAC_LIBS@
|
||||
GENHTML = @GENHTML@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LCOV = @LCOV@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
||||
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TEST_BIN = @TEST_BIN@
|
||||
VALGRIND = @VALGRIND@
|
||||
VERSION = @VERSION@
|
||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
INCLUDES = -I$(top_srcdir)/libaudiofile
|
||||
LIBAUDIOFILE = $(top_builddir)/libaudiofile/libaudiofile.la
|
||||
alsaplay_SOURCES = alsaplay.cpp
|
||||
alsaplay_LDADD = $(LIBAUDIOFILE) -lasound
|
||||
irixread_SOURCES = irixread.c sgi.c sgi.h
|
||||
irixread_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
irixtestloop_SOURCES = irixtestloop.c sgi.c sgi.h
|
||||
irixtestloop_LDADD = $(LIBAUDIOFILE) -laudio
|
||||
linuxtest_SOURCES = linuxtest.c
|
||||
osxplay_SOURCES = osxplay.c
|
||||
osxplay_LDFLAGS = -framework AudioUnit -framework CoreServices
|
||||
power_SOURCES = power.c
|
||||
power_LDADD = $(LIBAUDIOFILE) -lm
|
||||
LDADD = $(LIBAUDIOFILE)
|
||||
DEPENDENCIES = $(LIBAUDIOFILE)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu examples/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list || exit $$?; \
|
||||
test -n "$(EXEEXT)" || exit 0; \
|
||||
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f" $$list; \
|
||||
rm -f $$list
|
||||
adddcoffset$(EXEEXT): $(adddcoffset_OBJECTS) $(adddcoffset_DEPENDENCIES) $(EXTRA_adddcoffset_DEPENDENCIES)
|
||||
@rm -f adddcoffset$(EXEEXT)
|
||||
$(LINK) $(adddcoffset_OBJECTS) $(adddcoffset_LDADD) $(LIBS)
|
||||
alsaplay$(EXEEXT): $(alsaplay_OBJECTS) $(alsaplay_DEPENDENCIES) $(EXTRA_alsaplay_DEPENDENCIES)
|
||||
@rm -f alsaplay$(EXEEXT)
|
||||
$(CXXLINK) $(alsaplay_OBJECTS) $(alsaplay_LDADD) $(LIBS)
|
||||
irixread$(EXEEXT): $(irixread_OBJECTS) $(irixread_DEPENDENCIES) $(EXTRA_irixread_DEPENDENCIES)
|
||||
@rm -f irixread$(EXEEXT)
|
||||
$(LINK) $(irixread_OBJECTS) $(irixread_LDADD) $(LIBS)
|
||||
irixtestloop$(EXEEXT): $(irixtestloop_OBJECTS) $(irixtestloop_DEPENDENCIES) $(EXTRA_irixtestloop_DEPENDENCIES)
|
||||
@rm -f irixtestloop$(EXEEXT)
|
||||
$(LINK) $(irixtestloop_OBJECTS) $(irixtestloop_LDADD) $(LIBS)
|
||||
linuxtest$(EXEEXT): $(linuxtest_OBJECTS) $(linuxtest_DEPENDENCIES) $(EXTRA_linuxtest_DEPENDENCIES)
|
||||
@rm -f linuxtest$(EXEEXT)
|
||||
$(LINK) $(linuxtest_OBJECTS) $(linuxtest_LDADD) $(LIBS)
|
||||
osxplay$(EXEEXT): $(osxplay_OBJECTS) $(osxplay_DEPENDENCIES) $(EXTRA_osxplay_DEPENDENCIES)
|
||||
@rm -f osxplay$(EXEEXT)
|
||||
$(osxplay_LINK) $(osxplay_OBJECTS) $(osxplay_LDADD) $(LIBS)
|
||||
power$(EXEEXT): $(power_OBJECTS) $(power_DEPENDENCIES) $(EXTRA_power_DEPENDENCIES)
|
||||
@rm -f power$(EXEEXT)
|
||||
$(LINK) $(power_OBJECTS) $(power_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/adddcoffset.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alsaplay.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/irixread.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/irixtestloop.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linuxtest.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/osxplay.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/power.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sgi.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libtool clean-noinstPROGRAMS ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am install-man \
|
||||
install-pdf install-pdf-am install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags uninstall uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,98 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright 1998, Michael Pruett <michael@68k.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
adddcoffset.c
|
||||
|
||||
This program adds a user-specified DC offset term to a sound file.
|
||||
It's not very useful.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef __USE_SGI_HEADERS__
|
||||
#include <dmedia/audiofile.h>
|
||||
#else
|
||||
#include "audiofile.h"
|
||||
#endif
|
||||
|
||||
void adddcoffset (float offset, char *infilename, char *outfilename);
|
||||
void usageerror (void);
|
||||
|
||||
int main (int ac, char **av)
|
||||
{
|
||||
float offset;
|
||||
|
||||
if (ac != 4)
|
||||
usageerror();
|
||||
|
||||
offset = atof(av[1]);
|
||||
adddcoffset(offset, av[2], av[3]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void adddcoffset (float offset, char *infilename, char *outfilename)
|
||||
{
|
||||
AFfilehandle infile = afOpenFile(infilename, "r", NULL);
|
||||
int channelCount, frameCount;
|
||||
short *buffer;
|
||||
int i;
|
||||
|
||||
AFfilesetup outfilesetup = afNewFileSetup();
|
||||
AFfilehandle outfile;
|
||||
|
||||
frameCount = afGetFrameCount(infile, AF_DEFAULT_TRACK);
|
||||
channelCount = afGetChannels(infile, AF_DEFAULT_TRACK);
|
||||
|
||||
afInitFileFormat(outfilesetup, AF_FILE_AIFF);
|
||||
afInitByteOrder(outfilesetup, AF_DEFAULT_TRACK, AF_BYTEORDER_BIGENDIAN);
|
||||
afInitChannels(outfilesetup, AF_DEFAULT_TRACK, channelCount);
|
||||
afInitRate(outfilesetup, AF_DEFAULT_TRACK, 44100.0);
|
||||
afInitSampleFormat(outfilesetup, AF_DEFAULT_TRACK, AF_SAMPFMT_TWOSCOMP, 16);
|
||||
|
||||
outfile = afOpenFile(outfilename, "w", outfilesetup);
|
||||
|
||||
if (infile == NULL)
|
||||
{
|
||||
printf("unable to open input file '%s'.\n", infilename);
|
||||
return;
|
||||
}
|
||||
|
||||
printf("afGetFrameCount: %d\n", (int)afGetFrameCount(infile, AF_DEFAULT_TRACK));
|
||||
printf("afGetChannels: %d\n", afGetChannels(infile, AF_DEFAULT_TRACK));
|
||||
|
||||
buffer = (short *) malloc(frameCount * channelCount * sizeof (short));
|
||||
afReadFrames(infile, AF_DEFAULT_TRACK, (void *) buffer, frameCount);
|
||||
|
||||
for (i=0; i<frameCount; i++)
|
||||
{
|
||||
buffer[i] += offset;
|
||||
}
|
||||
|
||||
afWriteFrames(outfile, AF_DEFAULT_TRACK, (void *) buffer, frameCount);
|
||||
afCloseFile(outfile);
|
||||
}
|
||||
|
||||
void usageerror (void)
|
||||
{
|
||||
fprintf(stderr, "usage: adddcoffset offset infile outfile\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
|
@ -1,101 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright (c) 2010, Michael Pruett. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
3. The name of the author may not be used to endorse or promote
|
||||
products derived from this software without specific prior
|
||||
written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <alsa/asoundlib.h>
|
||||
#include <audiofile.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (argc != 2)
|
||||
{
|
||||
fprintf(stderr, "usage: %s filename\n", argv[0]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
AFfilehandle file = afOpenFile(argv[1], "r", AF_NULL_FILESETUP);
|
||||
if (!file)
|
||||
{
|
||||
fprintf(stderr, "Could not open '%s'.\n", argv[1]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
int channels = afGetChannels(file, AF_DEFAULT_TRACK);
|
||||
double rate = afGetRate(file, AF_DEFAULT_TRACK);
|
||||
afSetVirtualSampleFormat(file, AF_DEFAULT_TRACK, AF_SAMPFMT_TWOSCOMP, 16);
|
||||
|
||||
int err;
|
||||
snd_pcm_t *handle;
|
||||
if ((err = snd_pcm_open(&handle, "default", SND_PCM_STREAM_PLAYBACK, 0)) < 0)
|
||||
{
|
||||
fprintf(stderr, "Could not open audio output: %s\n", snd_strerror(err));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if ((err = snd_pcm_set_params(handle, SND_PCM_FORMAT_S16,
|
||||
SND_PCM_ACCESS_RW_INTERLEAVED, channels, rate, 1, 500000)) < 0)
|
||||
{
|
||||
fprintf(stderr, "Could not set audio output parameters: %s\n", snd_strerror(err));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
const int bufferFrames = 4096;
|
||||
int16_t *buffer = new int16_t[bufferFrames * channels];
|
||||
|
||||
while (true)
|
||||
{
|
||||
AFframecount framesRead = afReadFrames(file, AF_DEFAULT_TRACK, buffer, bufferFrames);
|
||||
if (framesRead <= 0)
|
||||
break;
|
||||
|
||||
snd_pcm_sframes_t framesWritten = snd_pcm_writei(handle, buffer, bufferFrames);
|
||||
if (framesWritten < 0)
|
||||
framesWritten = snd_pcm_recover(handle, framesWritten, 0);
|
||||
if (framesWritten < 0)
|
||||
{
|
||||
fprintf(stderr, "Could not write audio data to output device: %s\n",
|
||||
snd_strerror(err));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
snd_pcm_drain(handle);
|
||||
snd_pcm_close(handle);
|
||||
delete [] buffer;
|
||||
|
||||
afCloseFile(file);
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -1,122 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright (C) 1998-1999, Michael Pruett <michael@68k.org>
|
||||
Copyright (C) 2001, Silicon Graphics, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
irixread.c
|
||||
|
||||
This program reads and plays a given audio file using Irix's
|
||||
default audio output device. This file will not work on any
|
||||
operating system other than Irix.
|
||||
|
||||
The only difference between this program and irixtest is that this
|
||||
program does not load the entire audio track into memory at once.
|
||||
Only a small number of frames are read into a buffer and then
|
||||
written to the audio port. While there are more frames to be
|
||||
read, this process is repeated.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <dmedia/audio.h>
|
||||
#include <dmedia/audiofile.h>
|
||||
|
||||
#include "sgi.h"
|
||||
|
||||
const int BUFFERED_FRAME_COUNT = 65536;
|
||||
|
||||
void usage (void)
|
||||
{
|
||||
fprintf(stderr, "usage: irixread filename\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
AFfilehandle file;
|
||||
AFframecount count, frameCount;
|
||||
int channelCount, sampleFormat, sampleWidth;
|
||||
float frameSize;
|
||||
void *buffer;
|
||||
double sampleRate;
|
||||
|
||||
ALport outport;
|
||||
ALconfig outportconfig;
|
||||
|
||||
if (argc < 2)
|
||||
usage();
|
||||
|
||||
file = afOpenFile(argv[1], "r", NULL);
|
||||
if (file == AF_NULL_FILEHANDLE)
|
||||
{
|
||||
fprintf(stderr, "Could not open file %s.\n", argv[1]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
frameCount = afGetFrameCount(file, AF_DEFAULT_TRACK);
|
||||
frameSize = afGetVirtualFrameSize(file, AF_DEFAULT_TRACK, 1);
|
||||
channelCount = afGetVirtualChannels(file, AF_DEFAULT_TRACK);
|
||||
sampleRate = afGetRate(file, AF_DEFAULT_TRACK);
|
||||
afGetVirtualSampleFormat(file, AF_DEFAULT_TRACK, &sampleFormat,
|
||||
&sampleWidth);
|
||||
|
||||
if (sampleFormat == AF_SAMPFMT_UNSIGNED)
|
||||
{
|
||||
afSetVirtualSampleFormat(file, AF_DEFAULT_TRACK,
|
||||
AF_SAMPFMT_TWOSCOMP, sampleWidth);
|
||||
}
|
||||
|
||||
printf("frame count: %lld\n", frameCount);
|
||||
printf("frame size: %d bytes\n", (int) frameSize);
|
||||
printf("channel count: %d\n", channelCount);
|
||||
printf("sample rate: %.2f Hz\n", sampleRate);
|
||||
buffer = malloc(BUFFERED_FRAME_COUNT * frameSize);
|
||||
|
||||
outportconfig = alNewConfig();
|
||||
setwidth(outportconfig, sampleWidth);
|
||||
setsampleformat(outportconfig, sampleFormat);
|
||||
alSetChannels(outportconfig, channelCount);
|
||||
|
||||
count = afReadFrames(file, AF_DEFAULT_TRACK, buffer, BUFFERED_FRAME_COUNT);
|
||||
|
||||
outport = alOpenPort("irixread", "w", outportconfig);
|
||||
setrate(outport, sampleRate);
|
||||
|
||||
do
|
||||
{
|
||||
printf("count = %lld\n", count);
|
||||
alWriteFrames(outport, buffer, count);
|
||||
|
||||
count = afReadFrames(file, AF_DEFAULT_TRACK, buffer,
|
||||
BUFFERED_FRAME_COUNT);
|
||||
} while (count > 0);
|
||||
|
||||
waitport(outport);
|
||||
|
||||
alClosePort(outport);
|
||||
alFreeConfig(outportconfig);
|
||||
|
||||
afCloseFile(file);
|
||||
}
|
|
@ -1,149 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright (C) 1998-1999, Michael Pruett <michael@68k.org>
|
||||
Copyright (C) 2001, Silicon Graphics, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
irixtestloop.c
|
||||
|
||||
This file reads the loop points from a file (presumably AIFF) and
|
||||
loops that part of the file several times. Audio output is routed
|
||||
to IRIX's default audio output device. This program will not
|
||||
compile on any platform other than IRIX.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <dmedia/audio.h>
|
||||
#include <dmedia/audiofile.h>
|
||||
|
||||
#include "sgi.h"
|
||||
|
||||
const int REPEAT_COUNT = 3;
|
||||
|
||||
void usage (void)
|
||||
{
|
||||
printf("usage: irixtestloop file\n");
|
||||
printf("where file is of a format which contains a loop (e.g. AIFF)\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
AFfilehandle file;
|
||||
void *buffer;
|
||||
|
||||
AFframecount frameCount;
|
||||
int sampleFormat, sampleWidth, channelCount;
|
||||
float frameSize;
|
||||
double sampleRate;
|
||||
|
||||
int *loopids, *markids;
|
||||
int i, loopCount, markCount;
|
||||
int startmarkid, endmarkid;
|
||||
AFframecount startloop, endloop;
|
||||
|
||||
ALport outport;
|
||||
ALconfig outportconfig;
|
||||
|
||||
if (argc < 2)
|
||||
usage();
|
||||
|
||||
file = afOpenFile(argv[1], "r", NULL);
|
||||
frameCount = afGetFrameCount(file, AF_DEFAULT_TRACK);
|
||||
frameSize = afGetVirtualFrameSize(file, AF_DEFAULT_TRACK, 1);
|
||||
channelCount = afGetVirtualChannels(file, AF_DEFAULT_TRACK);
|
||||
afGetVirtualSampleFormat(file, AF_DEFAULT_TRACK, &sampleFormat, &sampleWidth);
|
||||
sampleRate = afGetRate(file, AF_DEFAULT_TRACK);
|
||||
|
||||
/*
|
||||
If the file's sample format is unsigned integer data,
|
||||
change the virtual sample format to two's complement
|
||||
since the SGI Audio Library won't accept unsigned
|
||||
data.
|
||||
*/
|
||||
if (sampleFormat == AF_SAMPFMT_UNSIGNED)
|
||||
{
|
||||
afSetVirtualSampleFormat(file, AF_DEFAULT_TRACK,
|
||||
AF_SAMPFMT_TWOSCOMP, sampleWidth);
|
||||
}
|
||||
|
||||
printf("frame count: %lld\n", frameCount);
|
||||
printf("frame size: %d bytes\n", frameSize);
|
||||
printf("channel count: %d\n", channelCount);
|
||||
printf("sample rate: %.2f Hz\n", sampleRate);
|
||||
|
||||
buffer = malloc(frameCount * frameSize);
|
||||
afReadFrames(file, AF_DEFAULT_TRACK, buffer, frameCount);
|
||||
|
||||
loopCount = afGetLoopIDs(file, AF_DEFAULT_INST, NULL);
|
||||
loopids = malloc(sizeof (int) * loopCount);
|
||||
afGetLoopIDs(file, AF_DEFAULT_INST, loopids);
|
||||
|
||||
markCount = afGetMarkIDs(file, AF_DEFAULT_TRACK, NULL);
|
||||
markids = malloc(sizeof (int) * markCount);
|
||||
afGetMarkIDs(file, AF_DEFAULT_TRACK, markids);
|
||||
|
||||
printf("loop ids:");
|
||||
for (i=0; i<loopCount; i++)
|
||||
printf(" %d", loopids[i]);
|
||||
printf("\n");
|
||||
|
||||
printf("mark ids:");
|
||||
for (i=0; i<markCount; i++)
|
||||
printf(" %d", markids[i]);
|
||||
printf("\n");
|
||||
|
||||
startmarkid = afGetLoopStart(file, AF_DEFAULT_INST, 1);
|
||||
endmarkid = afGetLoopEnd(file, AF_DEFAULT_INST, 1);
|
||||
startloop = afGetMarkPosition(file, AF_DEFAULT_TRACK, startmarkid);
|
||||
endloop = afGetMarkPosition(file, AF_DEFAULT_TRACK, endmarkid);
|
||||
|
||||
afCloseFile(file);
|
||||
|
||||
outportconfig = alNewConfig();
|
||||
setwidth(outportconfig, sampleWidth);
|
||||
setsampleformat(outportconfig, sampleFormat);
|
||||
alSetChannels(outportconfig, channelCount);
|
||||
|
||||
outport = alOpenPort("irixtestloop", "w", outportconfig);
|
||||
setrate(outport, sampleRate);
|
||||
|
||||
alWriteFrames(outport, buffer, startloop);
|
||||
for (i=0; i<REPEAT_COUNT; i++)
|
||||
{
|
||||
printf("iteration %d: start %lld, end %lld, length %lld\n",
|
||||
i, endloop, startloop, endloop - startloop);
|
||||
alWriteFrames(outport,
|
||||
(char *) buffer + (int) (startloop * frameSize),
|
||||
endloop - startloop);
|
||||
}
|
||||
|
||||
waitport(outport);
|
||||
|
||||
alClosePort(outport);
|
||||
alFreeConfig(outportconfig);
|
||||
|
||||
free(buffer);
|
||||
}
|
|
@ -1,163 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright (c) 1998-1999, Michael Pruett <michael@68k.org>
|
||||
Copyright (c) 2001, Silicon Graphics, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
linuxtest.c
|
||||
|
||||
This file plays a 16-bit, 44.1 kHz monophonic or stereophonic
|
||||
audio file through a PC sound card on a Linux system. This file
|
||||
will not compile under any operating system that does not support
|
||||
the Open Sound System API.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <linux/soundcard.h>
|
||||
|
||||
#include <audiofile.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
If it's not defined already, define the native audio hardware
|
||||
byte order.
|
||||
*/
|
||||
|
||||
#ifndef AFMT_S16_NE
|
||||
#ifdef WORDS_BIGENDIAN /* defined in config.h */
|
||||
#define AFMT_S16_NE AFMT_S16_BE
|
||||
#else
|
||||
#define AFMT_S16_NE AFMT_S16_LE
|
||||
#endif /* WORDS_BIGENDIAN */
|
||||
#endif /* AFMT_S16_NE */
|
||||
|
||||
void setupdsp (int audiofd, int channelCount, int frequency);
|
||||
void usage (void);
|
||||
|
||||
/* BUFFER_FRAMES represents the size of the buffer in frames. */
|
||||
#define BUFFER_FRAMES 4096
|
||||
|
||||
int main (int argc, char **argv)
|
||||
{
|
||||
if (argc != 2)
|
||||
usage();
|
||||
|
||||
AFfilehandle file = afOpenFile(argv[1], "r", NULL);
|
||||
AFframecount frameCount = afGetFrameCount(file, AF_DEFAULT_TRACK);
|
||||
printf("frame count: %jd\n", (intmax_t) frameCount);
|
||||
|
||||
int channelCount = afGetVirtualChannels(file, AF_DEFAULT_TRACK);
|
||||
int sampleFormat, sampleWidth;
|
||||
afGetVirtualSampleFormat(file, AF_DEFAULT_TRACK, &sampleFormat,
|
||||
&sampleWidth);
|
||||
double frequency = afGetRate(file, AF_DEFAULT_TRACK);
|
||||
|
||||
float frameSize = afGetVirtualFrameSize(file, AF_DEFAULT_TRACK, 1);
|
||||
|
||||
printf("sample format: %d, sample width: %d, channels: %d\n",
|
||||
sampleFormat, sampleWidth, channelCount);
|
||||
|
||||
if ((sampleFormat != AF_SAMPFMT_TWOSCOMP) &&
|
||||
(sampleFormat != AF_SAMPFMT_UNSIGNED))
|
||||
{
|
||||
fprintf(stderr, "The audio file must contain integer data in two's complement or unsigned format.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if ((sampleWidth != 16) || (channelCount > 2))
|
||||
{
|
||||
fprintf(stderr, "The audio file must be of a 16-bit monophonic or stereophonic format.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
void *buffer = malloc(BUFFER_FRAMES * frameSize);
|
||||
|
||||
int audiofd = open("/dev/dsp", O_WRONLY);
|
||||
if (audiofd < 0)
|
||||
{
|
||||
perror("open");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
setupdsp(audiofd, channelCount, frequency);
|
||||
|
||||
while (1)
|
||||
{
|
||||
AFframecount framesRead = afReadFrames(file, AF_DEFAULT_TRACK, buffer,
|
||||
BUFFER_FRAMES);
|
||||
if (framesRead <= 0)
|
||||
break;
|
||||
|
||||
printf("read %jd frames\n", (intmax_t) framesRead);
|
||||
|
||||
ssize_t bytesWritten = write(audiofd, buffer, framesRead * frameSize);
|
||||
if (bytesWritten < 0)
|
||||
break;
|
||||
}
|
||||
|
||||
close(audiofd);
|
||||
free(buffer);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void setupdsp (int audiofd, int channelCount, int frequency)
|
||||
{
|
||||
int format = AFMT_S16_NE;
|
||||
if (ioctl(audiofd, SNDCTL_DSP_SETFMT, &format) == -1)
|
||||
{
|
||||
perror("set format");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (format != AFMT_S16_NE)
|
||||
{
|
||||
fprintf(stderr, "format not correct.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (ioctl(audiofd, SNDCTL_DSP_CHANNELS, &channelCount) == -1)
|
||||
{
|
||||
perror("set channels");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
if (ioctl(audiofd, SNDCTL_DSP_SPEED, &frequency) == -1)
|
||||
{
|
||||
perror("set frequency");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
void usage (void)
|
||||
{
|
||||
fprintf(stderr, "usage: linuxtest file\n");
|
||||
fprintf(stderr,
|
||||
"where file refers to a 16-bit monophonic or stereophonic 44.1 kHz audio file\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
|
@ -1,258 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright (c) 2003, Michael Pruett. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or
|
||||
without modification, are permitted provided that the following
|
||||
conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials provided
|
||||
with the distribution.
|
||||
|
||||
3. The name of the author may not be used to endorse or promote
|
||||
products derived from this software without specific prior
|
||||
written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
||||
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
osxplay.c
|
||||
|
||||
This program demonstrates audio file playback using the Audio
|
||||
File Library and Core Audio.
|
||||
*/
|
||||
|
||||
#include <audiofile.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <CoreServices/CoreServices.h>
|
||||
#include <AudioUnit/AudioUnit.h>
|
||||
#include <CoreAudio/CoreAudio.h>
|
||||
|
||||
#define BUFFER_FRAME_COUNT 1024
|
||||
|
||||
int isPlaying = 1;
|
||||
void *buffer = NULL;
|
||||
|
||||
void getASBDForFile (AFfilehandle file, int track,
|
||||
AudioStreamBasicDescription *asbd)
|
||||
{
|
||||
int sampleFormat, sampleWidth, channelCount;
|
||||
double rate;
|
||||
|
||||
afGetVirtualSampleFormat(file, track, &sampleFormat, &sampleWidth);
|
||||
channelCount = afGetChannels(file, track);
|
||||
rate = afGetRate(file, track);
|
||||
|
||||
asbd->mSampleRate = rate;
|
||||
asbd->mFormatID = kAudioFormatLinearPCM;
|
||||
switch (sampleFormat)
|
||||
{
|
||||
case AF_SAMPFMT_TWOSCOMP:
|
||||
asbd->mFormatFlags = kAudioFormatFlagIsSignedInteger;
|
||||
asbd->mBitsPerChannel = sampleWidth;
|
||||
break;
|
||||
case AF_SAMPFMT_UNSIGNED:
|
||||
asbd->mFormatFlags = 0;
|
||||
asbd->mBitsPerChannel = sampleWidth;
|
||||
break;
|
||||
case AF_SAMPFMT_FLOAT:
|
||||
asbd->mFormatFlags = kAudioFormatFlagIsFloat;
|
||||
asbd->mBitsPerChannel = 32;
|
||||
break;
|
||||
case AF_SAMPFMT_DOUBLE:
|
||||
asbd->mFormatFlags = kAudioFormatFlagIsFloat;
|
||||
asbd->mBitsPerChannel = 64;
|
||||
break;
|
||||
}
|
||||
|
||||
asbd->mChannelsPerFrame = channelCount;
|
||||
asbd->mFramesPerPacket = 1;
|
||||
asbd->mBytesPerFrame = ceilf(afGetVirtualFrameSize(file, track, 1));
|
||||
asbd->mBytesPerPacket = asbd->mBytesPerFrame;
|
||||
|
||||
if (afGetVirtualByteOrder(file, track) == AF_BYTEORDER_BIGENDIAN)
|
||||
asbd->mFormatFlags |= kAudioFormatFlagIsBigEndian;
|
||||
}
|
||||
|
||||
OSStatus openOutput (AudioUnit *outputUnit)
|
||||
{
|
||||
OSStatus status = noErr;
|
||||
ComponentDescription description;
|
||||
Component component;
|
||||
|
||||
description.componentType = kAudioUnitType_Output;
|
||||
description.componentSubType = kAudioUnitSubType_DefaultOutput;
|
||||
description.componentManufacturer = kAudioUnitManufacturer_Apple;
|
||||
description.componentFlags = 0;
|
||||
description.componentFlagsMask = 0;
|
||||
|
||||
component = FindNextComponent(NULL, &description);
|
||||
if (component == NULL)
|
||||
{
|
||||
fprintf(stderr, "Could not find audio output device.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
status = OpenAComponent(component, outputUnit);
|
||||
if (status != noErr)
|
||||
{
|
||||
fprintf(stderr, "Could not open audio output device.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
status = AudioUnitInitialize(*outputUnit);
|
||||
if (status != noErr)
|
||||
{
|
||||
fprintf(stderr, "Could not initialize audio output device.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
OSStatus fileRenderProc (void *inRefCon,
|
||||
AudioUnitRenderActionFlags *inActionFlags,
|
||||
const AudioTimeStamp *inTimeStamp,
|
||||
UInt32 inBusNumber,
|
||||
UInt32 inNumFrames,
|
||||
AudioBufferList *ioData)
|
||||
{
|
||||
AFfilehandle file = (AFfilehandle) inRefCon;
|
||||
AFframecount framesToRead, framesRead;
|
||||
|
||||
framesToRead = inNumFrames;
|
||||
if (framesToRead > BUFFER_FRAME_COUNT)
|
||||
framesToRead = BUFFER_FRAME_COUNT;
|
||||
|
||||
framesRead = afReadFrames(file, AF_DEFAULT_TRACK,
|
||||
buffer, framesToRead);
|
||||
if (framesRead > 0)
|
||||
{
|
||||
ioData->mBuffers[0].mData = buffer;
|
||||
ioData->mBuffers[0].mDataByteSize = framesRead *
|
||||
afGetVirtualFrameSize(file, AF_DEFAULT_TRACK, 1);
|
||||
}
|
||||
else
|
||||
isPlaying = 0;
|
||||
|
||||
return noErr;
|
||||
}
|
||||
|
||||
OSStatus setupOutput (AudioUnit *outputUnit, AFfilehandle file)
|
||||
{
|
||||
OSStatus status = noErr;
|
||||
UInt32 size;
|
||||
Boolean outWritable;
|
||||
|
||||
AudioStreamBasicDescription fileASBD, inputASBD, outputASBD;
|
||||
AURenderCallbackStruct renderCallback;
|
||||
|
||||
/* Set virtual sample format to single-precision floating-point. */
|
||||
afSetVirtualSampleFormat(file, AF_DEFAULT_TRACK, AF_SAMPFMT_FLOAT, 32);
|
||||
|
||||
/* Get ASBD for virtual sample format. */
|
||||
getASBDForFile(file, AF_DEFAULT_TRACK, &fileASBD);
|
||||
|
||||
status = AudioUnitGetPropertyInfo(*outputUnit,
|
||||
kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output,
|
||||
0, &size, &outWritable);
|
||||
|
||||
status = AudioUnitGetProperty(*outputUnit,
|
||||
kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output,
|
||||
0, &outputASBD, &size);
|
||||
|
||||
if (outWritable)
|
||||
{
|
||||
outputASBD = fileASBD;
|
||||
|
||||
status = AudioUnitSetProperty(*outputUnit,
|
||||
kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output,
|
||||
0, &outputASBD, size);
|
||||
}
|
||||
|
||||
inputASBD = fileASBD;
|
||||
|
||||
status = AudioUnitSetProperty(*outputUnit,
|
||||
kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input,
|
||||
0, &inputASBD, size);
|
||||
if (status != noErr)
|
||||
{
|
||||
fprintf(stderr, "Could not set input stream format.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
/*
|
||||
Set the render callback to a procedure which will
|
||||
read from the file.
|
||||
*/
|
||||
renderCallback.inputProc = fileRenderProc;
|
||||
renderCallback.inputProcRefCon = file;
|
||||
|
||||
status = AudioUnitSetProperty(*outputUnit,
|
||||
kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input, 0,
|
||||
&renderCallback, sizeof (AURenderCallbackStruct));
|
||||
if (status != noErr)
|
||||
{
|
||||
fprintf(stderr, "Could not set render callback.\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
int main (int argc, char **argv)
|
||||
{
|
||||
AFfilehandle file;
|
||||
AudioUnit outputUnit;
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
fprintf(stderr, "usage: %s filename\n", argv[0]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
file = afOpenFile(argv[1], "r", AF_NULL_FILESETUP);
|
||||
if (file == AF_NULL_FILEHANDLE)
|
||||
{
|
||||
fprintf(stderr, "Could not open file '%s' for reading.\n", argv[1]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
openOutput(&outputUnit);
|
||||
setupOutput(&outputUnit, file);
|
||||
AudioOutputUnitStart(outputUnit);
|
||||
|
||||
buffer = malloc(BUFFER_FRAME_COUNT *
|
||||
afGetVirtualFrameSize(file, AF_DEFAULT_TRACK, 1));
|
||||
|
||||
while (isPlaying)
|
||||
usleep(250000);
|
||||
|
||||
AudioOutputUnitStop(outputUnit);
|
||||
AudioUnitUninitialize(outputUnit);
|
||||
CloseComponent(outputUnit);
|
||||
|
||||
free(buffer);
|
||||
|
||||
afCloseFile(file);
|
||||
}
|
|
@ -1,219 +0,0 @@
|
|||
/*
|
||||
This program is derived from Chris Vaill's normalize program
|
||||
and has been modified to use the Audio File Library for file
|
||||
reading and audio data conversion.
|
||||
|
||||
Copyright (C) 2001, Silicon Graphics, Inc.
|
||||
Copyright (C) 1999-2001, Chris Vaill
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
power.c
|
||||
|
||||
Calculate the power and peak amplitudes of an audio file.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include <audiofile.h>
|
||||
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
struct smooth
|
||||
{
|
||||
double *buf;
|
||||
int length, start, n;
|
||||
};
|
||||
|
||||
static double get_smoothed_data (struct smooth *s)
|
||||
{
|
||||
int i;
|
||||
double smoothed;
|
||||
|
||||
smoothed = 0;
|
||||
for (i = 0; i < s->n; i++)
|
||||
smoothed += s->buf[i];
|
||||
smoothed = smoothed / s->n;
|
||||
|
||||
return smoothed;
|
||||
}
|
||||
|
||||
void print_power (char *filename);
|
||||
|
||||
int main (int argc, char **argv)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
fprintf(stderr, "usage: %s filename [more filenames...]\n",
|
||||
argv[0]);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
for (i=1; i<argc; i++)
|
||||
print_power(argv[i]);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void print_power (char *filename)
|
||||
{
|
||||
AFfilehandle file;
|
||||
double *sums, *frames;
|
||||
int channelCount, windowSize, frameCount;
|
||||
int i, c;
|
||||
struct smooth *powsmooth;
|
||||
int winStart, winEnd;
|
||||
int lastWindow = FALSE;
|
||||
double pow, maxpow;
|
||||
|
||||
double level, peak, minSample = 1, maxSample = -1;
|
||||
|
||||
file = afOpenFile(filename, "r", NULL);
|
||||
if (file == AF_NULL_FILEHANDLE)
|
||||
{
|
||||
fprintf(stderr, "Could not open file %s.\n", filename);
|
||||
return;
|
||||
}
|
||||
|
||||
channelCount = afGetChannels(file, AF_DEFAULT_TRACK);
|
||||
windowSize = afGetRate(file, AF_DEFAULT_TRACK) / 100;
|
||||
frameCount = afGetFrameCount(file, AF_DEFAULT_TRACK);
|
||||
|
||||
sums = calloc(channelCount, sizeof (double));
|
||||
for (c=0; c<channelCount; c++)
|
||||
sums[c] = 0;
|
||||
|
||||
frames = calloc(channelCount * windowSize, sizeof (double));
|
||||
|
||||
afSetVirtualSampleFormat(file, AF_DEFAULT_TRACK, AF_SAMPFMT_DOUBLE,
|
||||
sizeof (double));
|
||||
|
||||
powsmooth = calloc(channelCount, sizeof (struct smooth));
|
||||
for (c=0; c<channelCount; c++)
|
||||
{
|
||||
/* Use a 100-element (1 second) window. */
|
||||
powsmooth[c].length = 100;
|
||||
powsmooth[c].buf = calloc(powsmooth[c].length, sizeof (double));
|
||||
powsmooth[c].start = 0;
|
||||
powsmooth[c].n = 0;
|
||||
}
|
||||
|
||||
winStart = 0;
|
||||
winEnd = 0;
|
||||
lastWindow = FALSE;
|
||||
maxpow = 0;
|
||||
|
||||
do
|
||||
{
|
||||
winEnd = winStart + windowSize;
|
||||
|
||||
if (winEnd >= frameCount)
|
||||
{
|
||||
winEnd = frameCount;
|
||||
lastWindow = TRUE;
|
||||
}
|
||||
|
||||
afReadFrames(file, AF_DEFAULT_TRACK, frames, windowSize);
|
||||
|
||||
for (c=0; c<channelCount; c++)
|
||||
{
|
||||
sums[c] = 0;
|
||||
|
||||
for (i=0; i < winEnd - winStart; i++)
|
||||
{
|
||||
double sample;
|
||||
|
||||
sample = frames[i*channelCount + c];
|
||||
sums[c] += sample*sample;
|
||||
|
||||
if (sample > maxSample)
|
||||
maxSample = sample;
|
||||
if (sample < minSample)
|
||||
minSample = sample;
|
||||
}
|
||||
}
|
||||
|
||||
/* Compute power for each channel. */
|
||||
for (c=0; c<channelCount; c++)
|
||||
{
|
||||
double pow;
|
||||
int end;
|
||||
|
||||
pow = sums[c] / (winEnd - winStart);
|
||||
|
||||
end = (powsmooth[c].start + powsmooth[c].n) %
|
||||
powsmooth[c].length;
|
||||
powsmooth[c].buf[end] = pow;
|
||||
|
||||
if (powsmooth[c].n == powsmooth[c].length)
|
||||
{
|
||||
powsmooth[c].start = (powsmooth[c].start + 1) % powsmooth[c].length;
|
||||
pow = get_smoothed_data(&powsmooth[c]);
|
||||
if (pow > maxpow)
|
||||
maxpow = pow;
|
||||
}
|
||||
else
|
||||
{
|
||||
powsmooth[c].n++;
|
||||
}
|
||||
}
|
||||
|
||||
winStart += windowSize;
|
||||
} while (!lastWindow);
|
||||
|
||||
for (c = 0; c < channelCount; c++)
|
||||
{
|
||||
pow = get_smoothed_data(&powsmooth[c]);
|
||||
if (pow > maxpow)
|
||||
maxpow = pow;
|
||||
}
|
||||
|
||||
free(sums);
|
||||
free(frames);
|
||||
for (c=0; c<channelCount; c++)
|
||||
free(powsmooth[c].buf);
|
||||
free(powsmooth);
|
||||
|
||||
level = sqrt(maxpow);
|
||||
|
||||
afCloseFile(file);
|
||||
|
||||
printf("file: %s\n", filename);
|
||||
|
||||
printf("level (dB): %f\n", 20 * log10(level));
|
||||
printf("peak-: %f\n", minSample);
|
||||
printf("peak+: %f\n", maxSample);
|
||||
|
||||
peak = fabs(minSample);
|
||||
if (peak < fabs(maxSample))
|
||||
peak = fabs(maxSample);
|
||||
|
||||
printf("peak (dB): %f\n", 20 * log10(peak));
|
||||
}
|
|
@ -1,108 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright 1998-1999, Michael Pruett <michael@68k.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
sgi.c
|
||||
|
||||
These routines are used in SGI-specific test programs.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <audiofile.h>
|
||||
|
||||
#include <dmedia/audio.h>
|
||||
|
||||
/*
|
||||
Set the sample width of an audio configuration.
|
||||
*/
|
||||
void setwidth (ALconfig config, int sampleWidth)
|
||||
{
|
||||
if (sampleWidth <= 8)
|
||||
{
|
||||
printf("setting width to 8\n");
|
||||
alSetWidth(config, AL_SAMPLE_8);
|
||||
}
|
||||
else if (sampleWidth <= 16)
|
||||
{
|
||||
printf("setting width to 16\n");
|
||||
alSetWidth(config, AL_SAMPLE_16);
|
||||
}
|
||||
else if (sampleWidth <= 24)
|
||||
{
|
||||
printf("setting width to 24\n");
|
||||
alSetWidth(config, AL_SAMPLE_24);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Set the sample format of an audio configuration.
|
||||
*/
|
||||
void setsampleformat (ALconfig config, int audioFileSampleFormat)
|
||||
{
|
||||
if (audioFileSampleFormat == AF_SAMPFMT_TWOSCOMP)
|
||||
{
|
||||
printf("setting sample format to 2's complement\n");
|
||||
alSetSampFmt(config, AL_SAMPFMT_TWOSCOMP);
|
||||
}
|
||||
else if (audioFileSampleFormat == AF_SAMPFMT_FLOAT)
|
||||
{
|
||||
printf("setting sample format to float\n");
|
||||
alSetSampFmt(config, AL_SAMPFMT_FLOAT);
|
||||
}
|
||||
else if (audioFileSampleFormat == AF_SAMPFMT_DOUBLE)
|
||||
{
|
||||
printf("setting sample format to double\n");
|
||||
alSetSampFmt(config, AL_SAMPFMT_DOUBLE);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Set the sample rate of an audio port.
|
||||
*/
|
||||
void setrate (ALport port, double rate)
|
||||
{
|
||||
int rv;
|
||||
ALpv params;
|
||||
|
||||
rv = alGetResource(port);
|
||||
|
||||
params.param = AL_RATE;
|
||||
params.value.ll = alDoubleToFixed(rate);
|
||||
|
||||
if (alSetParams(rv, ¶ms, 1) < 0)
|
||||
{
|
||||
printf("alSetParams failed: %s\n", alGetErrorString(oserror()));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Wait until the audio port has no more samples to play.
|
||||
*/
|
||||
void waitport (ALport port)
|
||||
{
|
||||
while (alGetFilled(port) > 0)
|
||||
sginap(1);
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
/*
|
||||
Audio File Library
|
||||
|
||||
Copyright 1998-1999, Michael Pruett <michael@68k.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
sgi.h
|
||||
|
||||
These routines are used in SGI-specific test programs.
|
||||
*/
|
||||
|
||||
#ifndef SGI_H
|
||||
#define SGI_H
|
||||
|
||||
#include <dmedia/audio.h>
|
||||
|
||||
/*
|
||||
Set the sample width of an audio configuration.
|
||||
*/
|
||||
void setwidth (ALconfig config, int width);
|
||||
|
||||
/*
|
||||
Set the sample format of an audio configuration.
|
||||
*/
|
||||
void setsampleformat (ALconfig config, int width);
|
||||
|
||||
/*
|
||||
Set the sample rate of an audio port.
|
||||
*/
|
||||
void setrate (ALport port, double rate);
|
||||
|
||||
/*
|
||||
Wait until the audio port has no more samples to play.
|
||||
*/
|
||||
void waitport (ALport port);
|
||||
|
||||
#endif
|
|
@ -1 +0,0 @@
|
|||
# dummy
|
|
@ -1,536 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# gtest/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/audiofile
|
||||
pkgincludedir = $(includedir)/audiofile
|
||||
pkglibdir = $(libdir)/audiofile
|
||||
pkglibexecdir = $(libexecdir)/audiofile
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = x86_64-w64-mingw32
|
||||
host_triplet = x86_64-w64-mingw32
|
||||
subdir = gtest
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
libgtest_la_DEPENDENCIES =
|
||||
am_libgtest_la_OBJECTS = libgtest_la-gtest-all.lo
|
||||
libgtest_la_OBJECTS = $(am_libgtest_la_OBJECTS)
|
||||
libgtest_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(libgtest_la_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libgtest_la_SOURCES)
|
||||
DIST_SOURCES = $(libgtest_la_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X =
|
||||
ACLOCAL = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run aclocal-1.11
|
||||
AMTAR = $${TAR-tar}
|
||||
AR = ar
|
||||
ASCIIDOC =
|
||||
AUDIOFILE_VERSION = 0.3.6
|
||||
AUDIOFILE_VERSION_INFO = 1:0:0
|
||||
AUTOCONF = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoconf
|
||||
AUTOHEADER = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run autoheader
|
||||
AUTOMAKE = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run automake-1.11
|
||||
AWK = gawk
|
||||
CC = gcc
|
||||
CCDEPMODE = depmode=gcc3
|
||||
CFLAGS = -g -O2
|
||||
COVERAGE_CFLAGS =
|
||||
COVERAGE_LIBS =
|
||||
CPP = gcc -E
|
||||
CPPFLAGS =
|
||||
CXX = g++
|
||||
CXXCPP = g++ -E
|
||||
CXXDEPMODE = depmode=gcc3
|
||||
CXXFLAGS = -g -O2
|
||||
CYGPATH_W = cygpath -w
|
||||
DEFS = -DHAVE_CONFIG_H
|
||||
DEPDIR = .deps
|
||||
DLLTOOL = dlltool
|
||||
DSYMUTIL =
|
||||
DUMPBIN =
|
||||
ECHO_C =
|
||||
ECHO_N = -n
|
||||
ECHO_T =
|
||||
EGREP = /usr/bin/grep -E
|
||||
EXEEXT = .exe
|
||||
FGREP = /usr/bin/grep -F
|
||||
FLAC_CFLAGS =
|
||||
FLAC_LIBS =
|
||||
GENHTML =
|
||||
GREP = /usr/bin/grep
|
||||
INSTALL = /usr/bin/install -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
INSTALL_PROGRAM = ${INSTALL}
|
||||
INSTALL_SCRIPT = ${INSTALL}
|
||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
||||
LCOV =
|
||||
LD = I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/bin/ld.exe
|
||||
LDFLAGS =
|
||||
LIBOBJS =
|
||||
LIBS = -lstdc++
|
||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
||||
LIPO =
|
||||
LN_S = cp -pR
|
||||
LTLIBOBJS =
|
||||
LT_SYS_LIBRARY_PATH =
|
||||
MAKEINFO = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/missing --run makeinfo
|
||||
MANIFEST_TOOL = :
|
||||
MKDIR_P = /usr/bin/mkdir -p
|
||||
NM = /mingw64/bin/nm -B
|
||||
NMEDIT =
|
||||
OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = audiofile
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = audiofile
|
||||
PACKAGE_STRING = audiofile 0.3.6
|
||||
PACKAGE_TARNAME = audiofile
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 0.3.6
|
||||
PATH_SEPARATOR = :
|
||||
PKG_CONFIG = /mingw64/bin/pkg-config
|
||||
PKG_CONFIG_LIBDIR =
|
||||
PKG_CONFIG_PATH = /mingw64/lib/pkgconfig:/mingw64/share/pkgconfig
|
||||
RANLIB = ranlib
|
||||
SED = /usr/bin/sed
|
||||
SET_MAKE =
|
||||
SHELL = /bin/sh
|
||||
STRIP = strip
|
||||
TEST_BIN =
|
||||
VALGRIND =
|
||||
VERSION = 0.3.6
|
||||
WERROR_CFLAGS =
|
||||
abs_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6/gtest
|
||||
abs_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6/gtest
|
||||
abs_top_builddir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
abs_top_srcdir = /i/Development/sm64pc/tools/audiofile-0.3.6
|
||||
ac_ct_AR = ar
|
||||
ac_ct_CC = gcc
|
||||
ac_ct_CXX = g++
|
||||
ac_ct_DUMPBIN =
|
||||
am__include = include
|
||||
am__leading_dot = .
|
||||
am__quote =
|
||||
am__tar = $${TAR-tar} chof - "$$tardir"
|
||||
am__untar = $${TAR-tar} xf -
|
||||
bindir = ${exec_prefix}/bin
|
||||
build = x86_64-w64-mingw32
|
||||
build_alias = x86_64-w64-mingw32
|
||||
build_cpu = x86_64
|
||||
build_os = mingw32
|
||||
build_vendor = w64
|
||||
builddir = .
|
||||
datadir = ${datarootdir}
|
||||
datarootdir = ${prefix}/share
|
||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
||||
dvidir = ${docdir}
|
||||
exec_prefix = ${prefix}
|
||||
host = x86_64-w64-mingw32
|
||||
host_alias =
|
||||
host_cpu = x86_64
|
||||
host_os = mingw32
|
||||
host_vendor = w64
|
||||
htmldir = ${docdir}
|
||||
includedir = ${prefix}/include
|
||||
infodir = ${datarootdir}/info
|
||||
install_sh = ${SHELL} /i/Development/sm64pc/tools/audiofile-0.3.6/install-sh
|
||||
libdir = ${exec_prefix}/lib
|
||||
libexecdir = ${exec_prefix}/libexec
|
||||
localedir = ${datarootdir}/locale
|
||||
localstatedir = ${prefix}/var
|
||||
mandir = ${datarootdir}/man
|
||||
mkdir_p = /usr/bin/mkdir -p
|
||||
oldincludedir = /usr/include
|
||||
pdfdir = ${docdir}
|
||||
prefix = /mingw64
|
||||
program_transform_name = s,x,x,
|
||||
psdir = ${docdir}
|
||||
sbindir = ${exec_prefix}/sbin
|
||||
sharedstatedir = ${prefix}/com
|
||||
srcdir = .
|
||||
sysconfdir = ${prefix}/etc
|
||||
target_alias =
|
||||
top_build_prefix = ../
|
||||
top_builddir = ..
|
||||
top_srcdir = ..
|
||||
check_LTLIBRARIES = libgtest.la
|
||||
libgtest_la_SOURCES = gtest-all.cpp gtest.h
|
||||
libgtest_la_LIBADD = -lpthread
|
||||
libgtest_la_CXXFLAGS = -fno-rtti -fno-exceptions -DGTEST_HAS_RTTI=0 -DGTEST_HAS_EXCEPTIONS=0
|
||||
EXTRA_DIST = README.audiofile
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gtest/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu gtest/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-checkLTLIBRARIES:
|
||||
-test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
|
||||
@list='$(check_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libgtest.la: $(libgtest_la_OBJECTS) $(libgtest_la_DEPENDENCIES) $(EXTRA_libgtest_la_DEPENDENCIES)
|
||||
$(libgtest_la_LINK) $(libgtest_la_OBJECTS) $(libgtest_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
include ./$(DEPDIR)/libgtest_la-gtest-all.Plo
|
||||
|
||||
.cpp.o:
|
||||
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
# source='$<' object='$@' libtool=no \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
# source='$<' object='$@' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libgtest_la-gtest-all.lo: gtest-all.cpp
|
||||
$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgtest_la_CXXFLAGS) $(CXXFLAGS) -MT libgtest_la-gtest-all.lo -MD -MP -MF $(DEPDIR)/libgtest_la-gtest-all.Tpo -c -o libgtest_la-gtest-all.lo `test -f 'gtest-all.cpp' || echo '$(srcdir)/'`gtest-all.cpp
|
||||
$(am__mv) $(DEPDIR)/libgtest_la-gtest-all.Tpo $(DEPDIR)/libgtest_la-gtest-all.Plo
|
||||
# source='gtest-all.cpp' object='libgtest_la-gtest-all.lo' libtool=yes \
|
||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
||||
# $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgtest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgtest_la-gtest-all.lo `test -f 'gtest-all.cpp' || echo '$(srcdir)/'`gtest-all.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES)
|
||||
check: check-am
|
||||
all-am: Makefile
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-checkLTLIBRARIES clean-generic clean-libtool \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: check-am install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean \
|
||||
clean-checkLTLIBRARIES clean-generic clean-libtool ctags \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
install-exec-am install-html install-html-am install-info \
|
||||
install-info-am install-man install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,5 +0,0 @@
|
|||
check_LTLIBRARIES = libgtest.la
|
||||
libgtest_la_SOURCES = gtest-all.cpp gtest.h
|
||||
libgtest_la_LIBADD = -lpthread
|
||||
libgtest_la_CXXFLAGS = -fno-rtti -fno-exceptions -DGTEST_HAS_RTTI=0 -DGTEST_HAS_EXCEPTIONS=0
|
||||
EXTRA_DIST = README.audiofile
|
|
@ -1,536 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
|
||||
# Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
VPATH = @srcdir@
|
||||
am__make_dryrun = \
|
||||
{ \
|
||||
am__dry=no; \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
||||
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
||||
*) \
|
||||
for am__flg in $$MAKEFLAGS; do \
|
||||
case $$am__flg in \
|
||||
*=*|--*) ;; \
|
||||
*n*) am__dry=yes; break;; \
|
||||
esac; \
|
||||
done;; \
|
||||
esac; \
|
||||
test $$am__dry = yes; \
|
||||
}
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
subdir = gtest
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
libgtest_la_DEPENDENCIES =
|
||||
am_libgtest_la_OBJECTS = libgtest_la-gtest-all.lo
|
||||
libgtest_la_OBJECTS = $(am_libgtest_la_OBJECTS)
|
||||
libgtest_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(libgtest_la_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libgtest_la_SOURCES)
|
||||
DIST_SOURCES = $(libgtest_la_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
A2X = @A2X@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASCIIDOC = @ASCIIDOC@
|
||||
AUDIOFILE_VERSION = @AUDIOFILE_VERSION@
|
||||
AUDIOFILE_VERSION_INFO = @AUDIOFILE_VERSION_INFO@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
|
||||
COVERAGE_LIBS = @COVERAGE_LIBS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLAC_CFLAGS = @FLAC_CFLAGS@
|
||||
FLAC_LIBS = @FLAC_LIBS@
|
||||
GENHTML = @GENHTML@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LCOV = @LCOV@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MANIFEST_TOOL = @MANIFEST_TOOL@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
||||
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TEST_BIN = @TEST_BIN@
|
||||
VALGRIND = @VALGRIND@
|
||||
VERSION = @VERSION@
|
||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
check_LTLIBRARIES = libgtest.la
|
||||
libgtest_la_SOURCES = gtest-all.cpp gtest.h
|
||||
libgtest_la_LIBADD = -lpthread
|
||||
libgtest_la_CXXFLAGS = -fno-rtti -fno-exceptions -DGTEST_HAS_RTTI=0 -DGTEST_HAS_EXCEPTIONS=0
|
||||
EXTRA_DIST = README.audiofile
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gtest/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu gtest/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
clean-checkLTLIBRARIES:
|
||||
-test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
|
||||
@list='$(check_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libgtest.la: $(libgtest_la_OBJECTS) $(libgtest_la_DEPENDENCIES) $(EXTRA_libgtest_la_DEPENDENCIES)
|
||||
$(libgtest_la_LINK) $(libgtest_la_OBJECTS) $(libgtest_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgtest_la-gtest-all.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libgtest_la-gtest-all.lo: gtest-all.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgtest_la_CXXFLAGS) $(CXXFLAGS) -MT libgtest_la-gtest-all.lo -MD -MP -MF $(DEPDIR)/libgtest_la-gtest-all.Tpo -c -o libgtest_la-gtest-all.lo `test -f 'gtest-all.cpp' || echo '$(srcdir)/'`gtest-all.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libgtest_la-gtest-all.Tpo $(DEPDIR)/libgtest_la-gtest-all.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='gtest-all.cpp' object='libgtest_la-gtest-all.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgtest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgtest_la-gtest-all.lo `test -f 'gtest-all.cpp' || echo '$(srcdir)/'`gtest-all.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES)
|
||||
check: check-am
|
||||
all-am: Makefile
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-checkLTLIBRARIES clean-generic clean-libtool \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: check-am install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean \
|
||||
clean-checkLTLIBRARIES clean-generic clean-libtool ctags \
|
||||
distclean distclean-compile distclean-generic \
|
||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
||||
html-am info info-am install install-am install-data \
|
||||
install-data-am install-dvi install-dvi-am install-exec \
|
||||
install-exec-am install-html install-html-am install-info \
|
||||
install-info-am install-man install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
|
@ -1,4 +0,0 @@
|
|||
This directory contains Google Test version 1.6.0. The fused-source
|
||||
implementation is used here for simplicity and compactness.
|
||||
|
||||
http://code.google.com/p/googletest/
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,527 +0,0 @@
|
|||
#!/bin/sh
|
||||
# install - install a program, script, or datafile
|
||||
|
||||
scriptversion=2011-01-19.21; # UTC
|
||||
|
||||
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||
# following copyright and license.
|
||||
#
|
||||
# Copyright (C) 1994 X Consortium
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# Except as contained in this notice, the name of the X Consortium shall not
|
||||
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||
# ings in this Software without prior written authorization from the X Consor-
|
||||
# tium.
|
||||
#
|
||||
#
|
||||
# FSF changes to this file are in the public domain.
|
||||
#
|
||||
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||
# `make' implicit rules from creating a file called install from it
|
||||
# when there is no Makefile.
|
||||
#
|
||||
# This script is compatible with the BSD install script, but was written
|
||||
# from scratch.
|
||||
|
||||
nl='
|
||||
'
|
||||
IFS=" "" $nl"
|
||||
|
||||
# set DOITPROG to echo to test this script
|
||||
|
||||
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||
doit=${DOITPROG-}
|
||||
if test -z "$doit"; then
|
||||
doit_exec=exec
|
||||
else
|
||||
doit_exec=$doit
|
||||
fi
|
||||
|
||||
# Put in absolute file names if you don't have them in your path;
|
||||
# or use environment vars.
|
||||
|
||||
chgrpprog=${CHGRPPROG-chgrp}
|
||||
chmodprog=${CHMODPROG-chmod}
|
||||
chownprog=${CHOWNPROG-chown}
|
||||
cmpprog=${CMPPROG-cmp}
|
||||
cpprog=${CPPROG-cp}
|
||||
mkdirprog=${MKDIRPROG-mkdir}
|
||||
mvprog=${MVPROG-mv}
|
||||
rmprog=${RMPROG-rm}
|
||||
stripprog=${STRIPPROG-strip}
|
||||
|
||||
posix_glob='?'
|
||||
initialize_posix_glob='
|
||||
test "$posix_glob" != "?" || {
|
||||
if (set -f) 2>/dev/null; then
|
||||
posix_glob=
|
||||
else
|
||||
posix_glob=:
|
||||
fi
|
||||
}
|
||||
'
|
||||
|
||||
posix_mkdir=
|
||||
|
||||
# Desired mode of installed file.
|
||||
mode=0755
|
||||
|
||||
chgrpcmd=
|
||||
chmodcmd=$chmodprog
|
||||
chowncmd=
|
||||
mvcmd=$mvprog
|
||||
rmcmd="$rmprog -f"
|
||||
stripcmd=
|
||||
|
||||
src=
|
||||
dst=
|
||||
dir_arg=
|
||||
dst_arg=
|
||||
|
||||
copy_on_change=false
|
||||
no_target_directory=
|
||||
|
||||
usage="\
|
||||
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||
or: $0 [OPTION]... -d DIRECTORIES...
|
||||
|
||||
In the 1st form, copy SRCFILE to DSTFILE.
|
||||
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||
In the 4th, create DIRECTORIES.
|
||||
|
||||
Options:
|
||||
--help display this help and exit.
|
||||
--version display version info and exit.
|
||||
|
||||
-c (ignored)
|
||||
-C install only if different (preserve the last data modification time)
|
||||
-d create directories instead of installing files.
|
||||
-g GROUP $chgrpprog installed files to GROUP.
|
||||
-m MODE $chmodprog installed files to MODE.
|
||||
-o USER $chownprog installed files to USER.
|
||||
-s $stripprog installed files.
|
||||
-t DIRECTORY install into DIRECTORY.
|
||||
-T report an error if DSTFILE is a directory.
|
||||
|
||||
Environment variables override the default commands:
|
||||
CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
|
||||
RMPROG STRIPPROG
|
||||
"
|
||||
|
||||
while test $# -ne 0; do
|
||||
case $1 in
|
||||
-c) ;;
|
||||
|
||||
-C) copy_on_change=true;;
|
||||
|
||||
-d) dir_arg=true;;
|
||||
|
||||
-g) chgrpcmd="$chgrpprog $2"
|
||||
shift;;
|
||||
|
||||
--help) echo "$usage"; exit $?;;
|
||||
|
||||
-m) mode=$2
|
||||
case $mode in
|
||||
*' '* | *' '* | *'
|
||||
'* | *'*'* | *'?'* | *'['*)
|
||||
echo "$0: invalid mode: $mode" >&2
|
||||
exit 1;;
|
||||
esac
|
||||
shift;;
|
||||
|
||||
-o) chowncmd="$chownprog $2"
|
||||
shift;;
|
||||
|
||||
-s) stripcmd=$stripprog;;
|
||||
|
||||
-t) dst_arg=$2
|
||||
# Protect names problematic for `test' and other utilities.
|
||||
case $dst_arg in
|
||||
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||
esac
|
||||
shift;;
|
||||
|
||||
-T) no_target_directory=true;;
|
||||
|
||||
--version) echo "$0 $scriptversion"; exit $?;;
|
||||
|
||||
--) shift
|
||||
break;;
|
||||
|
||||
-*) echo "$0: invalid option: $1" >&2
|
||||
exit 1;;
|
||||
|
||||
*) break;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
|
||||
# When -d is used, all remaining arguments are directories to create.
|
||||
# When -t is used, the destination is already specified.
|
||||
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||
for arg
|
||||
do
|
||||
if test -n "$dst_arg"; then
|
||||
# $@ is not empty: it contains at least $arg.
|
||||
set fnord "$@" "$dst_arg"
|
||||
shift # fnord
|
||||
fi
|
||||
shift # arg
|
||||
dst_arg=$arg
|
||||
# Protect names problematic for `test' and other utilities.
|
||||
case $dst_arg in
|
||||
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
if test $# -eq 0; then
|
||||
if test -z "$dir_arg"; then
|
||||
echo "$0: no input file specified." >&2
|
||||
exit 1
|
||||
fi
|
||||
# It's OK to call `install-sh -d' without argument.
|
||||
# This can happen when creating conditional directories.
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if test -z "$dir_arg"; then
|
||||
do_exit='(exit $ret); exit $ret'
|
||||
trap "ret=129; $do_exit" 1
|
||||
trap "ret=130; $do_exit" 2
|
||||
trap "ret=141; $do_exit" 13
|
||||
trap "ret=143; $do_exit" 15
|
||||
|
||||
# Set umask so as not to create temps with too-generous modes.
|
||||
# However, 'strip' requires both read and write access to temps.
|
||||
case $mode in
|
||||
# Optimize common cases.
|
||||
*644) cp_umask=133;;
|
||||
*755) cp_umask=22;;
|
||||
|
||||
*[0-7])
|
||||
if test -z "$stripcmd"; then
|
||||
u_plus_rw=
|
||||
else
|
||||
u_plus_rw='% 200'
|
||||
fi
|
||||
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
|
||||
*)
|
||||
if test -z "$stripcmd"; then
|
||||
u_plus_rw=
|
||||
else
|
||||
u_plus_rw=,u+rw
|
||||
fi
|
||||
cp_umask=$mode$u_plus_rw;;
|
||||
esac
|
||||
fi
|
||||
|
||||
for src
|
||||
do
|
||||
# Protect names problematic for `test' and other utilities.
|
||||
case $src in
|
||||
-* | [=\(\)!]) src=./$src;;
|
||||
esac
|
||||
|
||||
if test -n "$dir_arg"; then
|
||||
dst=$src
|
||||
dstdir=$dst
|
||||
test -d "$dstdir"
|
||||
dstdir_status=$?
|
||||
else
|
||||
|
||||
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||
# might cause directories to be created, which would be especially bad
|
||||
# if $src (and thus $dsttmp) contains '*'.
|
||||
if test ! -f "$src" && test ! -d "$src"; then
|
||||
echo "$0: $src does not exist." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test -z "$dst_arg"; then
|
||||
echo "$0: no destination specified." >&2
|
||||
exit 1
|
||||
fi
|
||||
dst=$dst_arg
|
||||
|
||||
# If destination is a directory, append the input filename; won't work
|
||||
# if double slashes aren't ignored.
|
||||
if test -d "$dst"; then
|
||||
if test -n "$no_target_directory"; then
|
||||
echo "$0: $dst_arg: Is a directory" >&2
|
||||
exit 1
|
||||
fi
|
||||
dstdir=$dst
|
||||
dst=$dstdir/`basename "$src"`
|
||||
dstdir_status=0
|
||||
else
|
||||
# Prefer dirname, but fall back on a substitute if dirname fails.
|
||||
dstdir=`
|
||||
(dirname "$dst") 2>/dev/null ||
|
||||
expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||
X"$dst" : 'X\(//\)[^/]' \| \
|
||||
X"$dst" : 'X\(//\)$' \| \
|
||||
X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
|
||||
echo X"$dst" |
|
||||
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
||||
s//\1/
|
||||
q
|
||||
}
|
||||
/^X\(\/\/\)[^/].*/{
|
||||
s//\1/
|
||||
q
|
||||
}
|
||||
/^X\(\/\/\)$/{
|
||||
s//\1/
|
||||
q
|
||||
}
|
||||
/^X\(\/\).*/{
|
||||
s//\1/
|
||||
q
|
||||
}
|
||||
s/.*/./; q'
|
||||
`
|
||||
|
||||
test -d "$dstdir"
|
||||
dstdir_status=$?
|
||||
fi
|
||||
fi
|
||||
|
||||
obsolete_mkdir_used=false
|
||||
|
||||
if test $dstdir_status != 0; then
|
||||
case $posix_mkdir in
|
||||
'')
|
||||
# Create intermediate dirs using mode 755 as modified by the umask.
|
||||
# This is like FreeBSD 'install' as of 1997-10-28.
|
||||
umask=`umask`
|
||||
case $stripcmd.$umask in
|
||||
# Optimize common cases.
|
||||
*[2367][2367]) mkdir_umask=$umask;;
|
||||
.*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
|
||||
|
||||
*[0-7])
|
||||
mkdir_umask=`expr $umask + 22 \
|
||||
- $umask % 100 % 40 + $umask % 20 \
|
||||
- $umask % 10 % 4 + $umask % 2
|
||||
`;;
|
||||
*) mkdir_umask=$umask,go-w;;
|
||||
esac
|
||||
|
||||
# With -d, create the new directory with the user-specified mode.
|
||||
# Otherwise, rely on $mkdir_umask.
|
||||
if test -n "$dir_arg"; then
|
||||
mkdir_mode=-m$mode
|
||||
else
|
||||
mkdir_mode=
|
||||
fi
|
||||
|
||||
posix_mkdir=false
|
||||
case $umask in
|
||||
*[123567][0-7][0-7])
|
||||
# POSIX mkdir -p sets u+wx bits regardless of umask, which
|
||||
# is incompatible with FreeBSD 'install' when (umask & 300) != 0.
|
||||
;;
|
||||
*)
|
||||
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
||||
trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
|
||||
|
||||
if (umask $mkdir_umask &&
|
||||
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
|
||||
then
|
||||
if test -z "$dir_arg" || {
|
||||
# Check for POSIX incompatibilities with -m.
|
||||
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
|
||||
# other-writeable bit of parent directory when it shouldn't.
|
||||
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
|
||||
ls_ld_tmpdir=`ls -ld "$tmpdir"`
|
||||
case $ls_ld_tmpdir in
|
||||
d????-?r-*) different_mode=700;;
|
||||
d????-?--*) different_mode=755;;
|
||||
*) false;;
|
||||
esac &&
|
||||
$mkdirprog -m$different_mode -p -- "$tmpdir" && {
|
||||
ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
|
||||
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
|
||||
}
|
||||
}
|
||||
then posix_mkdir=:
|
||||
fi
|
||||
rmdir "$tmpdir/d" "$tmpdir"
|
||||
else
|
||||
# Remove any dirs left behind by ancient mkdir implementations.
|
||||
rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
|
||||
fi
|
||||
trap '' 0;;
|
||||
esac;;
|
||||
esac
|
||||
|
||||
if
|
||||
$posix_mkdir && (
|
||||
umask $mkdir_umask &&
|
||||
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
|
||||
)
|
||||
then :
|
||||
else
|
||||
|
||||
# The umask is ridiculous, or mkdir does not conform to POSIX,
|
||||
# or it failed possibly due to a race condition. Create the
|
||||
# directory the slow way, step by step, checking for races as we go.
|
||||
|
||||
case $dstdir in
|
||||
/*) prefix='/';;
|
||||
[-=\(\)!]*) prefix='./';;
|
||||
*) prefix='';;
|
||||
esac
|
||||
|
||||
eval "$initialize_posix_glob"
|
||||
|
||||
oIFS=$IFS
|
||||
IFS=/
|
||||
$posix_glob set -f
|
||||
set fnord $dstdir
|
||||
shift
|
||||
$posix_glob set +f
|
||||
IFS=$oIFS
|
||||
|
||||
prefixes=
|
||||
|
||||
for d
|
||||
do
|
||||
test X"$d" = X && continue
|
||||
|
||||
prefix=$prefix$d
|
||||
if test -d "$prefix"; then
|
||||
prefixes=
|
||||
else
|
||||
if $posix_mkdir; then
|
||||
(umask=$mkdir_umask &&
|
||||
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
|
||||
# Don't fail if two instances are running concurrently.
|
||||
test -d "$prefix" || exit 1
|
||||
else
|
||||
case $prefix in
|
||||
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||
*) qprefix=$prefix;;
|
||||
esac
|
||||
prefixes="$prefixes '$qprefix'"
|
||||
fi
|
||||
fi
|
||||
prefix=$prefix/
|
||||
done
|
||||
|
||||
if test -n "$prefixes"; then
|
||||
# Don't fail if two instances are running concurrently.
|
||||
(umask $mkdir_umask &&
|
||||
eval "\$doit_exec \$mkdirprog $prefixes") ||
|
||||
test -d "$dstdir" || exit 1
|
||||
obsolete_mkdir_used=true
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$dir_arg"; then
|
||||
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
|
||||
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
|
||||
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
|
||||
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
|
||||
else
|
||||
|
||||
# Make a couple of temp file names in the proper directory.
|
||||
dsttmp=$dstdir/_inst.$$_
|
||||
rmtmp=$dstdir/_rm.$$_
|
||||
|
||||
# Trap to clean up those temp files at exit.
|
||||
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||
|
||||
# Copy the file name to the temp name.
|
||||
(umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
|
||||
|
||||
# and set any options; do chmod last to preserve setuid bits.
|
||||
#
|
||||
# If any of these fail, we abort the whole thing. If we want to
|
||||
# ignore errors from any of these, just make sure not to ignore
|
||||
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||
#
|
||||
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
|
||||
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
|
||||
{ test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
|
||||
{ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
|
||||
|
||||
# If -C, don't bother to copy if it wouldn't change the file.
|
||||
if $copy_on_change &&
|
||||
old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
|
||||
new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
|
||||
|
||||
eval "$initialize_posix_glob" &&
|
||||
$posix_glob set -f &&
|
||||
set X $old && old=:$2:$4:$5:$6 &&
|
||||
set X $new && new=:$2:$4:$5:$6 &&
|
||||
$posix_glob set +f &&
|
||||
|
||||
test "$old" = "$new" &&
|
||||
$cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
|
||||
then
|
||||
rm -f "$dsttmp"
|
||||
else
|
||||
# Rename the file to the real destination.
|
||||
$doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
|
||||
|
||||
# The rename failed, perhaps because mv can't rename something else
|
||||
# to itself, or perhaps because mv is so ancient that it does not
|
||||
# support -f.
|
||||
{
|
||||
# Now remove or move aside any old file at destination location.
|
||||
# We try this two ways since rm can't unlink itself on some
|
||||
# systems and the destination file might be busy for other
|
||||
# reasons. In this case, the final cleanup might fail but the new
|
||||
# file should still install successfully.
|
||||
{
|
||||
test ! -f "$dst" ||
|
||||
$doit $rmcmd -f "$dst" 2>/dev/null ||
|
||||
{ $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
|
||||
{ $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
|
||||
} ||
|
||||
{ echo "$0: cannot unlink or rename $dst" >&2
|
||||
(exit 1); exit 1
|
||||
}
|
||||
} &&
|
||||
|
||||
# Now rename the file to the real destination.
|
||||
$doit $mvcmd "$dsttmp" "$dst"
|
||||
}
|
||||
fi || exit 1
|
||||
|
||||
trap '' 0
|
||||
fi
|
||||
done
|
||||
|
||||
# Local variables:
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
|
@ -1,248 +0,0 @@
|
|||
AIFF.lo: AIFF.cpp ../config.h AIFF.h Compiler.h FileHandle.h afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
File.h Shared.h Instrument.h aupvlist.h Marker.h Setup.h Tag.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
Track.h AudioFormat.h byteorder.h extended.h util.h
|
||||
../config.h:
|
||||
AIFF.h:
|
||||
Compiler.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Instrument.h:
|
||||
aupvlist.h:
|
||||
Marker.h:
|
||||
Setup.h:
|
||||
Tag.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
byteorder.h:
|
||||
extended.h:
|
||||
util.h:
|
|
@ -1,244 +0,0 @@
|
|||
AVR.lo: AVR.cpp ../config.h AVR.h Compiler.h FileHandle.h afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
File.h Shared.h Setup.h Track.h AudioFormat.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
byteorder.h util.h
|
||||
../config.h:
|
||||
AVR.h:
|
||||
Compiler.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Setup.h:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
byteorder.h:
|
||||
util.h:
|
|
@ -1,234 +0,0 @@
|
|||
AudioFormat.lo: AudioFormat.cpp ../config.h AudioFormat.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
afinternal.h audiofile.h aupvlist.h error.h byteorder.h compression.h \
|
||||
units.h util.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h
|
||||
../config.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
afinternal.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
error.h:
|
||||
byteorder.h:
|
||||
compression.h:
|
||||
units.h:
|
||||
util.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
|
@ -1,26 +0,0 @@
|
|||
Buffer.lo: Buffer.cpp ../config.h Buffer.h Shared.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h
|
||||
../config.h:
|
||||
Buffer.h:
|
||||
Shared.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
|
@ -1,258 +0,0 @@
|
|||
CAF.lo: CAF.cpp ../config.h CAF.h Compiler.h File.h Shared.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
FileHandle.h afinternal.h audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
Tag.h I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
Buffer.h PacketTable.h audiofile.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/vector \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_uninitialized.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_vector.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_bvector.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/vector.tcc Setup.h \
|
||||
Track.h AudioFormat.h aupvlist.h byteorder.h util.h
|
||||
../config.h:
|
||||
CAF.h:
|
||||
Compiler.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
Tag.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
Buffer.h:
|
||||
PacketTable.h:
|
||||
audiofile.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/vector:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_uninitialized.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_vector.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_bvector.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/vector.tcc:
|
||||
Setup.h:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
byteorder.h:
|
||||
util.h:
|
|
@ -1,244 +0,0 @@
|
|||
FLACFile.lo: FLACFile.cpp ../config.h FLACFile.h Compiler.h FileHandle.h \
|
||||
afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
Features.h File.h Shared.h Setup.h Track.h AudioFormat.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
byteorder.h util.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h
|
||||
../config.h:
|
||||
FLACFile.h:
|
||||
Compiler.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
Features.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Setup.h:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
byteorder.h:
|
||||
util.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
|
@ -1,93 +0,0 @@
|
|||
File.lo: File.cpp ../config.h File.h Shared.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
Compiler.h af_vfs.h audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/fcntl.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/io.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/stat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/unistd.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/getopt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h
|
||||
../config.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
Compiler.h:
|
||||
af_vfs.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/fcntl.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/io.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/stat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/unistd.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/getopt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
|
@ -1,261 +0,0 @@
|
|||
FileHandle.lo: FileHandle.cpp ../config.h FileHandle.h afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
byteorder.h I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h AIFF.h \
|
||||
Compiler.h AVR.h CAF.h File.h Shared.h Tag.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
FLACFile.h Features.h IFF.h IRCAM.h NeXT.h NIST.h Raw.h SampleVision.h \
|
||||
VOC.h WAVE.h Instrument.h aupvlist.h Setup.h Track.h AudioFormat.h \
|
||||
units.h util.h
|
||||
../config.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
byteorder.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
AIFF.h:
|
||||
Compiler.h:
|
||||
AVR.h:
|
||||
CAF.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Tag.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
FLACFile.h:
|
||||
Features.h:
|
||||
IFF.h:
|
||||
IRCAM.h:
|
||||
NeXT.h:
|
||||
NIST.h:
|
||||
Raw.h:
|
||||
SampleVision.h:
|
||||
VOC.h:
|
||||
WAVE.h:
|
||||
Instrument.h:
|
||||
aupvlist.h:
|
||||
Setup.h:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
units.h:
|
||||
util.h:
|
|
@ -1,246 +0,0 @@
|
|||
IFF.lo: IFF.cpp ../config.h IFF.h Compiler.h FileHandle.h afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
File.h Shared.h Marker.h Setup.h Tag.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
Track.h AudioFormat.h aupvlist.h byteorder.h util.h
|
||||
../config.h:
|
||||
IFF.h:
|
||||
Compiler.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Marker.h:
|
||||
Setup.h:
|
||||
Tag.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
byteorder.h:
|
||||
util.h:
|
|
@ -1,246 +0,0 @@
|
|||
IRCAM.lo: IRCAM.cpp ../config.h IRCAM.h Compiler.h FileHandle.h \
|
||||
afinternal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h \
|
||||
audiofile.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h error.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h \
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h \
|
||||
File.h Shared.h Marker.h Setup.h Track.h AudioFormat.h aupvlist.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h \
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h \
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc \
|
||||
byteorder.h util.h
|
||||
../config.h:
|
||||
IRCAM.h:
|
||||
Compiler.h:
|
||||
FileHandle.h:
|
||||
afinternal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/types.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/crtdefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_mac.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_secapi.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/vadefs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_off_t.h:
|
||||
audiofile.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdint.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include/stddef.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stddef.h:
|
||||
error.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/assert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdlib:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++config.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/os_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/cpu_defines.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdlib.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_wstdlib.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/limits.h:
|
||||
I:/Development/MSYS2/mingw64/lib/gcc/x86_64-w64-mingw32/10.1.0/include-fixed/syslimits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/limits.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdlib_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/malloc.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/std_abs.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/string.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/string_s.h:
|
||||
File.h:
|
||||
Shared.h:
|
||||
Marker.h:
|
||||
Setup.h:
|
||||
Track.h:
|
||||
AudioFormat.h:
|
||||
aupvlist.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/string:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stringfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/memoryfwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/char_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_algobase.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functexcept.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_defines.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cpp_type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/type_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/numeric_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_pair.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/move.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/type_traits:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_types.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator_base_funcs.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/concept_check.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/assertions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_iterator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ptr_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/debug/debug.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/predefined_ops.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/postypes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cwchar:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/wchar.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/_mingw_stat64.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/swprintf.inl:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/wchar_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdint:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/new_allocator.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/new:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/exception:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/exception_ptr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_init_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/typeinfo:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/hash_bytes.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/nested_exception.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/localefwd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/c++locale.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/clocale:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/locale.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/stdio.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_stdio_config.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/stdio_s.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/iosfwd:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cctype:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/ctype.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/ostream_insert.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/cxxabi_forced.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_function.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/backward/binders.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_access.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/initializer_list:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/iterator_concepts.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/concepts:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/range_cmp.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/int_limits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/atomicity.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/gthr-default.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/errno.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/process.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/corecrt_startup.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_signal.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sys/timeb.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_compat.h:
|
||||
I:/Development/MSYS2/mingw64/x86_64-w64-mingw32/include/pthread_unistd.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/x86_64-w64-mingw32/bits/atomic_word.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/alloc_traits.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/stl_construct.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/ext/string_conversions.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cstdio:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/cerrno:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/charconv.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/functional_hash.h:
|
||||
I:/Development/MSYS2/mingw64/include/c++/10.1.0/bits/basic_string.tcc:
|
||||
byteorder.h:
|
||||
util.h:
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue