Commit 472c33eceac13ac0a3042a94aaa3a86498184580
1 parent
0c566197
add content
Showing
96 changed files
with
52850 additions
and
0 deletions
Too many changes to show.
To preserve performance only 8 of 96 files are displayed.
LICENSE.txt
0 → 100644
| 1 | +SIPp as a whole is licensed under the GNU General Public License, version 2 or any later version (copy below). | |
| 2 | + | |
| 3 | +send_packets.c, send_packets.h, md5.c and md5.h have separate copyright | |
| 4 | +licenses, which apply only to those files. | |
| 5 | + | |
| 6 | +The following license applies to send_packets.c and send_packets.h only: | |
| 7 | + | |
| 8 | + * Copyright (c) 2001-2004 Aaron Turner. | |
| 9 | + * All rights reserved. | |
| 10 | + * | |
| 11 | + * Redistribution and use in source and binary forms, with or without | |
| 12 | + * modification, are permitted provided that the following conditions | |
| 13 | + * are met: | |
| 14 | + * | |
| 15 | + * 1. Redistributions of source code must retain the above copyright | |
| 16 | + * notice, this list of conditions and the following disclaimer. | |
| 17 | + * 2. Redistributions in binary form must reproduce the above copyright | |
| 18 | + * notice, this list of conditions and the following disclaimer in the | |
| 19 | + * documentation and/or other materials provided with the distribution. | |
| 20 | + * 3. Neither the names of the copyright owners nor the names of its | |
| 21 | + * contributors may be used to endorse or promote products derived from | |
| 22 | + * this software without specific prior written permission. | |
| 23 | + * | |
| 24 | + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| 25 | + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
| 26 | + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | |
| 27 | + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | |
| 28 | + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 29 | + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE | |
| 30 | + * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 31 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER | |
| 32 | + * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
| 33 | + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| 34 | + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 35 | + | |
| 36 | +The following license applies to md5.c and md5.h only: | |
| 37 | + | |
| 38 | +/* | |
| 39 | + Copyright (C) 1999, 2000, 2002 Aladdin Enterprises. All rights reserved. | |
| 40 | + | |
| 41 | + This software is provided 'as-is', without any express or implied | |
| 42 | + warranty. In no event will the authors be held liable for any damages | |
| 43 | + arising from the use of this software. | |
| 44 | + | |
| 45 | + Permission is granted to anyone to use this software for any purpose, | |
| 46 | + including commercial applications, and to alter it and redistribute it | |
| 47 | + freely, subject to the following restrictions: | |
| 48 | + | |
| 49 | + 1. The origin of this software must not be misrepresented; you must not | |
| 50 | + claim that you wrote the original software. If you use this software | |
| 51 | + in a product, an acknowledgment in the product documentation would be | |
| 52 | + appreciated but is not required. | |
| 53 | + 2. Altered source versions must be plainly marked as such, and must not be | |
| 54 | + misrepresented as being the original software. | |
| 55 | + 3. This notice may not be removed or altered from any source distribution. | |
| 56 | + | |
| 57 | + L. Peter Deutsch | |
| 58 | + ghost@aladdin.com | |
| 59 | + | |
| 60 | + */ | |
| 61 | + | |
| 62 | +All other parts of SIPp are under the following license (or, at your option, any later version of the GNU GPL): | |
| 63 | + | |
| 64 | + GNU GENERAL PUBLIC LICENSE | |
| 65 | + Version 2, June 1991 | |
| 66 | + | |
| 67 | + Copyright (C) 1989, 1991 Free Software Foundation, Inc. | |
| 68 | + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 69 | + Everyone is permitted to copy and distribute verbatim copies | |
| 70 | + of this license document, but changing it is not allowed. | |
| 71 | + | |
| 72 | + Preamble | |
| 73 | + | |
| 74 | + The licenses for most software are designed to take away your | |
| 75 | +freedom to share and change it. By contrast, the GNU General Public | |
| 76 | +License is intended to guarantee your freedom to share and change free | |
| 77 | +software--to make sure the software is free for all its users. This | |
| 78 | +General Public License applies to most of the Free Software | |
| 79 | +Foundation's software and to any other program whose authors commit to | |
| 80 | +using it. (Some other Free Software Foundation software is covered by | |
| 81 | +the GNU Library General Public License instead.) You can apply it to | |
| 82 | +your programs, too. | |
| 83 | + | |
| 84 | + When we speak of free software, we are referring to freedom, not | |
| 85 | +price. Our General Public Licenses are designed to make sure that you | |
| 86 | +have the freedom to distribute copies of free software (and charge for | |
| 87 | +this service if you wish), that you receive source code or can get it | |
| 88 | +if you want it, that you can change the software or use pieces of it | |
| 89 | +in new free programs; and that you know you can do these things. | |
| 90 | + | |
| 91 | + To protect your rights, we need to make restrictions that forbid | |
| 92 | +anyone to deny you these rights or to ask you to surrender the rights. | |
| 93 | +These restrictions translate to certain responsibilities for you if you | |
| 94 | +distribute copies of the software, or if you modify it. | |
| 95 | + | |
| 96 | + For example, if you distribute copies of such a program, whether | |
| 97 | +gratis or for a fee, you must give the recipients all the rights that | |
| 98 | +you have. You must make sure that they, too, receive or can get the | |
| 99 | +source code. And you must show them these terms so they know their | |
| 100 | +rights. | |
| 101 | + | |
| 102 | + We protect your rights with two steps: (1) copyright the software, and | |
| 103 | +(2) offer you this license which gives you legal permission to copy, | |
| 104 | +distribute and/or modify the software. | |
| 105 | + | |
| 106 | + Also, for each author's protection and ours, we want to make certain | |
| 107 | +that everyone understands that there is no warranty for this free | |
| 108 | +software. If the software is modified by someone else and passed on, we | |
| 109 | +want its recipients to know that what they have is not the original, so | |
| 110 | +that any problems introduced by others will not reflect on the original | |
| 111 | +authors' reputations. | |
| 112 | + | |
| 113 | + Finally, any free program is threatened constantly by software | |
| 114 | +patents. We wish to avoid the danger that redistributors of a free | |
| 115 | +program will individually obtain patent licenses, in effect making the | |
| 116 | +program proprietary. To prevent this, we have made it clear that any | |
| 117 | +patent must be licensed for everyone's free use or not licensed at all. | |
| 118 | + | |
| 119 | + The precise terms and conditions for copying, distribution and | |
| 120 | +modification follow. | |
| 121 | + | |
| 122 | + GNU GENERAL PUBLIC LICENSE | |
| 123 | + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |
| 124 | + | |
| 125 | + 0. This License applies to any program or other work which contains | |
| 126 | +a notice placed by the copyright holder saying it may be distributed | |
| 127 | +under the terms of this General Public License. The "Program", below, | |
| 128 | +refers to any such program or work, and a "work based on the Program" | |
| 129 | +means either the Program or any derivative work under copyright law: | |
| 130 | +that is to say, a work containing the Program or a portion of it, | |
| 131 | +either verbatim or with modifications and/or translated into another | |
| 132 | +language. (Hereinafter, translation is included without limitation in | |
| 133 | +the term "modification".) Each licensee is addressed as "you". | |
| 134 | + | |
| 135 | +Activities other than copying, distribution and modification are not | |
| 136 | +covered by this License; they are outside its scope. The act of | |
| 137 | +running the Program is not restricted, and the output from the Program | |
| 138 | +is covered only if its contents constitute a work based on the | |
| 139 | +Program (independent of having been made by running the Program). | |
| 140 | +Whether that is true depends on what the Program does. | |
| 141 | + | |
| 142 | + 1. You may copy and distribute verbatim copies of the Program's | |
| 143 | +source code as you receive it, in any medium, provided that you | |
| 144 | +conspicuously and appropriately publish on each copy an appropriate | |
| 145 | +copyright notice and disclaimer of warranty; keep intact all the | |
| 146 | +notices that refer to this License and to the absence of any warranty; | |
| 147 | +and give any other recipients of the Program a copy of this License | |
| 148 | +along with the Program. | |
| 149 | + | |
| 150 | +You may charge a fee for the physical act of transferring a copy, and | |
| 151 | +you may at your option offer warranty protection in exchange for a fee. | |
| 152 | + | |
| 153 | + 2. You may modify your copy or copies of the Program or any portion | |
| 154 | +of it, thus forming a work based on the Program, and copy and | |
| 155 | +distribute such modifications or work under the terms of Section 1 | |
| 156 | +above, provided that you also meet all of these conditions: | |
| 157 | + | |
| 158 | + a) You must cause the modified files to carry prominent notices | |
| 159 | + stating that you changed the files and the date of any change. | |
| 160 | + | |
| 161 | + b) You must cause any work that you distribute or publish, that in | |
| 162 | + whole or in part contains or is derived from the Program or any | |
| 163 | + part thereof, to be licensed as a whole at no charge to all third | |
| 164 | + parties under the terms of this License. | |
| 165 | + | |
| 166 | + c) If the modified program normally reads commands interactively | |
| 167 | + when run, you must cause it, when started running for such | |
| 168 | + interactive use in the most ordinary way, to print or display an | |
| 169 | + announcement including an appropriate copyright notice and a | |
| 170 | + notice that there is no warranty (or else, saying that you provide | |
| 171 | + a warranty) and that users may redistribute the program under | |
| 172 | + these conditions, and telling the user how to view a copy of this | |
| 173 | + License. (Exception: if the Program itself is interactive but | |
| 174 | + does not normally print such an announcement, your work based on | |
| 175 | + the Program is not required to print an announcement.) | |
| 176 | + | |
| 177 | +These requirements apply to the modified work as a whole. If | |
| 178 | +identifiable sections of that work are not derived from the Program, | |
| 179 | +and can be reasonably considered independent and separate works in | |
| 180 | +themselves, then this License, and its terms, do not apply to those | |
| 181 | +sections when you distribute them as separate works. But when you | |
| 182 | +distribute the same sections as part of a whole which is a work based | |
| 183 | +on the Program, the distribution of the whole must be on the terms of | |
| 184 | +this License, whose permissions for other licensees extend to the | |
| 185 | +entire whole, and thus to each and every part regardless of who wrote it. | |
| 186 | + | |
| 187 | +Thus, it is not the intent of this section to claim rights or contest | |
| 188 | +your rights to work written entirely by you; rather, the intent is to | |
| 189 | +exercise the right to control the distribution of derivative or | |
| 190 | +collective works based on the Program. | |
| 191 | + | |
| 192 | +In addition, mere aggregation of another work not based on the Program | |
| 193 | +with the Program (or with a work based on the Program) on a volume of | |
| 194 | +a storage or distribution medium does not bring the other work under | |
| 195 | +the scope of this License. | |
| 196 | + | |
| 197 | + 3. You may copy and distribute the Program (or a work based on it, | |
| 198 | +under Section 2) in object code or executable form under the terms of | |
| 199 | +Sections 1 and 2 above provided that you also do one of the following: | |
| 200 | + | |
| 201 | + a) Accompany it with the complete corresponding machine-readable | |
| 202 | + source code, which must be distributed under the terms of Sections | |
| 203 | + 1 and 2 above on a medium customarily used for software interchange; or, | |
| 204 | + | |
| 205 | + b) Accompany it with a written offer, valid for at least three | |
| 206 | + years, to give any third party, for a charge no more than your | |
| 207 | + cost of physically performing source distribution, a complete | |
| 208 | + machine-readable copy of the corresponding source code, to be | |
| 209 | + distributed under the terms of Sections 1 and 2 above on a medium | |
| 210 | + customarily used for software interchange; or, | |
| 211 | + | |
| 212 | + c) Accompany it with the information you received as to the offer | |
| 213 | + to distribute corresponding source code. (This alternative is | |
| 214 | + allowed only for noncommercial distribution and only if you | |
| 215 | + received the program in object code or executable form with such | |
| 216 | + an offer, in accord with Subsection b above.) | |
| 217 | + | |
| 218 | +The source code for a work means the preferred form of the work for | |
| 219 | +making modifications to it. For an executable work, complete source | |
| 220 | +code means all the source code for all modules it contains, plus any | |
| 221 | +associated interface definition files, plus the scripts used to | |
| 222 | +control compilation and installation of the executable. However, as a | |
| 223 | +special exception, the source code distributed need not include | |
| 224 | +anything that is normally distributed (in either source or binary | |
| 225 | +form) with the major components (compiler, kernel, and so on) of the | |
| 226 | +operating system on which the executable runs, unless that component | |
| 227 | +itself accompanies the executable. | |
| 228 | + | |
| 229 | +If distribution of executable or object code is made by offering | |
| 230 | +access to copy from a designated place, then offering equivalent | |
| 231 | +access to copy the source code from the same place counts as | |
| 232 | +distribution of the source code, even though third parties are not | |
| 233 | +compelled to copy the source along with the object code. | |
| 234 | + | |
| 235 | + 4. You may not copy, modify, sublicense, or distribute the Program | |
| 236 | +except as expressly provided under this License. Any attempt | |
| 237 | +otherwise to copy, modify, sublicense or distribute the Program is | |
| 238 | +void, and will automatically terminate your rights under this License. | |
| 239 | +However, parties who have received copies, or rights, from you under | |
| 240 | +this License will not have their licenses terminated so long as such | |
| 241 | +parties remain in full compliance. | |
| 242 | + | |
| 243 | + 5. You are not required to accept this License, since you have not | |
| 244 | +signed it. However, nothing else grants you permission to modify or | |
| 245 | +distribute the Program or its derivative works. These actions are | |
| 246 | +prohibited by law if you do not accept this License. Therefore, by | |
| 247 | +modifying or distributing the Program (or any work based on the | |
| 248 | +Program), you indicate your acceptance of this License to do so, and | |
| 249 | +all its terms and conditions for copying, distributing or modifying | |
| 250 | +the Program or works based on it. | |
| 251 | + | |
| 252 | + 6. Each time you redistribute the Program (or any work based on the | |
| 253 | +Program), the recipient automatically receives a license from the | |
| 254 | +original licensor to copy, distribute or modify the Program subject to | |
| 255 | +these terms and conditions. You may not impose any further | |
| 256 | +restrictions on the recipients' exercise of the rights granted herein. | |
| 257 | +You are not responsible for enforcing compliance by third parties to | |
| 258 | +this License. | |
| 259 | + | |
| 260 | + 7. If, as a consequence of a court judgment or allegation of patent | |
| 261 | +infringement or for any other reason (not limited to patent issues), | |
| 262 | +conditions are imposed on you (whether by court order, agreement or | |
| 263 | +otherwise) that contradict the conditions of this License, they do not | |
| 264 | +excuse you from the conditions of this License. If you cannot | |
| 265 | +distribute so as to satisfy simultaneously your obligations under this | |
| 266 | +License and any other pertinent obligations, then as a consequence you | |
| 267 | +may not distribute the Program at all. For example, if a patent | |
| 268 | +license would not permit royalty-free redistribution of the Program by | |
| 269 | +all those who receive copies directly or indirectly through you, then | |
| 270 | +the only way you could satisfy both it and this License would be to | |
| 271 | +refrain entirely from distribution of the Program. | |
| 272 | + | |
| 273 | +If any portion of this section is held invalid or unenforceable under | |
| 274 | +any particular circumstance, the balance of the section is intended to | |
| 275 | +apply and the section as a whole is intended to apply in other | |
| 276 | +circumstances. | |
| 277 | + | |
| 278 | +It is not the purpose of this section to induce you to infringe any | |
| 279 | +patents or other property right claims or to contest validity of any | |
| 280 | +such claims; this section has the sole purpose of protecting the | |
| 281 | +integrity of the free software distribution system, which is | |
| 282 | +implemented by public license practices. Many people have made | |
| 283 | +generous contributions to the wide range of software distributed | |
| 284 | +through that system in reliance on consistent application of that | |
| 285 | +system; it is up to the author/donor to decide if he or she is willing | |
| 286 | +to distribute software through any other system and a licensee cannot | |
| 287 | +impose that choice. | |
| 288 | + | |
| 289 | +This section is intended to make thoroughly clear what is believed to | |
| 290 | +be a consequence of the rest of this License. | |
| 291 | + | |
| 292 | + 8. If the distribution and/or use of the Program is restricted in | |
| 293 | +certain countries either by patents or by copyrighted interfaces, the | |
| 294 | +original copyright holder who places the Program under this License | |
| 295 | +may add an explicit geographical distribution limitation excluding | |
| 296 | +those countries, so that distribution is permitted only in or among | |
| 297 | +countries not thus excluded. In such case, this License incorporates | |
| 298 | +the limitation as if written in the body of this License. | |
| 299 | + | |
| 300 | + 9. The Free Software Foundation may publish revised and/or new versions | |
| 301 | +of the General Public License from time to time. Such new versions will | |
| 302 | +be similar in spirit to the present version, but may differ in detail to | |
| 303 | +address new problems or concerns. | |
| 304 | + | |
| 305 | +Each version is given a distinguishing version number. If the Program | |
| 306 | +specifies a version number of this License which applies to it and "any | |
| 307 | +later version", you have the option of following the terms and conditions | |
| 308 | +either of that version or of any later version published by the Free | |
| 309 | +Software Foundation. If the Program does not specify a version number of | |
| 310 | +this License, you may choose any version ever published by the Free Software | |
| 311 | +Foundation. | |
| 312 | + | |
| 313 | + 10. If you wish to incorporate parts of the Program into other free | |
| 314 | +programs whose distribution conditions are different, write to the author | |
| 315 | +to ask for permission. For software which is copyrighted by the Free | |
| 316 | +Software Foundation, write to the Free Software Foundation; we sometimes | |
| 317 | +make exceptions for this. Our decision will be guided by the two goals | |
| 318 | +of preserving the free status of all derivatives of our free software and | |
| 319 | +of promoting the sharing and reuse of software generally. | |
| 320 | + | |
| 321 | + NO WARRANTY | |
| 322 | + | |
| 323 | + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY | |
| 324 | +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN | |
| 325 | +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES | |
| 326 | +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED | |
| 327 | +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
| 328 | +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS | |
| 329 | +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE | |
| 330 | +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, | |
| 331 | +REPAIR OR CORRECTION. | |
| 332 | + | |
| 333 | + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING | |
| 334 | +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR | |
| 335 | +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, | |
| 336 | +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING | |
| 337 | +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED | |
| 338 | +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY | |
| 339 | +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER | |
| 340 | +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE | |
| 341 | +POSSIBILITY OF SUCH DAMAGES. | |
| 342 | + | |
| 343 | + END OF TERMS AND CONDITIONS | ... | ... |
Makefile.am
0 → 100644
| 1 | +bin_PROGRAMS = sipp | |
| 2 | + | |
| 3 | +TESTS = sipp_unittest | |
| 4 | + | |
| 5 | +noinst_PROGRAMS = $(TESTS) | |
| 6 | + | |
| 7 | +AM_CFLAGS=-I./include | |
| 8 | +AM_CPPFLAGS=$(AM_CFLAGS) | |
| 9 | + | |
| 10 | +EXTRA_DIST = src/fortune.cpp pcap LICENSE.txt README.txt THANKS sipp.dtd sipp.1 cpplint.py auto-generate-files.sh | |
| 11 | + | |
| 12 | +if HAVE_OPENSSL | |
| 13 | +DEFS += -D_USE_OPENSSL | |
| 14 | +ssl_incl = include/sslcommon.h | |
| 15 | +ssl_SOURCES = $(ssl_incl) \ | |
| 16 | + src/sslinit.c \ | |
| 17 | + src/sslthreadsafe.c | |
| 18 | +endif | |
| 19 | + | |
| 20 | +if HAVE_PCAP | |
| 21 | +DEFS += -DPCAPPLAY | |
| 22 | +pcap_incl = include/prepare_pcap.h \ | |
| 23 | + include/send_packets.h | |
| 24 | +pcap_SOURCES = $(pcap_incl) \ | |
| 25 | + src/prepare_pcap.c \ | |
| 26 | + src/send_packets.c | |
| 27 | +endif | |
| 28 | + | |
| 29 | +if HAVE_RTP | |
| 30 | +DEFS += -DRTP_STREAM | |
| 31 | +rtp_SOURCES = src/rtpstream.cpp include/rtpstream.hpp | |
| 32 | +endif | |
| 33 | + | |
| 34 | +if HAVE_SCTP | |
| 35 | +DEFS += -DUSE_SCTP | |
| 36 | +endif | |
| 37 | + | |
| 38 | +if HAVE_GSL | |
| 39 | +DEFS += -DHAVE_GSL | |
| 40 | +endif | |
| 41 | + | |
| 42 | +if HAVE_EPOLL | |
| 43 | +DEFS += -DHAVE_EPOLL | |
| 44 | +endif | |
| 45 | + | |
| 46 | +common_incl = include/comp.h \ | |
| 47 | + include/infile.hpp \ | |
| 48 | + include/listener.hpp \ | |
| 49 | + include/logger.hpp \ | |
| 50 | + include/md5.h \ | |
| 51 | + include/message.hpp \ | |
| 52 | + include/milenage.h \ | |
| 53 | + include/opentask.hpp \ | |
| 54 | + include/reporttask.hpp \ | |
| 55 | + include/rijndael.h \ | |
| 56 | + include/scenario.hpp \ | |
| 57 | + include/sip_parser.hpp \ | |
| 58 | + include/screen.hpp \ | |
| 59 | + include/socket.hpp \ | |
| 60 | + include/socketowner.hpp \ | |
| 61 | + include/stat.hpp \ | |
| 62 | + include/strings.hpp \ | |
| 63 | + include/task.hpp \ | |
| 64 | + include/time.hpp \ | |
| 65 | + include/variables.hpp \ | |
| 66 | + include/watchdog.hpp \ | |
| 67 | + include/xp_parser.h \ | |
| 68 | + include/actions.hpp \ | |
| 69 | + include/call.hpp \ | |
| 70 | + include/deadcall.hpp | |
| 71 | + | |
| 72 | +common_SOURCES = src/actions.cpp \ | |
| 73 | + src/auth.c \ | |
| 74 | + src/comp.c \ | |
| 75 | + src/call.cpp \ | |
| 76 | + src/deadcall.cpp \ | |
| 77 | + src/infile.cpp \ | |
| 78 | + src/listener.cpp \ | |
| 79 | + src/logger.cpp \ | |
| 80 | + src/md5.c \ | |
| 81 | + src/message.cpp \ | |
| 82 | + src/milenage.c \ | |
| 83 | + src/opentask.cpp \ | |
| 84 | + src/reporttask.cpp \ | |
| 85 | + src/rijndael.c \ | |
| 86 | + src/scenario.cpp \ | |
| 87 | + src/sip_parser.cpp \ | |
| 88 | + src/screen.cpp \ | |
| 89 | + src/socket.cpp \ | |
| 90 | + src/socketowner.cpp \ | |
| 91 | + src/stat.cpp \ | |
| 92 | + src/strings.cpp \ | |
| 93 | + src/task.cpp \ | |
| 94 | + src/time.cpp \ | |
| 95 | + src/variables.cpp \ | |
| 96 | + src/watchdog.cpp \ | |
| 97 | + src/xp_parser.c \ | |
| 98 | + $(common_incl) \ | |
| 99 | + $(ssl_SOURCES) \ | |
| 100 | + $(pcap_SOURCES) \ | |
| 101 | + $(rtp_SOURCES) | |
| 102 | + | |
| 103 | +sipp_SOURCES = $(common_SOURCES) \ | |
| 104 | + src/sipp.cpp \ | |
| 105 | + include/sipp.hpp | |
| 106 | + | |
| 107 | +sipp_CFLAGS = $(AM_CFLAGS) @GSL_CFLAGS@ | |
| 108 | +sipp_CXXFLAGS = $(AM_CXXFLAGS) @GSL_CXXFLAGS@ | |
| 109 | +sipp_LDADD = @LIBOBJS@ @GSL_LIBS@ | |
| 110 | + | |
| 111 | +sipp_unittest_SOURCES = $(common_SOURCES) src/sipp_unittest.cpp | |
| 112 | + | |
| 113 | +sipp_unittest_CFLAGS = $(AM_CFLAGS) @GSL_CFLAGS@ | |
| 114 | +sipp_unittest_CXXFLAGS = $(AM_CXXFLAGS) @GSL_CXXFLAGS@ | |
| 115 | +sipp_unittest_LDADD = @LIBOBJS@ @GSL_LIBS@ | ... | ... |
Makefile.in
0 → 100644
| 1 | +# Makefile.in generated by automake 1.13.3 from Makefile.am. | |
| 2 | +# @configure_input@ | |
| 3 | + | |
| 4 | +# Copyright (C) 1994-2013 Free Software Foundation, Inc. | |
| 5 | + | |
| 6 | +# This Makefile.in is free software; the Free Software Foundation | |
| 7 | +# gives unlimited permission to copy and/or distribute it, | |
| 8 | +# with or without modifications, as long as this notice is preserved. | |
| 9 | + | |
| 10 | +# This program is distributed in the hope that it will be useful, | |
| 11 | +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without | |
| 12 | +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A | |
| 13 | +# PARTICULAR PURPOSE. | |
| 14 | + | |
| 15 | +@SET_MAKE@ | |
| 16 | + | |
| 17 | +VPATH = @srcdir@ | |
| 18 | +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' | |
| 19 | +am__make_running_with_option = \ | |
| 20 | + case $${target_option-} in \ | |
| 21 | + ?) ;; \ | |
| 22 | + *) echo "am__make_running_with_option: internal error: invalid" \ | |
| 23 | + "target option '$${target_option-}' specified" >&2; \ | |
| 24 | + exit 1;; \ | |
| 25 | + esac; \ | |
| 26 | + has_opt=no; \ | |
| 27 | + sane_makeflags=$$MAKEFLAGS; \ | |
| 28 | + if $(am__is_gnu_make); then \ | |
| 29 | + sane_makeflags=$$MFLAGS; \ | |
| 30 | + else \ | |
| 31 | + case $$MAKEFLAGS in \ | |
| 32 | + *\\[\ \ ]*) \ | |
| 33 | + bs=\\; \ | |
| 34 | + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | |
| 35 | + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ | |
| 36 | + esac; \ | |
| 37 | + fi; \ | |
| 38 | + skip_next=no; \ | |
| 39 | + strip_trailopt () \ | |
| 40 | + { \ | |
| 41 | + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ | |
| 42 | + }; \ | |
| 43 | + for flg in $$sane_makeflags; do \ | |
| 44 | + test $$skip_next = yes && { skip_next=no; continue; }; \ | |
| 45 | + case $$flg in \ | |
| 46 | + *=*|--*) continue;; \ | |
| 47 | + -*I) strip_trailopt 'I'; skip_next=yes;; \ | |
| 48 | + -*I?*) strip_trailopt 'I';; \ | |
| 49 | + -*O) strip_trailopt 'O'; skip_next=yes;; \ | |
| 50 | + -*O?*) strip_trailopt 'O';; \ | |
| 51 | + -*l) strip_trailopt 'l'; skip_next=yes;; \ | |
| 52 | + -*l?*) strip_trailopt 'l';; \ | |
| 53 | + -[dEDm]) skip_next=yes;; \ | |
| 54 | + -[JT]) skip_next=yes;; \ | |
| 55 | + esac; \ | |
| 56 | + case $$flg in \ | |
| 57 | + *$$target_option*) has_opt=yes; break;; \ | |
| 58 | + esac; \ | |
| 59 | + done; \ | |
| 60 | + test $$has_opt = yes | |
| 61 | +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) | |
| 62 | +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) | |
| 63 | +pkgdatadir = $(datadir)/@PACKAGE@ | |
| 64 | +pkgincludedir = $(includedir)/@PACKAGE@ | |
| 65 | +pkglibdir = $(libdir)/@PACKAGE@ | |
| 66 | +pkglibexecdir = $(libexecdir)/@PACKAGE@ | |
| 67 | +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd | |
| 68 | +install_sh_DATA = $(install_sh) -c -m 644 | |
| 69 | +install_sh_PROGRAM = $(install_sh) -c | |
| 70 | +install_sh_SCRIPT = $(install_sh) -c | |
| 71 | +INSTALL_HEADER = $(INSTALL_DATA) | |
| 72 | +transform = $(program_transform_name) | |
| 73 | +NORMAL_INSTALL = : | |
| 74 | +PRE_INSTALL = : | |
| 75 | +POST_INSTALL = : | |
| 76 | +NORMAL_UNINSTALL = : | |
| 77 | +PRE_UNINSTALL = : | |
| 78 | +POST_UNINSTALL = : | |
| 79 | +build_triplet = @build@ | |
| 80 | +host_triplet = @host@ | |
| 81 | +target_triplet = @target@ | |
| 82 | +bin_PROGRAMS = sipp$(EXEEXT) | |
| 83 | +TESTS = sipp_unittest$(EXEEXT) | |
| 84 | +noinst_PROGRAMS = $(am__EXEEXT_1) | |
| 85 | +@HAVE_OPENSSL_TRUE@am__append_1 = -D_USE_OPENSSL | |
| 86 | +@HAVE_PCAP_TRUE@am__append_2 = -DPCAPPLAY | |
| 87 | +@HAVE_RTP_TRUE@am__append_3 = -DRTP_STREAM | |
| 88 | +@HAVE_SCTP_TRUE@am__append_4 = -DUSE_SCTP | |
| 89 | +@HAVE_GSL_TRUE@am__append_5 = -DHAVE_GSL | |
| 90 | +@HAVE_EPOLL_TRUE@am__append_6 = -DHAVE_EPOLL | |
| 91 | +subdir = . | |
| 92 | +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ | |
| 93 | + $(top_srcdir)/configure $(am__configure_deps) \ | |
| 94 | + $(top_srcdir)/include/config.h.in depcomp test-driver THANKS \ | |
| 95 | + config.guess config.sub install-sh missing | |
| 96 | +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 | |
| 97 | +am__aclocal_m4_deps = $(top_srcdir)/configure.ac | |
| 98 | +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ | |
| 99 | + $(ACLOCAL_M4) | |
| 100 | +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ | |
| 101 | + configure.lineno config.status.lineno | |
| 102 | +mkinstalldirs = $(install_sh) -d | |
| 103 | +CONFIG_HEADER = $(top_builddir)/include/config.h | |
| 104 | +CONFIG_CLEAN_FILES = | |
| 105 | +CONFIG_CLEAN_VPATH_FILES = | |
| 106 | +am__installdirs = "$(DESTDIR)$(bindir)" | |
| 107 | +am__EXEEXT_1 = sipp_unittest$(EXEEXT) | |
| 108 | +PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) | |
| 109 | +am__sipp_SOURCES_DIST = src/actions.cpp src/auth.c src/comp.c \ | |
| 110 | + src/call.cpp src/deadcall.cpp src/infile.cpp src/listener.cpp \ | |
| 111 | + src/logger.cpp src/md5.c src/message.cpp src/milenage.c \ | |
| 112 | + src/opentask.cpp src/reporttask.cpp src/rijndael.c \ | |
| 113 | + src/scenario.cpp src/sip_parser.cpp src/screen.cpp \ | |
| 114 | + src/socket.cpp src/socketowner.cpp src/stat.cpp \ | |
| 115 | + src/strings.cpp src/task.cpp src/time.cpp src/variables.cpp \ | |
| 116 | + src/watchdog.cpp src/xp_parser.c include/comp.h \ | |
| 117 | + include/infile.hpp include/listener.hpp include/logger.hpp \ | |
| 118 | + include/md5.h include/message.hpp include/milenage.h \ | |
| 119 | + include/opentask.hpp include/reporttask.hpp include/rijndael.h \ | |
| 120 | + include/scenario.hpp include/sip_parser.hpp include/screen.hpp \ | |
| 121 | + include/socket.hpp include/socketowner.hpp include/stat.hpp \ | |
| 122 | + include/strings.hpp include/task.hpp include/time.hpp \ | |
| 123 | + include/variables.hpp include/watchdog.hpp include/xp_parser.h \ | |
| 124 | + include/actions.hpp include/call.hpp include/deadcall.hpp \ | |
| 125 | + include/sslcommon.h src/sslinit.c src/sslthreadsafe.c \ | |
| 126 | + include/prepare_pcap.h include/send_packets.h \ | |
| 127 | + src/prepare_pcap.c src/send_packets.c src/rtpstream.cpp \ | |
| 128 | + include/rtpstream.hpp src/sipp.cpp include/sipp.hpp | |
| 129 | +am__objects_1 = | |
| 130 | +@HAVE_OPENSSL_TRUE@am__objects_2 = $(am__objects_1) \ | |
| 131 | +@HAVE_OPENSSL_TRUE@ sipp-sslinit.$(OBJEXT) \ | |
| 132 | +@HAVE_OPENSSL_TRUE@ sipp-sslthreadsafe.$(OBJEXT) | |
| 133 | +@HAVE_PCAP_TRUE@am__objects_3 = $(am__objects_1) \ | |
| 134 | +@HAVE_PCAP_TRUE@ sipp-prepare_pcap.$(OBJEXT) \ | |
| 135 | +@HAVE_PCAP_TRUE@ sipp-send_packets.$(OBJEXT) | |
| 136 | +@HAVE_RTP_TRUE@am__objects_4 = sipp-rtpstream.$(OBJEXT) | |
| 137 | +am__objects_5 = sipp-actions.$(OBJEXT) sipp-auth.$(OBJEXT) \ | |
| 138 | + sipp-comp.$(OBJEXT) sipp-call.$(OBJEXT) \ | |
| 139 | + sipp-deadcall.$(OBJEXT) sipp-infile.$(OBJEXT) \ | |
| 140 | + sipp-listener.$(OBJEXT) sipp-logger.$(OBJEXT) \ | |
| 141 | + sipp-md5.$(OBJEXT) sipp-message.$(OBJEXT) \ | |
| 142 | + sipp-milenage.$(OBJEXT) sipp-opentask.$(OBJEXT) \ | |
| 143 | + sipp-reporttask.$(OBJEXT) sipp-rijndael.$(OBJEXT) \ | |
| 144 | + sipp-scenario.$(OBJEXT) sipp-sip_parser.$(OBJEXT) \ | |
| 145 | + sipp-screen.$(OBJEXT) sipp-socket.$(OBJEXT) \ | |
| 146 | + sipp-socketowner.$(OBJEXT) sipp-stat.$(OBJEXT) \ | |
| 147 | + sipp-strings.$(OBJEXT) sipp-task.$(OBJEXT) sipp-time.$(OBJEXT) \ | |
| 148 | + sipp-variables.$(OBJEXT) sipp-watchdog.$(OBJEXT) \ | |
| 149 | + sipp-xp_parser.$(OBJEXT) $(am__objects_1) $(am__objects_2) \ | |
| 150 | + $(am__objects_3) $(am__objects_4) | |
| 151 | +am_sipp_OBJECTS = $(am__objects_5) sipp-sipp.$(OBJEXT) | |
| 152 | +sipp_OBJECTS = $(am_sipp_OBJECTS) | |
| 153 | +sipp_DEPENDENCIES = @LIBOBJS@ | |
| 154 | +sipp_LINK = $(CXXLD) $(sipp_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ | |
| 155 | + $(LDFLAGS) -o $@ | |
| 156 | +am__sipp_unittest_SOURCES_DIST = src/actions.cpp src/auth.c src/comp.c \ | |
| 157 | + src/call.cpp src/deadcall.cpp src/infile.cpp src/listener.cpp \ | |
| 158 | + src/logger.cpp src/md5.c src/message.cpp src/milenage.c \ | |
| 159 | + src/opentask.cpp src/reporttask.cpp src/rijndael.c \ | |
| 160 | + src/scenario.cpp src/sip_parser.cpp src/screen.cpp \ | |
| 161 | + src/socket.cpp src/socketowner.cpp src/stat.cpp \ | |
| 162 | + src/strings.cpp src/task.cpp src/time.cpp src/variables.cpp \ | |
| 163 | + src/watchdog.cpp src/xp_parser.c include/comp.h \ | |
| 164 | + include/infile.hpp include/listener.hpp include/logger.hpp \ | |
| 165 | + include/md5.h include/message.hpp include/milenage.h \ | |
| 166 | + include/opentask.hpp include/reporttask.hpp include/rijndael.h \ | |
| 167 | + include/scenario.hpp include/sip_parser.hpp include/screen.hpp \ | |
| 168 | + include/socket.hpp include/socketowner.hpp include/stat.hpp \ | |
| 169 | + include/strings.hpp include/task.hpp include/time.hpp \ | |
| 170 | + include/variables.hpp include/watchdog.hpp include/xp_parser.h \ | |
| 171 | + include/actions.hpp include/call.hpp include/deadcall.hpp \ | |
| 172 | + include/sslcommon.h src/sslinit.c src/sslthreadsafe.c \ | |
| 173 | + include/prepare_pcap.h include/send_packets.h \ | |
| 174 | + src/prepare_pcap.c src/send_packets.c src/rtpstream.cpp \ | |
| 175 | + include/rtpstream.hpp src/sipp_unittest.cpp | |
| 176 | +@HAVE_OPENSSL_TRUE@am__objects_6 = $(am__objects_1) \ | |
| 177 | +@HAVE_OPENSSL_TRUE@ sipp_unittest-sslinit.$(OBJEXT) \ | |
| 178 | +@HAVE_OPENSSL_TRUE@ sipp_unittest-sslthreadsafe.$(OBJEXT) | |
| 179 | +@HAVE_PCAP_TRUE@am__objects_7 = $(am__objects_1) \ | |
| 180 | +@HAVE_PCAP_TRUE@ sipp_unittest-prepare_pcap.$(OBJEXT) \ | |
| 181 | +@HAVE_PCAP_TRUE@ sipp_unittest-send_packets.$(OBJEXT) | |
| 182 | +@HAVE_RTP_TRUE@am__objects_8 = sipp_unittest-rtpstream.$(OBJEXT) | |
| 183 | +am__objects_9 = sipp_unittest-actions.$(OBJEXT) \ | |
| 184 | + sipp_unittest-auth.$(OBJEXT) sipp_unittest-comp.$(OBJEXT) \ | |
| 185 | + sipp_unittest-call.$(OBJEXT) sipp_unittest-deadcall.$(OBJEXT) \ | |
| 186 | + sipp_unittest-infile.$(OBJEXT) \ | |
| 187 | + sipp_unittest-listener.$(OBJEXT) \ | |
| 188 | + sipp_unittest-logger.$(OBJEXT) sipp_unittest-md5.$(OBJEXT) \ | |
| 189 | + sipp_unittest-message.$(OBJEXT) \ | |
| 190 | + sipp_unittest-milenage.$(OBJEXT) \ | |
| 191 | + sipp_unittest-opentask.$(OBJEXT) \ | |
| 192 | + sipp_unittest-reporttask.$(OBJEXT) \ | |
| 193 | + sipp_unittest-rijndael.$(OBJEXT) \ | |
| 194 | + sipp_unittest-scenario.$(OBJEXT) \ | |
| 195 | + sipp_unittest-sip_parser.$(OBJEXT) \ | |
| 196 | + sipp_unittest-screen.$(OBJEXT) sipp_unittest-socket.$(OBJEXT) \ | |
| 197 | + sipp_unittest-socketowner.$(OBJEXT) \ | |
| 198 | + sipp_unittest-stat.$(OBJEXT) sipp_unittest-strings.$(OBJEXT) \ | |
| 199 | + sipp_unittest-task.$(OBJEXT) sipp_unittest-time.$(OBJEXT) \ | |
| 200 | + sipp_unittest-variables.$(OBJEXT) \ | |
| 201 | + sipp_unittest-watchdog.$(OBJEXT) \ | |
| 202 | + sipp_unittest-xp_parser.$(OBJEXT) $(am__objects_1) \ | |
| 203 | + $(am__objects_6) $(am__objects_7) $(am__objects_8) | |
| 204 | +am_sipp_unittest_OBJECTS = $(am__objects_9) \ | |
| 205 | + sipp_unittest-sipp_unittest.$(OBJEXT) | |
| 206 | +sipp_unittest_OBJECTS = $(am_sipp_unittest_OBJECTS) | |
| 207 | +sipp_unittest_DEPENDENCIES = @LIBOBJS@ | |
| 208 | +sipp_unittest_LINK = $(CXXLD) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) \ | |
| 209 | + $(AM_LDFLAGS) $(LDFLAGS) -o $@ | |
| 210 | +AM_V_P = $(am__v_P_@AM_V@) | |
| 211 | +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) | |
| 212 | +am__v_P_0 = false | |
| 213 | +am__v_P_1 = : | |
| 214 | +AM_V_GEN = $(am__v_GEN_@AM_V@) | |
| 215 | +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) | |
| 216 | +am__v_GEN_0 = @echo " GEN " $@; | |
| 217 | +am__v_GEN_1 = | |
| 218 | +AM_V_at = $(am__v_at_@AM_V@) | |
| 219 | +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) | |
| 220 | +am__v_at_0 = @ | |
| 221 | +am__v_at_1 = | |
| 222 | +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include | |
| 223 | +depcomp = $(SHELL) $(top_srcdir)/depcomp | |
| 224 | +am__depfiles_maybe = depfiles | |
| 225 | +am__mv = mv -f | |
| 226 | +AM_V_lt = $(am__v_lt_@AM_V@) | |
| 227 | +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) | |
| 228 | +am__v_lt_0 = --silent | |
| 229 | +am__v_lt_1 = | |
| 230 | +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ | |
| 231 | + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | |
| 232 | +AM_V_CC = $(am__v_CC_@AM_V@) | |
| 233 | +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) | |
| 234 | +am__v_CC_0 = @echo " CC " $@; | |
| 235 | +am__v_CC_1 = | |
| 236 | +CCLD = $(CC) | |
| 237 | +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ | |
| 238 | +AM_V_CCLD = $(am__v_CCLD_@AM_V@) | |
| 239 | +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | |
| 240 | +am__v_CCLD_0 = @echo " CCLD " $@; | |
| 241 | +am__v_CCLD_1 = | |
| 242 | +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ | |
| 243 | + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) | |
| 244 | +AM_V_CXX = $(am__v_CXX_@AM_V@) | |
| 245 | +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) | |
| 246 | +am__v_CXX_0 = @echo " CXX " $@; | |
| 247 | +am__v_CXX_1 = | |
| 248 | +CXXLD = $(CXX) | |
| 249 | +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ | |
| 250 | + -o $@ | |
| 251 | +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) | |
| 252 | +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) | |
| 253 | +am__v_CXXLD_0 = @echo " CXXLD " $@; | |
| 254 | +am__v_CXXLD_1 = | |
| 255 | +SOURCES = $(sipp_SOURCES) $(sipp_unittest_SOURCES) | |
| 256 | +DIST_SOURCES = $(am__sipp_SOURCES_DIST) \ | |
| 257 | + $(am__sipp_unittest_SOURCES_DIST) | |
| 258 | +am__can_run_installinfo = \ | |
| 259 | + case $$AM_UPDATE_INFO_DIR in \ | |
| 260 | + n|no|NO) false;; \ | |
| 261 | + *) (install-info --version) >/dev/null 2>&1;; \ | |
| 262 | + esac | |
| 263 | +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) | |
| 264 | +# Read a list of newline-separated strings from the standard input, | |
| 265 | +# and print each of them once, without duplicates. Input order is | |
| 266 | +# *not* preserved. | |
| 267 | +am__uniquify_input = $(AWK) '\ | |
| 268 | + BEGIN { nonempty = 0; } \ | |
| 269 | + { items[$$0] = 1; nonempty = 1; } \ | |
| 270 | + END { if (nonempty) { for (i in items) print i; }; } \ | |
| 271 | +' | |
| 272 | +# Make sure the list of sources is unique. This is necessary because, | |
| 273 | +# e.g., the same source file might be shared among _SOURCES variables | |
| 274 | +# for different programs/libraries. | |
| 275 | +am__define_uniq_tagged_files = \ | |
| 276 | + list='$(am__tagged_files)'; \ | |
| 277 | + unique=`for i in $$list; do \ | |
| 278 | + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ | |
| 279 | + done | $(am__uniquify_input)` | |
| 280 | +ETAGS = etags | |
| 281 | +CTAGS = ctags | |
| 282 | +CSCOPE = cscope | |
| 283 | +AM_RECURSIVE_TARGETS = cscope check recheck | |
| 284 | +am__tty_colors_dummy = \ | |
| 285 | + mgn= red= grn= lgn= blu= brg= std=; \ | |
| 286 | + am__color_tests=no | |
| 287 | +am__tty_colors = { \ | |
| 288 | + $(am__tty_colors_dummy); \ | |
| 289 | + if test "X$(AM_COLOR_TESTS)" = Xno; then \ | |
| 290 | + am__color_tests=no; \ | |
| 291 | + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ | |
| 292 | + am__color_tests=yes; \ | |
| 293 | + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ | |
| 294 | + am__color_tests=yes; \ | |
| 295 | + fi; \ | |
| 296 | + if test $$am__color_tests = yes; then \ | |
| 297 | + red='[0;31m'; \ | |
| 298 | + grn='[0;32m'; \ | |
| 299 | + lgn='[1;32m'; \ | |
| 300 | + blu='[1;34m'; \ | |
| 301 | + mgn='[0;35m'; \ | |
| 302 | + brg='[1m'; \ | |
| 303 | + std='[m'; \ | |
| 304 | + fi; \ | |
| 305 | +} | |
| 306 | +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; | |
| 307 | +am__vpath_adj = case $$p in \ | |
| 308 | + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ | |
| 309 | + *) f=$$p;; \ | |
| 310 | + esac; | |
| 311 | +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; | |
| 312 | +am__install_max = 40 | |
| 313 | +am__nobase_strip_setup = \ | |
| 314 | + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` | |
| 315 | +am__nobase_strip = \ | |
| 316 | + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" | |
| 317 | +am__nobase_list = $(am__nobase_strip_setup); \ | |
| 318 | + for p in $$list; do echo "$$p $$p"; done | \ | |
| 319 | + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ | |
| 320 | + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ | |
| 321 | + if (++n[$$2] == $(am__install_max)) \ | |
| 322 | + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ | |
| 323 | + END { for (dir in files) print dir, files[dir] }' | |
| 324 | +am__base_list = \ | |
| 325 | + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ | |
| 326 | + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | |
| 327 | +am__uninstall_files_from_dir = { \ | |
| 328 | + test -z "$$files" \ | |
| 329 | + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ | |
| 330 | + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ | |
| 331 | + $(am__cd) "$$dir" && rm -f $$files; }; \ | |
| 332 | + } | |
| 333 | +am__recheck_rx = ^[ ]*:recheck:[ ]* | |
| 334 | +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* | |
| 335 | +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* | |
| 336 | +# A command that, given a newline-separated list of test names on the | |
| 337 | +# standard input, print the name of the tests that are to be re-run | |
| 338 | +# upon "make recheck". | |
| 339 | +am__list_recheck_tests = $(AWK) '{ \ | |
| 340 | + recheck = 1; \ | |
| 341 | + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ | |
| 342 | + { \ | |
| 343 | + if (rc < 0) \ | |
| 344 | + { \ | |
| 345 | + if ((getline line2 < ($$0 ".log")) < 0) \ | |
| 346 | + recheck = 0; \ | |
| 347 | + break; \ | |
| 348 | + } \ | |
| 349 | + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ | |
| 350 | + { \ | |
| 351 | + recheck = 0; \ | |
| 352 | + break; \ | |
| 353 | + } \ | |
| 354 | + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ | |
| 355 | + { \ | |
| 356 | + break; \ | |
| 357 | + } \ | |
| 358 | + }; \ | |
| 359 | + if (recheck) \ | |
| 360 | + print $$0; \ | |
| 361 | + close ($$0 ".trs"); \ | |
| 362 | + close ($$0 ".log"); \ | |
| 363 | +}' | |
| 364 | +# A command that, given a newline-separated list of test names on the | |
| 365 | +# standard input, create the global log from their .trs and .log files. | |
| 366 | +am__create_global_log = $(AWK) ' \ | |
| 367 | +function fatal(msg) \ | |
| 368 | +{ \ | |
| 369 | + print "fatal: making $@: " msg | "cat >&2"; \ | |
| 370 | + exit 1; \ | |
| 371 | +} \ | |
| 372 | +function rst_section(header) \ | |
| 373 | +{ \ | |
| 374 | + print header; \ | |
| 375 | + len = length(header); \ | |
| 376 | + for (i = 1; i <= len; i = i + 1) \ | |
| 377 | + printf "="; \ | |
| 378 | + printf "\n\n"; \ | |
| 379 | +} \ | |
| 380 | +{ \ | |
| 381 | + copy_in_global_log = 1; \ | |
| 382 | + global_test_result = "RUN"; \ | |
| 383 | + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ | |
| 384 | + { \ | |
| 385 | + if (rc < 0) \ | |
| 386 | + fatal("failed to read from " $$0 ".trs"); \ | |
| 387 | + if (line ~ /$(am__global_test_result_rx)/) \ | |
| 388 | + { \ | |
| 389 | + sub("$(am__global_test_result_rx)", "", line); \ | |
| 390 | + sub("[ ]*$$", "", line); \ | |
| 391 | + global_test_result = line; \ | |
| 392 | + } \ | |
| 393 | + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ | |
| 394 | + copy_in_global_log = 0; \ | |
| 395 | + }; \ | |
| 396 | + if (copy_in_global_log) \ | |
| 397 | + { \ | |
| 398 | + rst_section(global_test_result ": " $$0); \ | |
| 399 | + while ((rc = (getline line < ($$0 ".log"))) != 0) \ | |
| 400 | + { \ | |
| 401 | + if (rc < 0) \ | |
| 402 | + fatal("failed to read from " $$0 ".log"); \ | |
| 403 | + print line; \ | |
| 404 | + }; \ | |
| 405 | + printf "\n"; \ | |
| 406 | + }; \ | |
| 407 | + close ($$0 ".trs"); \ | |
| 408 | + close ($$0 ".log"); \ | |
| 409 | +}' | |
| 410 | +# Restructured Text title. | |
| 411 | +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } | |
| 412 | +# Solaris 10 'make', and several other traditional 'make' implementations, | |
| 413 | +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it | |
| 414 | +# by disabling -e (using the XSI extension "set +e") if it's set. | |
| 415 | +am__sh_e_setup = case $$- in *e*) set +e;; esac | |
| 416 | +# Default flags passed to test drivers. | |
| 417 | +am__common_driver_flags = \ | |
| 418 | + --color-tests "$$am__color_tests" \ | |
| 419 | + --enable-hard-errors "$$am__enable_hard_errors" \ | |
| 420 | + --expect-failure "$$am__expect_failure" | |
| 421 | +# To be inserted before the command running the test. Creates the | |
| 422 | +# directory for the log if needed. Stores in $dir the directory | |
| 423 | +# containing $f, in $tst the test, in $log the log. Executes the | |
| 424 | +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and | |
| 425 | +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that | |
| 426 | +# will run the test scripts (or their associated LOG_COMPILER, if | |
| 427 | +# thy have one). | |
| 428 | +am__check_pre = \ | |
| 429 | +$(am__sh_e_setup); \ | |
| 430 | +$(am__vpath_adj_setup) $(am__vpath_adj) \ | |
| 431 | +$(am__tty_colors); \ | |
| 432 | +srcdir=$(srcdir); export srcdir; \ | |
| 433 | +case "$@" in \ | |
| 434 | + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ | |
| 435 | + *) am__odir=.;; \ | |
| 436 | +esac; \ | |
| 437 | +test "x$$am__odir" = x"." || test -d "$$am__odir" \ | |
| 438 | + || $(MKDIR_P) "$$am__odir" || exit $$?; \ | |
| 439 | +if test -f "./$$f"; then dir=./; \ | |
| 440 | +elif test -f "$$f"; then dir=; \ | |
| 441 | +else dir="$(srcdir)/"; fi; \ | |
| 442 | +tst=$$dir$$f; log='$@'; \ | |
| 443 | +if test -n '$(DISABLE_HARD_ERRORS)'; then \ | |
| 444 | + am__enable_hard_errors=no; \ | |
| 445 | +else \ | |
| 446 | + am__enable_hard_errors=yes; \ | |
| 447 | +fi; \ | |
| 448 | +case " $(XFAIL_TESTS) " in \ | |
| 449 | + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ | |
| 450 | + am__expect_failure=yes;; \ | |
| 451 | + *) \ | |
| 452 | + am__expect_failure=no;; \ | |
| 453 | +esac; \ | |
| 454 | +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) | |
| 455 | +# A shell command to get the names of the tests scripts with any registered | |
| 456 | +# extension removed (i.e., equivalently, the names of the test logs, with | |
| 457 | +# the '.log' extension removed). The result is saved in the shell variable | |
| 458 | +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, | |
| 459 | +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", | |
| 460 | +# since that might cause problem with VPATH rewrites for suffix-less tests. | |
| 461 | +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. | |
| 462 | +am__set_TESTS_bases = \ | |
| 463 | + bases='$(TEST_LOGS)'; \ | |
| 464 | + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ | |
| 465 | + bases=`echo $$bases` | |
| 466 | +RECHECK_LOGS = $(TEST_LOGS) | |
| 467 | +TEST_SUITE_LOG = test-suite.log | |
| 468 | +TEST_EXTENSIONS = @EXEEXT@ .test | |
| 469 | +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver | |
| 470 | +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) | |
| 471 | +am__set_b = \ | |
| 472 | + case '$@' in \ | |
| 473 | + */*) \ | |
| 474 | + case '$*' in \ | |
| 475 | + */*) b='$*';; \ | |
| 476 | + *) b=`echo '$@' | sed 's/\.log$$//'`; \ | |
| 477 | + esac;; \ | |
| 478 | + *) \ | |
| 479 | + b='$*';; \ | |
| 480 | + esac | |
| 481 | +am__test_logs1 = $(TESTS:=.log) | |
| 482 | +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) | |
| 483 | +TEST_LOGS = $(am__test_logs2:.test.log=.log) | |
| 484 | +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver | |
| 485 | +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ | |
| 486 | + $(TEST_LOG_FLAGS) | |
| 487 | +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) | |
| 488 | +distdir = $(PACKAGE)-$(VERSION) | |
| 489 | +top_distdir = $(distdir) | |
| 490 | +am__remove_distdir = \ | |
| 491 | + if test -d "$(distdir)"; then \ | |
| 492 | + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ | |
| 493 | + && rm -rf "$(distdir)" \ | |
| 494 | + || { sleep 5 && rm -rf "$(distdir)"; }; \ | |
| 495 | + else :; fi | |
| 496 | +am__post_remove_distdir = $(am__remove_distdir) | |
| 497 | +DIST_ARCHIVES = $(distdir).tar.gz | |
| 498 | +GZIP_ENV = --best | |
| 499 | +DIST_TARGETS = dist-gzip | |
| 500 | +distuninstallcheck_listfiles = find . -type f -print | |
| 501 | +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | |
| 502 | + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' | |
| 503 | +distcleancheck_listfiles = find . -type f -print | |
| 504 | +ACLOCAL = @ACLOCAL@ | |
| 505 | +ALLOCA = @ALLOCA@ | |
| 506 | +AMTAR = @AMTAR@ | |
| 507 | +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ | |
| 508 | +AUTOCONF = @AUTOCONF@ | |
| 509 | +AUTOHEADER = @AUTOHEADER@ | |
| 510 | +AUTOMAKE = @AUTOMAKE@ | |
| 511 | +AWK = @AWK@ | |
| 512 | +CC = @CC@ | |
| 513 | +CCDEPMODE = @CCDEPMODE@ | |
| 514 | +CFLAGS = @CFLAGS@ | |
| 515 | +CPP = @CPP@ | |
| 516 | +CPPFLAGS = @CPPFLAGS@ | |
| 517 | +CXX = @CXX@ | |
| 518 | +CXXDEPMODE = @CXXDEPMODE@ | |
| 519 | +CXXFLAGS = @CXXFLAGS@ | |
| 520 | +CYGPATH_W = @CYGPATH_W@ | |
| 521 | +DEFS = @DEFS@ $(am__append_1) $(am__append_2) $(am__append_3) \ | |
| 522 | + $(am__append_4) $(am__append_5) $(am__append_6) | |
| 523 | +DEPDIR = @DEPDIR@ | |
| 524 | +ECHO_C = @ECHO_C@ | |
| 525 | +ECHO_N = @ECHO_N@ | |
| 526 | +ECHO_T = @ECHO_T@ | |
| 527 | +EGREP = @EGREP@ | |
| 528 | +EXEEXT = @EXEEXT@ | |
| 529 | +GREP = @GREP@ | |
| 530 | +GSL_CFLAGS = @GSL_CFLAGS@ | |
| 531 | +GSL_CXXFLAGS = @GSL_CXXFLAGS@ | |
| 532 | +GSL_LIBS = @GSL_LIBS@ | |
| 533 | +INSTALL = @INSTALL@ | |
| 534 | +INSTALL_DATA = @INSTALL_DATA@ | |
| 535 | +INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
| 536 | +INSTALL_SCRIPT = @INSTALL_SCRIPT@ | |
| 537 | +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ | |
| 538 | +LDFLAGS = @LDFLAGS@ | |
| 539 | +LIBOBJS = @LIBOBJS@ | |
| 540 | +LIBS = @LIBS@ | |
| 541 | +LTLIBOBJS = @LTLIBOBJS@ | |
| 542 | +MAKEINFO = @MAKEINFO@ | |
| 543 | +MKDIR_P = @MKDIR_P@ | |
| 544 | +OBJEXT = @OBJEXT@ | |
| 545 | +PACKAGE = @PACKAGE@ | |
| 546 | +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ | |
| 547 | +PACKAGE_NAME = @PACKAGE_NAME@ | |
| 548 | +PACKAGE_STRING = @PACKAGE_STRING@ | |
| 549 | +PACKAGE_TARNAME = @PACKAGE_TARNAME@ | |
| 550 | +PACKAGE_URL = @PACKAGE_URL@ | |
| 551 | +PACKAGE_VERSION = @PACKAGE_VERSION@ | |
| 552 | +PATH_SEPARATOR = @PATH_SEPARATOR@ | |
| 553 | +SET_MAKE = @SET_MAKE@ | |
| 554 | +SHELL = @SHELL@ | |
| 555 | +STRIP = @STRIP@ | |
| 556 | +VERSION = @VERSION@ | |
| 557 | +abs_builddir = @abs_builddir@ | |
| 558 | +abs_srcdir = @abs_srcdir@ | |
| 559 | +abs_top_builddir = @abs_top_builddir@ | |
| 560 | +abs_top_srcdir = @abs_top_srcdir@ | |
| 561 | +ac_ct_CC = @ac_ct_CC@ | |
| 562 | +ac_ct_CXX = @ac_ct_CXX@ | |
| 563 | +am__include = @am__include@ | |
| 564 | +am__leading_dot = @am__leading_dot@ | |
| 565 | +am__quote = @am__quote@ | |
| 566 | +am__tar = @am__tar@ | |
| 567 | +am__untar = @am__untar@ | |
| 568 | +bindir = @bindir@ | |
| 569 | +build = @build@ | |
| 570 | +build_alias = @build_alias@ | |
| 571 | +build_cpu = @build_cpu@ | |
| 572 | +build_os = @build_os@ | |
| 573 | +build_vendor = @build_vendor@ | |
| 574 | +builddir = @builddir@ | |
| 575 | +datadir = @datadir@ | |
| 576 | +datarootdir = @datarootdir@ | |
| 577 | +docdir = @docdir@ | |
| 578 | +dvidir = @dvidir@ | |
| 579 | +exec_prefix = @exec_prefix@ | |
| 580 | +host = @host@ | |
| 581 | +host_alias = @host_alias@ | |
| 582 | +host_cpu = @host_cpu@ | |
| 583 | +host_os = @host_os@ | |
| 584 | +host_vendor = @host_vendor@ | |
| 585 | +htmldir = @htmldir@ | |
| 586 | +includedir = @includedir@ | |
| 587 | +infodir = @infodir@ | |
| 588 | +install_sh = @install_sh@ | |
| 589 | +libdir = @libdir@ | |
| 590 | +libexecdir = @libexecdir@ | |
| 591 | +localedir = @localedir@ | |
| 592 | +localstatedir = @localstatedir@ | |
| 593 | +mandir = @mandir@ | |
| 594 | +mkdir_p = @mkdir_p@ | |
| 595 | +oldincludedir = @oldincludedir@ | |
| 596 | +pdfdir = @pdfdir@ | |
| 597 | +prefix = @prefix@ | |
| 598 | +program_transform_name = @program_transform_name@ | |
| 599 | +psdir = @psdir@ | |
| 600 | +sbindir = @sbindir@ | |
| 601 | +sharedstatedir = @sharedstatedir@ | |
| 602 | +srcdir = @srcdir@ | |
| 603 | +sysconfdir = @sysconfdir@ | |
| 604 | +target = @target@ | |
| 605 | +target_alias = @target_alias@ | |
| 606 | +target_cpu = @target_cpu@ | |
| 607 | +target_os = @target_os@ | |
| 608 | +target_vendor = @target_vendor@ | |
| 609 | +top_build_prefix = @top_build_prefix@ | |
| 610 | +top_builddir = @top_builddir@ | |
| 611 | +top_srcdir = @top_srcdir@ | |
| 612 | +AM_CFLAGS = -I./include | |
| 613 | +AM_CPPFLAGS = $(AM_CFLAGS) | |
| 614 | +EXTRA_DIST = src/fortune.cpp pcap LICENSE.txt README.txt THANKS sipp.dtd sipp.1 cpplint.py auto-generate-files.sh | |
| 615 | +@HAVE_OPENSSL_TRUE@ssl_incl = include/sslcommon.h | |
| 616 | +@HAVE_OPENSSL_TRUE@ssl_SOURCES = $(ssl_incl) \ | |
| 617 | +@HAVE_OPENSSL_TRUE@ src/sslinit.c \ | |
| 618 | +@HAVE_OPENSSL_TRUE@ src/sslthreadsafe.c | |
| 619 | + | |
| 620 | +@HAVE_PCAP_TRUE@pcap_incl = include/prepare_pcap.h \ | |
| 621 | +@HAVE_PCAP_TRUE@ include/send_packets.h | |
| 622 | + | |
| 623 | +@HAVE_PCAP_TRUE@pcap_SOURCES = $(pcap_incl) \ | |
| 624 | +@HAVE_PCAP_TRUE@ src/prepare_pcap.c \ | |
| 625 | +@HAVE_PCAP_TRUE@ src/send_packets.c | |
| 626 | + | |
| 627 | +@HAVE_RTP_TRUE@rtp_SOURCES = src/rtpstream.cpp include/rtpstream.hpp | |
| 628 | +common_incl = include/comp.h \ | |
| 629 | + include/infile.hpp \ | |
| 630 | + include/listener.hpp \ | |
| 631 | + include/logger.hpp \ | |
| 632 | + include/md5.h \ | |
| 633 | + include/message.hpp \ | |
| 634 | + include/milenage.h \ | |
| 635 | + include/opentask.hpp \ | |
| 636 | + include/reporttask.hpp \ | |
| 637 | + include/rijndael.h \ | |
| 638 | + include/scenario.hpp \ | |
| 639 | + include/sip_parser.hpp \ | |
| 640 | + include/screen.hpp \ | |
| 641 | + include/socket.hpp \ | |
| 642 | + include/socketowner.hpp \ | |
| 643 | + include/stat.hpp \ | |
| 644 | + include/strings.hpp \ | |
| 645 | + include/task.hpp \ | |
| 646 | + include/time.hpp \ | |
| 647 | + include/variables.hpp \ | |
| 648 | + include/watchdog.hpp \ | |
| 649 | + include/xp_parser.h \ | |
| 650 | + include/actions.hpp \ | |
| 651 | + include/call.hpp \ | |
| 652 | + include/deadcall.hpp | |
| 653 | + | |
| 654 | +common_SOURCES = src/actions.cpp \ | |
| 655 | + src/auth.c \ | |
| 656 | + src/comp.c \ | |
| 657 | + src/call.cpp \ | |
| 658 | + src/deadcall.cpp \ | |
| 659 | + src/infile.cpp \ | |
| 660 | + src/listener.cpp \ | |
| 661 | + src/logger.cpp \ | |
| 662 | + src/md5.c \ | |
| 663 | + src/message.cpp \ | |
| 664 | + src/milenage.c \ | |
| 665 | + src/opentask.cpp \ | |
| 666 | + src/reporttask.cpp \ | |
| 667 | + src/rijndael.c \ | |
| 668 | + src/scenario.cpp \ | |
| 669 | + src/sip_parser.cpp \ | |
| 670 | + src/screen.cpp \ | |
| 671 | + src/socket.cpp \ | |
| 672 | + src/socketowner.cpp \ | |
| 673 | + src/stat.cpp \ | |
| 674 | + src/strings.cpp \ | |
| 675 | + src/task.cpp \ | |
| 676 | + src/time.cpp \ | |
| 677 | + src/variables.cpp \ | |
| 678 | + src/watchdog.cpp \ | |
| 679 | + src/xp_parser.c \ | |
| 680 | + $(common_incl) \ | |
| 681 | + $(ssl_SOURCES) \ | |
| 682 | + $(pcap_SOURCES) \ | |
| 683 | + $(rtp_SOURCES) | |
| 684 | + | |
| 685 | +sipp_SOURCES = $(common_SOURCES) \ | |
| 686 | + src/sipp.cpp \ | |
| 687 | + include/sipp.hpp | |
| 688 | + | |
| 689 | +sipp_CFLAGS = $(AM_CFLAGS) @GSL_CFLAGS@ | |
| 690 | +sipp_CXXFLAGS = $(AM_CXXFLAGS) @GSL_CXXFLAGS@ | |
| 691 | +sipp_LDADD = @LIBOBJS@ @GSL_LIBS@ | |
| 692 | +sipp_unittest_SOURCES = $(common_SOURCES) src/sipp_unittest.cpp | |
| 693 | +sipp_unittest_CFLAGS = $(AM_CFLAGS) @GSL_CFLAGS@ | |
| 694 | +sipp_unittest_CXXFLAGS = $(AM_CXXFLAGS) @GSL_CXXFLAGS@ | |
| 695 | +sipp_unittest_LDADD = @LIBOBJS@ @GSL_LIBS@ | |
| 696 | +all: all-am | |
| 697 | + | |
| 698 | +.SUFFIXES: | |
| 699 | +.SUFFIXES: .c .cpp .log .o .obj .test .test$(EXEEXT) .trs | |
| 700 | +am--refresh: Makefile | |
| 701 | + @: | |
| 702 | +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) | |
| 703 | + @for dep in $?; do \ | |
| 704 | + case '$(am__configure_deps)' in \ | |
| 705 | + *$$dep*) \ | |
| 706 | + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ | |
| 707 | + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ | |
| 708 | + && exit 0; \ | |
| 709 | + exit 1;; \ | |
| 710 | + esac; \ | |
| 711 | + done; \ | |
| 712 | + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ | |
| 713 | + $(am__cd) $(top_srcdir) && \ | |
| 714 | + $(AUTOMAKE) --foreign Makefile | |
| 715 | +.PRECIOUS: Makefile | |
| 716 | +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | |
| 717 | + @case '$?' in \ | |
| 718 | + *config.status*) \ | |
| 719 | + echo ' $(SHELL) ./config.status'; \ | |
| 720 | + $(SHELL) ./config.status;; \ | |
| 721 | + *) \ | |
| 722 | + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ | |
| 723 | + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ | |
| 724 | + esac; | |
| 725 | + | |
| 726 | +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) | |
| 727 | + $(SHELL) ./config.status --recheck | |
| 728 | + | |
| 729 | +$(top_srcdir)/configure: $(am__configure_deps) | |
| 730 | + $(am__cd) $(srcdir) && $(AUTOCONF) | |
| 731 | +$(ACLOCAL_M4): $(am__aclocal_m4_deps) | |
| 732 | + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) | |
| 733 | +$(am__aclocal_m4_deps): | |
| 734 | + | |
| 735 | +include/config.h: include/stamp-h1 | |
| 736 | + @if test ! -f $@; then rm -f include/stamp-h1; else :; fi | |
| 737 | + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) include/stamp-h1; else :; fi | |
| 738 | + | |
| 739 | +include/stamp-h1: $(top_srcdir)/include/config.h.in $(top_builddir)/config.status | |
| 740 | + @rm -f include/stamp-h1 | |
| 741 | + cd $(top_builddir) && $(SHELL) ./config.status include/config.h | |
| 742 | +$(top_srcdir)/include/config.h.in: $(am__configure_deps) | |
| 743 | + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) | |
| 744 | + rm -f include/stamp-h1 | |
| 745 | + touch $@ | |
| 746 | + | |
| 747 | +distclean-hdr: | |
| 748 | + -rm -f include/config.h include/stamp-h1 | |
| 749 | +install-binPROGRAMS: $(bin_PROGRAMS) | |
| 750 | + @$(NORMAL_INSTALL) | |
| 751 | + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ | |
| 752 | + if test -n "$$list"; then \ | |
| 753 | + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ | |
| 754 | + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ | |
| 755 | + fi; \ | |
| 756 | + for p in $$list; do echo "$$p $$p"; done | \ | |
| 757 | + sed 's/$(EXEEXT)$$//' | \ | |
| 758 | + while read p p1; do if test -f $$p \ | |
| 759 | + ; then echo "$$p"; echo "$$p"; else :; fi; \ | |
| 760 | + done | \ | |
| 761 | + sed -e 'p;s,.*/,,;n;h' \ | |
| 762 | + -e 's|.*|.|' \ | |
| 763 | + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ | |
| 764 | + sed 'N;N;N;s,\n, ,g' | \ | |
| 765 | + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ | |
| 766 | + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ | |
| 767 | + if ($$2 == $$4) files[d] = files[d] " " $$1; \ | |
| 768 | + else { print "f", $$3 "/" $$4, $$1; } } \ | |
| 769 | + END { for (d in files) print "f", d, files[d] }' | \ | |
| 770 | + while read type dir files; do \ | |
| 771 | + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ | |
| 772 | + test -z "$$files" || { \ | |
| 773 | + echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ | |
| 774 | + $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ | |
| 775 | + } \ | |
| 776 | + ; done | |
| 777 | + | |
| 778 | +uninstall-binPROGRAMS: | |
| 779 | + @$(NORMAL_UNINSTALL) | |
| 780 | + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ | |
| 781 | + files=`for p in $$list; do echo "$$p"; done | \ | |
| 782 | + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ | |
| 783 | + -e 's/$$/$(EXEEXT)/' \ | |
| 784 | + `; \ | |
| 785 | + test -n "$$list" || exit 0; \ | |
| 786 | + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ | |
| 787 | + cd "$(DESTDIR)$(bindir)" && rm -f $$files | |
| 788 | + | |
| 789 | +clean-binPROGRAMS: | |
| 790 | + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) | |
| 791 | + | |
| 792 | +clean-noinstPROGRAMS: | |
| 793 | + -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) | |
| 794 | + | |
| 795 | +sipp$(EXEEXT): $(sipp_OBJECTS) $(sipp_DEPENDENCIES) $(EXTRA_sipp_DEPENDENCIES) | |
| 796 | + @rm -f sipp$(EXEEXT) | |
| 797 | + $(AM_V_CXXLD)$(sipp_LINK) $(sipp_OBJECTS) $(sipp_LDADD) $(LIBS) | |
| 798 | + | |
| 799 | +sipp_unittest$(EXEEXT): $(sipp_unittest_OBJECTS) $(sipp_unittest_DEPENDENCIES) $(EXTRA_sipp_unittest_DEPENDENCIES) | |
| 800 | + @rm -f sipp_unittest$(EXEEXT) | |
| 801 | + $(AM_V_CXXLD)$(sipp_unittest_LINK) $(sipp_unittest_OBJECTS) $(sipp_unittest_LDADD) $(LIBS) | |
| 802 | + | |
| 803 | +mostlyclean-compile: | |
| 804 | + -rm -f *.$(OBJEXT) | |
| 805 | + | |
| 806 | +distclean-compile: | |
| 807 | + -rm -f *.tab.c | |
| 808 | + | |
| 809 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-actions.Po@am__quote@ | |
| 810 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-auth.Po@am__quote@ | |
| 811 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-call.Po@am__quote@ | |
| 812 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-comp.Po@am__quote@ | |
| 813 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-deadcall.Po@am__quote@ | |
| 814 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-infile.Po@am__quote@ | |
| 815 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-listener.Po@am__quote@ | |
| 816 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-logger.Po@am__quote@ | |
| 817 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-md5.Po@am__quote@ | |
| 818 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-message.Po@am__quote@ | |
| 819 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-milenage.Po@am__quote@ | |
| 820 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-opentask.Po@am__quote@ | |
| 821 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-prepare_pcap.Po@am__quote@ | |
| 822 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-reporttask.Po@am__quote@ | |
| 823 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-rijndael.Po@am__quote@ | |
| 824 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-rtpstream.Po@am__quote@ | |
| 825 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-scenario.Po@am__quote@ | |
| 826 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-screen.Po@am__quote@ | |
| 827 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-send_packets.Po@am__quote@ | |
| 828 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-sip_parser.Po@am__quote@ | |
| 829 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-sipp.Po@am__quote@ | |
| 830 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-socket.Po@am__quote@ | |
| 831 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-socketowner.Po@am__quote@ | |
| 832 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-sslinit.Po@am__quote@ | |
| 833 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-sslthreadsafe.Po@am__quote@ | |
| 834 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-stat.Po@am__quote@ | |
| 835 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-strings.Po@am__quote@ | |
| 836 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-task.Po@am__quote@ | |
| 837 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-time.Po@am__quote@ | |
| 838 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-variables.Po@am__quote@ | |
| 839 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-watchdog.Po@am__quote@ | |
| 840 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp-xp_parser.Po@am__quote@ | |
| 841 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-actions.Po@am__quote@ | |
| 842 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-auth.Po@am__quote@ | |
| 843 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-call.Po@am__quote@ | |
| 844 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-comp.Po@am__quote@ | |
| 845 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-deadcall.Po@am__quote@ | |
| 846 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-infile.Po@am__quote@ | |
| 847 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-listener.Po@am__quote@ | |
| 848 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-logger.Po@am__quote@ | |
| 849 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-md5.Po@am__quote@ | |
| 850 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-message.Po@am__quote@ | |
| 851 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-milenage.Po@am__quote@ | |
| 852 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-opentask.Po@am__quote@ | |
| 853 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-prepare_pcap.Po@am__quote@ | |
| 854 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-reporttask.Po@am__quote@ | |
| 855 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-rijndael.Po@am__quote@ | |
| 856 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-rtpstream.Po@am__quote@ | |
| 857 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-scenario.Po@am__quote@ | |
| 858 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-screen.Po@am__quote@ | |
| 859 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-send_packets.Po@am__quote@ | |
| 860 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-sip_parser.Po@am__quote@ | |
| 861 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-sipp_unittest.Po@am__quote@ | |
| 862 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-socket.Po@am__quote@ | |
| 863 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-socketowner.Po@am__quote@ | |
| 864 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-sslinit.Po@am__quote@ | |
| 865 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-sslthreadsafe.Po@am__quote@ | |
| 866 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-stat.Po@am__quote@ | |
| 867 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-strings.Po@am__quote@ | |
| 868 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-task.Po@am__quote@ | |
| 869 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-time.Po@am__quote@ | |
| 870 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-variables.Po@am__quote@ | |
| 871 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-watchdog.Po@am__quote@ | |
| 872 | +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sipp_unittest-xp_parser.Po@am__quote@ | |
| 873 | + | |
| 874 | +.c.o: | |
| 875 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< | |
| 876 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
| 877 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |
| 878 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 879 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< | |
| 880 | + | |
| 881 | +.c.obj: | |
| 882 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` | |
| 883 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
| 884 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |
| 885 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 886 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` | |
| 887 | + | |
| 888 | +sipp-auth.o: src/auth.c | |
| 889 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-auth.o -MD -MP -MF $(DEPDIR)/sipp-auth.Tpo -c -o sipp-auth.o `test -f 'src/auth.c' || echo '$(srcdir)/'`src/auth.c | |
| 890 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-auth.Tpo $(DEPDIR)/sipp-auth.Po | |
| 891 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/auth.c' object='sipp-auth.o' libtool=no @AMDEPBACKSLASH@ | |
| 892 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 893 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-auth.o `test -f 'src/auth.c' || echo '$(srcdir)/'`src/auth.c | |
| 894 | + | |
| 895 | +sipp-auth.obj: src/auth.c | |
| 896 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-auth.obj -MD -MP -MF $(DEPDIR)/sipp-auth.Tpo -c -o sipp-auth.obj `if test -f 'src/auth.c'; then $(CYGPATH_W) 'src/auth.c'; else $(CYGPATH_W) '$(srcdir)/src/auth.c'; fi` | |
| 897 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-auth.Tpo $(DEPDIR)/sipp-auth.Po | |
| 898 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/auth.c' object='sipp-auth.obj' libtool=no @AMDEPBACKSLASH@ | |
| 899 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 900 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-auth.obj `if test -f 'src/auth.c'; then $(CYGPATH_W) 'src/auth.c'; else $(CYGPATH_W) '$(srcdir)/src/auth.c'; fi` | |
| 901 | + | |
| 902 | +sipp-comp.o: src/comp.c | |
| 903 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-comp.o -MD -MP -MF $(DEPDIR)/sipp-comp.Tpo -c -o sipp-comp.o `test -f 'src/comp.c' || echo '$(srcdir)/'`src/comp.c | |
| 904 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-comp.Tpo $(DEPDIR)/sipp-comp.Po | |
| 905 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/comp.c' object='sipp-comp.o' libtool=no @AMDEPBACKSLASH@ | |
| 906 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 907 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-comp.o `test -f 'src/comp.c' || echo '$(srcdir)/'`src/comp.c | |
| 908 | + | |
| 909 | +sipp-comp.obj: src/comp.c | |
| 910 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-comp.obj -MD -MP -MF $(DEPDIR)/sipp-comp.Tpo -c -o sipp-comp.obj `if test -f 'src/comp.c'; then $(CYGPATH_W) 'src/comp.c'; else $(CYGPATH_W) '$(srcdir)/src/comp.c'; fi` | |
| 911 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-comp.Tpo $(DEPDIR)/sipp-comp.Po | |
| 912 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/comp.c' object='sipp-comp.obj' libtool=no @AMDEPBACKSLASH@ | |
| 913 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 914 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-comp.obj `if test -f 'src/comp.c'; then $(CYGPATH_W) 'src/comp.c'; else $(CYGPATH_W) '$(srcdir)/src/comp.c'; fi` | |
| 915 | + | |
| 916 | +sipp-md5.o: src/md5.c | |
| 917 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-md5.o -MD -MP -MF $(DEPDIR)/sipp-md5.Tpo -c -o sipp-md5.o `test -f 'src/md5.c' || echo '$(srcdir)/'`src/md5.c | |
| 918 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-md5.Tpo $(DEPDIR)/sipp-md5.Po | |
| 919 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md5.c' object='sipp-md5.o' libtool=no @AMDEPBACKSLASH@ | |
| 920 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 921 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-md5.o `test -f 'src/md5.c' || echo '$(srcdir)/'`src/md5.c | |
| 922 | + | |
| 923 | +sipp-md5.obj: src/md5.c | |
| 924 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-md5.obj -MD -MP -MF $(DEPDIR)/sipp-md5.Tpo -c -o sipp-md5.obj `if test -f 'src/md5.c'; then $(CYGPATH_W) 'src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/md5.c'; fi` | |
| 925 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-md5.Tpo $(DEPDIR)/sipp-md5.Po | |
| 926 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md5.c' object='sipp-md5.obj' libtool=no @AMDEPBACKSLASH@ | |
| 927 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 928 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-md5.obj `if test -f 'src/md5.c'; then $(CYGPATH_W) 'src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/md5.c'; fi` | |
| 929 | + | |
| 930 | +sipp-milenage.o: src/milenage.c | |
| 931 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-milenage.o -MD -MP -MF $(DEPDIR)/sipp-milenage.Tpo -c -o sipp-milenage.o `test -f 'src/milenage.c' || echo '$(srcdir)/'`src/milenage.c | |
| 932 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-milenage.Tpo $(DEPDIR)/sipp-milenage.Po | |
| 933 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/milenage.c' object='sipp-milenage.o' libtool=no @AMDEPBACKSLASH@ | |
| 934 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 935 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-milenage.o `test -f 'src/milenage.c' || echo '$(srcdir)/'`src/milenage.c | |
| 936 | + | |
| 937 | +sipp-milenage.obj: src/milenage.c | |
| 938 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-milenage.obj -MD -MP -MF $(DEPDIR)/sipp-milenage.Tpo -c -o sipp-milenage.obj `if test -f 'src/milenage.c'; then $(CYGPATH_W) 'src/milenage.c'; else $(CYGPATH_W) '$(srcdir)/src/milenage.c'; fi` | |
| 939 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-milenage.Tpo $(DEPDIR)/sipp-milenage.Po | |
| 940 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/milenage.c' object='sipp-milenage.obj' libtool=no @AMDEPBACKSLASH@ | |
| 941 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 942 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-milenage.obj `if test -f 'src/milenage.c'; then $(CYGPATH_W) 'src/milenage.c'; else $(CYGPATH_W) '$(srcdir)/src/milenage.c'; fi` | |
| 943 | + | |
| 944 | +sipp-rijndael.o: src/rijndael.c | |
| 945 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-rijndael.o -MD -MP -MF $(DEPDIR)/sipp-rijndael.Tpo -c -o sipp-rijndael.o `test -f 'src/rijndael.c' || echo '$(srcdir)/'`src/rijndael.c | |
| 946 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-rijndael.Tpo $(DEPDIR)/sipp-rijndael.Po | |
| 947 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rijndael.c' object='sipp-rijndael.o' libtool=no @AMDEPBACKSLASH@ | |
| 948 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 949 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-rijndael.o `test -f 'src/rijndael.c' || echo '$(srcdir)/'`src/rijndael.c | |
| 950 | + | |
| 951 | +sipp-rijndael.obj: src/rijndael.c | |
| 952 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-rijndael.obj -MD -MP -MF $(DEPDIR)/sipp-rijndael.Tpo -c -o sipp-rijndael.obj `if test -f 'src/rijndael.c'; then $(CYGPATH_W) 'src/rijndael.c'; else $(CYGPATH_W) '$(srcdir)/src/rijndael.c'; fi` | |
| 953 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-rijndael.Tpo $(DEPDIR)/sipp-rijndael.Po | |
| 954 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rijndael.c' object='sipp-rijndael.obj' libtool=no @AMDEPBACKSLASH@ | |
| 955 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 956 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-rijndael.obj `if test -f 'src/rijndael.c'; then $(CYGPATH_W) 'src/rijndael.c'; else $(CYGPATH_W) '$(srcdir)/src/rijndael.c'; fi` | |
| 957 | + | |
| 958 | +sipp-xp_parser.o: src/xp_parser.c | |
| 959 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-xp_parser.o -MD -MP -MF $(DEPDIR)/sipp-xp_parser.Tpo -c -o sipp-xp_parser.o `test -f 'src/xp_parser.c' || echo '$(srcdir)/'`src/xp_parser.c | |
| 960 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-xp_parser.Tpo $(DEPDIR)/sipp-xp_parser.Po | |
| 961 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xp_parser.c' object='sipp-xp_parser.o' libtool=no @AMDEPBACKSLASH@ | |
| 962 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 963 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-xp_parser.o `test -f 'src/xp_parser.c' || echo '$(srcdir)/'`src/xp_parser.c | |
| 964 | + | |
| 965 | +sipp-xp_parser.obj: src/xp_parser.c | |
| 966 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-xp_parser.obj -MD -MP -MF $(DEPDIR)/sipp-xp_parser.Tpo -c -o sipp-xp_parser.obj `if test -f 'src/xp_parser.c'; then $(CYGPATH_W) 'src/xp_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/xp_parser.c'; fi` | |
| 967 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-xp_parser.Tpo $(DEPDIR)/sipp-xp_parser.Po | |
| 968 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xp_parser.c' object='sipp-xp_parser.obj' libtool=no @AMDEPBACKSLASH@ | |
| 969 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 970 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-xp_parser.obj `if test -f 'src/xp_parser.c'; then $(CYGPATH_W) 'src/xp_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/xp_parser.c'; fi` | |
| 971 | + | |
| 972 | +sipp-sslinit.o: src/sslinit.c | |
| 973 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-sslinit.o -MD -MP -MF $(DEPDIR)/sipp-sslinit.Tpo -c -o sipp-sslinit.o `test -f 'src/sslinit.c' || echo '$(srcdir)/'`src/sslinit.c | |
| 974 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sslinit.Tpo $(DEPDIR)/sipp-sslinit.Po | |
| 975 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslinit.c' object='sipp-sslinit.o' libtool=no @AMDEPBACKSLASH@ | |
| 976 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 977 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-sslinit.o `test -f 'src/sslinit.c' || echo '$(srcdir)/'`src/sslinit.c | |
| 978 | + | |
| 979 | +sipp-sslinit.obj: src/sslinit.c | |
| 980 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-sslinit.obj -MD -MP -MF $(DEPDIR)/sipp-sslinit.Tpo -c -o sipp-sslinit.obj `if test -f 'src/sslinit.c'; then $(CYGPATH_W) 'src/sslinit.c'; else $(CYGPATH_W) '$(srcdir)/src/sslinit.c'; fi` | |
| 981 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sslinit.Tpo $(DEPDIR)/sipp-sslinit.Po | |
| 982 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslinit.c' object='sipp-sslinit.obj' libtool=no @AMDEPBACKSLASH@ | |
| 983 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 984 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-sslinit.obj `if test -f 'src/sslinit.c'; then $(CYGPATH_W) 'src/sslinit.c'; else $(CYGPATH_W) '$(srcdir)/src/sslinit.c'; fi` | |
| 985 | + | |
| 986 | +sipp-sslthreadsafe.o: src/sslthreadsafe.c | |
| 987 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-sslthreadsafe.o -MD -MP -MF $(DEPDIR)/sipp-sslthreadsafe.Tpo -c -o sipp-sslthreadsafe.o `test -f 'src/sslthreadsafe.c' || echo '$(srcdir)/'`src/sslthreadsafe.c | |
| 988 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sslthreadsafe.Tpo $(DEPDIR)/sipp-sslthreadsafe.Po | |
| 989 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslthreadsafe.c' object='sipp-sslthreadsafe.o' libtool=no @AMDEPBACKSLASH@ | |
| 990 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 991 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-sslthreadsafe.o `test -f 'src/sslthreadsafe.c' || echo '$(srcdir)/'`src/sslthreadsafe.c | |
| 992 | + | |
| 993 | +sipp-sslthreadsafe.obj: src/sslthreadsafe.c | |
| 994 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-sslthreadsafe.obj -MD -MP -MF $(DEPDIR)/sipp-sslthreadsafe.Tpo -c -o sipp-sslthreadsafe.obj `if test -f 'src/sslthreadsafe.c'; then $(CYGPATH_W) 'src/sslthreadsafe.c'; else $(CYGPATH_W) '$(srcdir)/src/sslthreadsafe.c'; fi` | |
| 995 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sslthreadsafe.Tpo $(DEPDIR)/sipp-sslthreadsafe.Po | |
| 996 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslthreadsafe.c' object='sipp-sslthreadsafe.obj' libtool=no @AMDEPBACKSLASH@ | |
| 997 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 998 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-sslthreadsafe.obj `if test -f 'src/sslthreadsafe.c'; then $(CYGPATH_W) 'src/sslthreadsafe.c'; else $(CYGPATH_W) '$(srcdir)/src/sslthreadsafe.c'; fi` | |
| 999 | + | |
| 1000 | +sipp-prepare_pcap.o: src/prepare_pcap.c | |
| 1001 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-prepare_pcap.o -MD -MP -MF $(DEPDIR)/sipp-prepare_pcap.Tpo -c -o sipp-prepare_pcap.o `test -f 'src/prepare_pcap.c' || echo '$(srcdir)/'`src/prepare_pcap.c | |
| 1002 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-prepare_pcap.Tpo $(DEPDIR)/sipp-prepare_pcap.Po | |
| 1003 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/prepare_pcap.c' object='sipp-prepare_pcap.o' libtool=no @AMDEPBACKSLASH@ | |
| 1004 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1005 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-prepare_pcap.o `test -f 'src/prepare_pcap.c' || echo '$(srcdir)/'`src/prepare_pcap.c | |
| 1006 | + | |
| 1007 | +sipp-prepare_pcap.obj: src/prepare_pcap.c | |
| 1008 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-prepare_pcap.obj -MD -MP -MF $(DEPDIR)/sipp-prepare_pcap.Tpo -c -o sipp-prepare_pcap.obj `if test -f 'src/prepare_pcap.c'; then $(CYGPATH_W) 'src/prepare_pcap.c'; else $(CYGPATH_W) '$(srcdir)/src/prepare_pcap.c'; fi` | |
| 1009 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-prepare_pcap.Tpo $(DEPDIR)/sipp-prepare_pcap.Po | |
| 1010 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/prepare_pcap.c' object='sipp-prepare_pcap.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1011 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1012 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-prepare_pcap.obj `if test -f 'src/prepare_pcap.c'; then $(CYGPATH_W) 'src/prepare_pcap.c'; else $(CYGPATH_W) '$(srcdir)/src/prepare_pcap.c'; fi` | |
| 1013 | + | |
| 1014 | +sipp-send_packets.o: src/send_packets.c | |
| 1015 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-send_packets.o -MD -MP -MF $(DEPDIR)/sipp-send_packets.Tpo -c -o sipp-send_packets.o `test -f 'src/send_packets.c' || echo '$(srcdir)/'`src/send_packets.c | |
| 1016 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-send_packets.Tpo $(DEPDIR)/sipp-send_packets.Po | |
| 1017 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/send_packets.c' object='sipp-send_packets.o' libtool=no @AMDEPBACKSLASH@ | |
| 1018 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1019 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-send_packets.o `test -f 'src/send_packets.c' || echo '$(srcdir)/'`src/send_packets.c | |
| 1020 | + | |
| 1021 | +sipp-send_packets.obj: src/send_packets.c | |
| 1022 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -MT sipp-send_packets.obj -MD -MP -MF $(DEPDIR)/sipp-send_packets.Tpo -c -o sipp-send_packets.obj `if test -f 'src/send_packets.c'; then $(CYGPATH_W) 'src/send_packets.c'; else $(CYGPATH_W) '$(srcdir)/src/send_packets.c'; fi` | |
| 1023 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-send_packets.Tpo $(DEPDIR)/sipp-send_packets.Po | |
| 1024 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/send_packets.c' object='sipp-send_packets.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1025 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1026 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CFLAGS) $(CFLAGS) -c -o sipp-send_packets.obj `if test -f 'src/send_packets.c'; then $(CYGPATH_W) 'src/send_packets.c'; else $(CYGPATH_W) '$(srcdir)/src/send_packets.c'; fi` | |
| 1027 | + | |
| 1028 | +sipp_unittest-auth.o: src/auth.c | |
| 1029 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-auth.o -MD -MP -MF $(DEPDIR)/sipp_unittest-auth.Tpo -c -o sipp_unittest-auth.o `test -f 'src/auth.c' || echo '$(srcdir)/'`src/auth.c | |
| 1030 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-auth.Tpo $(DEPDIR)/sipp_unittest-auth.Po | |
| 1031 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/auth.c' object='sipp_unittest-auth.o' libtool=no @AMDEPBACKSLASH@ | |
| 1032 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1033 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-auth.o `test -f 'src/auth.c' || echo '$(srcdir)/'`src/auth.c | |
| 1034 | + | |
| 1035 | +sipp_unittest-auth.obj: src/auth.c | |
| 1036 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-auth.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-auth.Tpo -c -o sipp_unittest-auth.obj `if test -f 'src/auth.c'; then $(CYGPATH_W) 'src/auth.c'; else $(CYGPATH_W) '$(srcdir)/src/auth.c'; fi` | |
| 1037 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-auth.Tpo $(DEPDIR)/sipp_unittest-auth.Po | |
| 1038 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/auth.c' object='sipp_unittest-auth.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1039 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1040 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-auth.obj `if test -f 'src/auth.c'; then $(CYGPATH_W) 'src/auth.c'; else $(CYGPATH_W) '$(srcdir)/src/auth.c'; fi` | |
| 1041 | + | |
| 1042 | +sipp_unittest-comp.o: src/comp.c | |
| 1043 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-comp.o -MD -MP -MF $(DEPDIR)/sipp_unittest-comp.Tpo -c -o sipp_unittest-comp.o `test -f 'src/comp.c' || echo '$(srcdir)/'`src/comp.c | |
| 1044 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-comp.Tpo $(DEPDIR)/sipp_unittest-comp.Po | |
| 1045 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/comp.c' object='sipp_unittest-comp.o' libtool=no @AMDEPBACKSLASH@ | |
| 1046 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1047 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-comp.o `test -f 'src/comp.c' || echo '$(srcdir)/'`src/comp.c | |
| 1048 | + | |
| 1049 | +sipp_unittest-comp.obj: src/comp.c | |
| 1050 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-comp.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-comp.Tpo -c -o sipp_unittest-comp.obj `if test -f 'src/comp.c'; then $(CYGPATH_W) 'src/comp.c'; else $(CYGPATH_W) '$(srcdir)/src/comp.c'; fi` | |
| 1051 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-comp.Tpo $(DEPDIR)/sipp_unittest-comp.Po | |
| 1052 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/comp.c' object='sipp_unittest-comp.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1053 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1054 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-comp.obj `if test -f 'src/comp.c'; then $(CYGPATH_W) 'src/comp.c'; else $(CYGPATH_W) '$(srcdir)/src/comp.c'; fi` | |
| 1055 | + | |
| 1056 | +sipp_unittest-md5.o: src/md5.c | |
| 1057 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-md5.o -MD -MP -MF $(DEPDIR)/sipp_unittest-md5.Tpo -c -o sipp_unittest-md5.o `test -f 'src/md5.c' || echo '$(srcdir)/'`src/md5.c | |
| 1058 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-md5.Tpo $(DEPDIR)/sipp_unittest-md5.Po | |
| 1059 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md5.c' object='sipp_unittest-md5.o' libtool=no @AMDEPBACKSLASH@ | |
| 1060 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1061 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-md5.o `test -f 'src/md5.c' || echo '$(srcdir)/'`src/md5.c | |
| 1062 | + | |
| 1063 | +sipp_unittest-md5.obj: src/md5.c | |
| 1064 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-md5.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-md5.Tpo -c -o sipp_unittest-md5.obj `if test -f 'src/md5.c'; then $(CYGPATH_W) 'src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/md5.c'; fi` | |
| 1065 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-md5.Tpo $(DEPDIR)/sipp_unittest-md5.Po | |
| 1066 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md5.c' object='sipp_unittest-md5.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1067 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1068 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-md5.obj `if test -f 'src/md5.c'; then $(CYGPATH_W) 'src/md5.c'; else $(CYGPATH_W) '$(srcdir)/src/md5.c'; fi` | |
| 1069 | + | |
| 1070 | +sipp_unittest-milenage.o: src/milenage.c | |
| 1071 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-milenage.o -MD -MP -MF $(DEPDIR)/sipp_unittest-milenage.Tpo -c -o sipp_unittest-milenage.o `test -f 'src/milenage.c' || echo '$(srcdir)/'`src/milenage.c | |
| 1072 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-milenage.Tpo $(DEPDIR)/sipp_unittest-milenage.Po | |
| 1073 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/milenage.c' object='sipp_unittest-milenage.o' libtool=no @AMDEPBACKSLASH@ | |
| 1074 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1075 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-milenage.o `test -f 'src/milenage.c' || echo '$(srcdir)/'`src/milenage.c | |
| 1076 | + | |
| 1077 | +sipp_unittest-milenage.obj: src/milenage.c | |
| 1078 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-milenage.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-milenage.Tpo -c -o sipp_unittest-milenage.obj `if test -f 'src/milenage.c'; then $(CYGPATH_W) 'src/milenage.c'; else $(CYGPATH_W) '$(srcdir)/src/milenage.c'; fi` | |
| 1079 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-milenage.Tpo $(DEPDIR)/sipp_unittest-milenage.Po | |
| 1080 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/milenage.c' object='sipp_unittest-milenage.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1081 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1082 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-milenage.obj `if test -f 'src/milenage.c'; then $(CYGPATH_W) 'src/milenage.c'; else $(CYGPATH_W) '$(srcdir)/src/milenage.c'; fi` | |
| 1083 | + | |
| 1084 | +sipp_unittest-rijndael.o: src/rijndael.c | |
| 1085 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-rijndael.o -MD -MP -MF $(DEPDIR)/sipp_unittest-rijndael.Tpo -c -o sipp_unittest-rijndael.o `test -f 'src/rijndael.c' || echo '$(srcdir)/'`src/rijndael.c | |
| 1086 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-rijndael.Tpo $(DEPDIR)/sipp_unittest-rijndael.Po | |
| 1087 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rijndael.c' object='sipp_unittest-rijndael.o' libtool=no @AMDEPBACKSLASH@ | |
| 1088 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1089 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-rijndael.o `test -f 'src/rijndael.c' || echo '$(srcdir)/'`src/rijndael.c | |
| 1090 | + | |
| 1091 | +sipp_unittest-rijndael.obj: src/rijndael.c | |
| 1092 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-rijndael.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-rijndael.Tpo -c -o sipp_unittest-rijndael.obj `if test -f 'src/rijndael.c'; then $(CYGPATH_W) 'src/rijndael.c'; else $(CYGPATH_W) '$(srcdir)/src/rijndael.c'; fi` | |
| 1093 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-rijndael.Tpo $(DEPDIR)/sipp_unittest-rijndael.Po | |
| 1094 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rijndael.c' object='sipp_unittest-rijndael.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1095 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1096 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-rijndael.obj `if test -f 'src/rijndael.c'; then $(CYGPATH_W) 'src/rijndael.c'; else $(CYGPATH_W) '$(srcdir)/src/rijndael.c'; fi` | |
| 1097 | + | |
| 1098 | +sipp_unittest-xp_parser.o: src/xp_parser.c | |
| 1099 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-xp_parser.o -MD -MP -MF $(DEPDIR)/sipp_unittest-xp_parser.Tpo -c -o sipp_unittest-xp_parser.o `test -f 'src/xp_parser.c' || echo '$(srcdir)/'`src/xp_parser.c | |
| 1100 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-xp_parser.Tpo $(DEPDIR)/sipp_unittest-xp_parser.Po | |
| 1101 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xp_parser.c' object='sipp_unittest-xp_parser.o' libtool=no @AMDEPBACKSLASH@ | |
| 1102 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1103 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-xp_parser.o `test -f 'src/xp_parser.c' || echo '$(srcdir)/'`src/xp_parser.c | |
| 1104 | + | |
| 1105 | +sipp_unittest-xp_parser.obj: src/xp_parser.c | |
| 1106 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-xp_parser.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-xp_parser.Tpo -c -o sipp_unittest-xp_parser.obj `if test -f 'src/xp_parser.c'; then $(CYGPATH_W) 'src/xp_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/xp_parser.c'; fi` | |
| 1107 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-xp_parser.Tpo $(DEPDIR)/sipp_unittest-xp_parser.Po | |
| 1108 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/xp_parser.c' object='sipp_unittest-xp_parser.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1109 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1110 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-xp_parser.obj `if test -f 'src/xp_parser.c'; then $(CYGPATH_W) 'src/xp_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/xp_parser.c'; fi` | |
| 1111 | + | |
| 1112 | +sipp_unittest-sslinit.o: src/sslinit.c | |
| 1113 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-sslinit.o -MD -MP -MF $(DEPDIR)/sipp_unittest-sslinit.Tpo -c -o sipp_unittest-sslinit.o `test -f 'src/sslinit.c' || echo '$(srcdir)/'`src/sslinit.c | |
| 1114 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sslinit.Tpo $(DEPDIR)/sipp_unittest-sslinit.Po | |
| 1115 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslinit.c' object='sipp_unittest-sslinit.o' libtool=no @AMDEPBACKSLASH@ | |
| 1116 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1117 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-sslinit.o `test -f 'src/sslinit.c' || echo '$(srcdir)/'`src/sslinit.c | |
| 1118 | + | |
| 1119 | +sipp_unittest-sslinit.obj: src/sslinit.c | |
| 1120 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-sslinit.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-sslinit.Tpo -c -o sipp_unittest-sslinit.obj `if test -f 'src/sslinit.c'; then $(CYGPATH_W) 'src/sslinit.c'; else $(CYGPATH_W) '$(srcdir)/src/sslinit.c'; fi` | |
| 1121 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sslinit.Tpo $(DEPDIR)/sipp_unittest-sslinit.Po | |
| 1122 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslinit.c' object='sipp_unittest-sslinit.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1123 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1124 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-sslinit.obj `if test -f 'src/sslinit.c'; then $(CYGPATH_W) 'src/sslinit.c'; else $(CYGPATH_W) '$(srcdir)/src/sslinit.c'; fi` | |
| 1125 | + | |
| 1126 | +sipp_unittest-sslthreadsafe.o: src/sslthreadsafe.c | |
| 1127 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-sslthreadsafe.o -MD -MP -MF $(DEPDIR)/sipp_unittest-sslthreadsafe.Tpo -c -o sipp_unittest-sslthreadsafe.o `test -f 'src/sslthreadsafe.c' || echo '$(srcdir)/'`src/sslthreadsafe.c | |
| 1128 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sslthreadsafe.Tpo $(DEPDIR)/sipp_unittest-sslthreadsafe.Po | |
| 1129 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslthreadsafe.c' object='sipp_unittest-sslthreadsafe.o' libtool=no @AMDEPBACKSLASH@ | |
| 1130 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1131 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-sslthreadsafe.o `test -f 'src/sslthreadsafe.c' || echo '$(srcdir)/'`src/sslthreadsafe.c | |
| 1132 | + | |
| 1133 | +sipp_unittest-sslthreadsafe.obj: src/sslthreadsafe.c | |
| 1134 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-sslthreadsafe.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-sslthreadsafe.Tpo -c -o sipp_unittest-sslthreadsafe.obj `if test -f 'src/sslthreadsafe.c'; then $(CYGPATH_W) 'src/sslthreadsafe.c'; else $(CYGPATH_W) '$(srcdir)/src/sslthreadsafe.c'; fi` | |
| 1135 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sslthreadsafe.Tpo $(DEPDIR)/sipp_unittest-sslthreadsafe.Po | |
| 1136 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/sslthreadsafe.c' object='sipp_unittest-sslthreadsafe.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1137 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1138 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-sslthreadsafe.obj `if test -f 'src/sslthreadsafe.c'; then $(CYGPATH_W) 'src/sslthreadsafe.c'; else $(CYGPATH_W) '$(srcdir)/src/sslthreadsafe.c'; fi` | |
| 1139 | + | |
| 1140 | +sipp_unittest-prepare_pcap.o: src/prepare_pcap.c | |
| 1141 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-prepare_pcap.o -MD -MP -MF $(DEPDIR)/sipp_unittest-prepare_pcap.Tpo -c -o sipp_unittest-prepare_pcap.o `test -f 'src/prepare_pcap.c' || echo '$(srcdir)/'`src/prepare_pcap.c | |
| 1142 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-prepare_pcap.Tpo $(DEPDIR)/sipp_unittest-prepare_pcap.Po | |
| 1143 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/prepare_pcap.c' object='sipp_unittest-prepare_pcap.o' libtool=no @AMDEPBACKSLASH@ | |
| 1144 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1145 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-prepare_pcap.o `test -f 'src/prepare_pcap.c' || echo '$(srcdir)/'`src/prepare_pcap.c | |
| 1146 | + | |
| 1147 | +sipp_unittest-prepare_pcap.obj: src/prepare_pcap.c | |
| 1148 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-prepare_pcap.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-prepare_pcap.Tpo -c -o sipp_unittest-prepare_pcap.obj `if test -f 'src/prepare_pcap.c'; then $(CYGPATH_W) 'src/prepare_pcap.c'; else $(CYGPATH_W) '$(srcdir)/src/prepare_pcap.c'; fi` | |
| 1149 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-prepare_pcap.Tpo $(DEPDIR)/sipp_unittest-prepare_pcap.Po | |
| 1150 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/prepare_pcap.c' object='sipp_unittest-prepare_pcap.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1151 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1152 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-prepare_pcap.obj `if test -f 'src/prepare_pcap.c'; then $(CYGPATH_W) 'src/prepare_pcap.c'; else $(CYGPATH_W) '$(srcdir)/src/prepare_pcap.c'; fi` | |
| 1153 | + | |
| 1154 | +sipp_unittest-send_packets.o: src/send_packets.c | |
| 1155 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-send_packets.o -MD -MP -MF $(DEPDIR)/sipp_unittest-send_packets.Tpo -c -o sipp_unittest-send_packets.o `test -f 'src/send_packets.c' || echo '$(srcdir)/'`src/send_packets.c | |
| 1156 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-send_packets.Tpo $(DEPDIR)/sipp_unittest-send_packets.Po | |
| 1157 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/send_packets.c' object='sipp_unittest-send_packets.o' libtool=no @AMDEPBACKSLASH@ | |
| 1158 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1159 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-send_packets.o `test -f 'src/send_packets.c' || echo '$(srcdir)/'`src/send_packets.c | |
| 1160 | + | |
| 1161 | +sipp_unittest-send_packets.obj: src/send_packets.c | |
| 1162 | +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -MT sipp_unittest-send_packets.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-send_packets.Tpo -c -o sipp_unittest-send_packets.obj `if test -f 'src/send_packets.c'; then $(CYGPATH_W) 'src/send_packets.c'; else $(CYGPATH_W) '$(srcdir)/src/send_packets.c'; fi` | |
| 1163 | +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-send_packets.Tpo $(DEPDIR)/sipp_unittest-send_packets.Po | |
| 1164 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/send_packets.c' object='sipp_unittest-send_packets.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1165 | +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1166 | +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CFLAGS) $(CFLAGS) -c -o sipp_unittest-send_packets.obj `if test -f 'src/send_packets.c'; then $(CYGPATH_W) 'src/send_packets.c'; else $(CYGPATH_W) '$(srcdir)/src/send_packets.c'; fi` | |
| 1167 | + | |
| 1168 | +.cpp.o: | |
| 1169 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< | |
| 1170 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
| 1171 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |
| 1172 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1173 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< | |
| 1174 | + | |
| 1175 | +.cpp.obj: | |
| 1176 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` | |
| 1177 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po | |
| 1178 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ | |
| 1179 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1180 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` | |
| 1181 | + | |
| 1182 | +sipp-actions.o: src/actions.cpp | |
| 1183 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-actions.o -MD -MP -MF $(DEPDIR)/sipp-actions.Tpo -c -o sipp-actions.o `test -f 'src/actions.cpp' || echo '$(srcdir)/'`src/actions.cpp | |
| 1184 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-actions.Tpo $(DEPDIR)/sipp-actions.Po | |
| 1185 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/actions.cpp' object='sipp-actions.o' libtool=no @AMDEPBACKSLASH@ | |
| 1186 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1187 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-actions.o `test -f 'src/actions.cpp' || echo '$(srcdir)/'`src/actions.cpp | |
| 1188 | + | |
| 1189 | +sipp-actions.obj: src/actions.cpp | |
| 1190 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-actions.obj -MD -MP -MF $(DEPDIR)/sipp-actions.Tpo -c -o sipp-actions.obj `if test -f 'src/actions.cpp'; then $(CYGPATH_W) 'src/actions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actions.cpp'; fi` | |
| 1191 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-actions.Tpo $(DEPDIR)/sipp-actions.Po | |
| 1192 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/actions.cpp' object='sipp-actions.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1193 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1194 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-actions.obj `if test -f 'src/actions.cpp'; then $(CYGPATH_W) 'src/actions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actions.cpp'; fi` | |
| 1195 | + | |
| 1196 | +sipp-call.o: src/call.cpp | |
| 1197 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-call.o -MD -MP -MF $(DEPDIR)/sipp-call.Tpo -c -o sipp-call.o `test -f 'src/call.cpp' || echo '$(srcdir)/'`src/call.cpp | |
| 1198 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-call.Tpo $(DEPDIR)/sipp-call.Po | |
| 1199 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/call.cpp' object='sipp-call.o' libtool=no @AMDEPBACKSLASH@ | |
| 1200 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1201 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-call.o `test -f 'src/call.cpp' || echo '$(srcdir)/'`src/call.cpp | |
| 1202 | + | |
| 1203 | +sipp-call.obj: src/call.cpp | |
| 1204 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-call.obj -MD -MP -MF $(DEPDIR)/sipp-call.Tpo -c -o sipp-call.obj `if test -f 'src/call.cpp'; then $(CYGPATH_W) 'src/call.cpp'; else $(CYGPATH_W) '$(srcdir)/src/call.cpp'; fi` | |
| 1205 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-call.Tpo $(DEPDIR)/sipp-call.Po | |
| 1206 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/call.cpp' object='sipp-call.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1207 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1208 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-call.obj `if test -f 'src/call.cpp'; then $(CYGPATH_W) 'src/call.cpp'; else $(CYGPATH_W) '$(srcdir)/src/call.cpp'; fi` | |
| 1209 | + | |
| 1210 | +sipp-deadcall.o: src/deadcall.cpp | |
| 1211 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-deadcall.o -MD -MP -MF $(DEPDIR)/sipp-deadcall.Tpo -c -o sipp-deadcall.o `test -f 'src/deadcall.cpp' || echo '$(srcdir)/'`src/deadcall.cpp | |
| 1212 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-deadcall.Tpo $(DEPDIR)/sipp-deadcall.Po | |
| 1213 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/deadcall.cpp' object='sipp-deadcall.o' libtool=no @AMDEPBACKSLASH@ | |
| 1214 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1215 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-deadcall.o `test -f 'src/deadcall.cpp' || echo '$(srcdir)/'`src/deadcall.cpp | |
| 1216 | + | |
| 1217 | +sipp-deadcall.obj: src/deadcall.cpp | |
| 1218 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-deadcall.obj -MD -MP -MF $(DEPDIR)/sipp-deadcall.Tpo -c -o sipp-deadcall.obj `if test -f 'src/deadcall.cpp'; then $(CYGPATH_W) 'src/deadcall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/deadcall.cpp'; fi` | |
| 1219 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-deadcall.Tpo $(DEPDIR)/sipp-deadcall.Po | |
| 1220 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/deadcall.cpp' object='sipp-deadcall.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1221 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1222 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-deadcall.obj `if test -f 'src/deadcall.cpp'; then $(CYGPATH_W) 'src/deadcall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/deadcall.cpp'; fi` | |
| 1223 | + | |
| 1224 | +sipp-infile.o: src/infile.cpp | |
| 1225 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-infile.o -MD -MP -MF $(DEPDIR)/sipp-infile.Tpo -c -o sipp-infile.o `test -f 'src/infile.cpp' || echo '$(srcdir)/'`src/infile.cpp | |
| 1226 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-infile.Tpo $(DEPDIR)/sipp-infile.Po | |
| 1227 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/infile.cpp' object='sipp-infile.o' libtool=no @AMDEPBACKSLASH@ | |
| 1228 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1229 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-infile.o `test -f 'src/infile.cpp' || echo '$(srcdir)/'`src/infile.cpp | |
| 1230 | + | |
| 1231 | +sipp-infile.obj: src/infile.cpp | |
| 1232 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-infile.obj -MD -MP -MF $(DEPDIR)/sipp-infile.Tpo -c -o sipp-infile.obj `if test -f 'src/infile.cpp'; then $(CYGPATH_W) 'src/infile.cpp'; else $(CYGPATH_W) '$(srcdir)/src/infile.cpp'; fi` | |
| 1233 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-infile.Tpo $(DEPDIR)/sipp-infile.Po | |
| 1234 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/infile.cpp' object='sipp-infile.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1235 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1236 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-infile.obj `if test -f 'src/infile.cpp'; then $(CYGPATH_W) 'src/infile.cpp'; else $(CYGPATH_W) '$(srcdir)/src/infile.cpp'; fi` | |
| 1237 | + | |
| 1238 | +sipp-listener.o: src/listener.cpp | |
| 1239 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-listener.o -MD -MP -MF $(DEPDIR)/sipp-listener.Tpo -c -o sipp-listener.o `test -f 'src/listener.cpp' || echo '$(srcdir)/'`src/listener.cpp | |
| 1240 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-listener.Tpo $(DEPDIR)/sipp-listener.Po | |
| 1241 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/listener.cpp' object='sipp-listener.o' libtool=no @AMDEPBACKSLASH@ | |
| 1242 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1243 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-listener.o `test -f 'src/listener.cpp' || echo '$(srcdir)/'`src/listener.cpp | |
| 1244 | + | |
| 1245 | +sipp-listener.obj: src/listener.cpp | |
| 1246 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-listener.obj -MD -MP -MF $(DEPDIR)/sipp-listener.Tpo -c -o sipp-listener.obj `if test -f 'src/listener.cpp'; then $(CYGPATH_W) 'src/listener.cpp'; else $(CYGPATH_W) '$(srcdir)/src/listener.cpp'; fi` | |
| 1247 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-listener.Tpo $(DEPDIR)/sipp-listener.Po | |
| 1248 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/listener.cpp' object='sipp-listener.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1249 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1250 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-listener.obj `if test -f 'src/listener.cpp'; then $(CYGPATH_W) 'src/listener.cpp'; else $(CYGPATH_W) '$(srcdir)/src/listener.cpp'; fi` | |
| 1251 | + | |
| 1252 | +sipp-logger.o: src/logger.cpp | |
| 1253 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-logger.o -MD -MP -MF $(DEPDIR)/sipp-logger.Tpo -c -o sipp-logger.o `test -f 'src/logger.cpp' || echo '$(srcdir)/'`src/logger.cpp | |
| 1254 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-logger.Tpo $(DEPDIR)/sipp-logger.Po | |
| 1255 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/logger.cpp' object='sipp-logger.o' libtool=no @AMDEPBACKSLASH@ | |
| 1256 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1257 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-logger.o `test -f 'src/logger.cpp' || echo '$(srcdir)/'`src/logger.cpp | |
| 1258 | + | |
| 1259 | +sipp-logger.obj: src/logger.cpp | |
| 1260 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-logger.obj -MD -MP -MF $(DEPDIR)/sipp-logger.Tpo -c -o sipp-logger.obj `if test -f 'src/logger.cpp'; then $(CYGPATH_W) 'src/logger.cpp'; else $(CYGPATH_W) '$(srcdir)/src/logger.cpp'; fi` | |
| 1261 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-logger.Tpo $(DEPDIR)/sipp-logger.Po | |
| 1262 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/logger.cpp' object='sipp-logger.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1263 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1264 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-logger.obj `if test -f 'src/logger.cpp'; then $(CYGPATH_W) 'src/logger.cpp'; else $(CYGPATH_W) '$(srcdir)/src/logger.cpp'; fi` | |
| 1265 | + | |
| 1266 | +sipp-message.o: src/message.cpp | |
| 1267 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-message.o -MD -MP -MF $(DEPDIR)/sipp-message.Tpo -c -o sipp-message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp | |
| 1268 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-message.Tpo $(DEPDIR)/sipp-message.Po | |
| 1269 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/message.cpp' object='sipp-message.o' libtool=no @AMDEPBACKSLASH@ | |
| 1270 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1271 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp | |
| 1272 | + | |
| 1273 | +sipp-message.obj: src/message.cpp | |
| 1274 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-message.obj -MD -MP -MF $(DEPDIR)/sipp-message.Tpo -c -o sipp-message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi` | |
| 1275 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-message.Tpo $(DEPDIR)/sipp-message.Po | |
| 1276 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/message.cpp' object='sipp-message.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1277 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1278 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi` | |
| 1279 | + | |
| 1280 | +sipp-opentask.o: src/opentask.cpp | |
| 1281 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-opentask.o -MD -MP -MF $(DEPDIR)/sipp-opentask.Tpo -c -o sipp-opentask.o `test -f 'src/opentask.cpp' || echo '$(srcdir)/'`src/opentask.cpp | |
| 1282 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-opentask.Tpo $(DEPDIR)/sipp-opentask.Po | |
| 1283 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/opentask.cpp' object='sipp-opentask.o' libtool=no @AMDEPBACKSLASH@ | |
| 1284 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1285 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-opentask.o `test -f 'src/opentask.cpp' || echo '$(srcdir)/'`src/opentask.cpp | |
| 1286 | + | |
| 1287 | +sipp-opentask.obj: src/opentask.cpp | |
| 1288 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-opentask.obj -MD -MP -MF $(DEPDIR)/sipp-opentask.Tpo -c -o sipp-opentask.obj `if test -f 'src/opentask.cpp'; then $(CYGPATH_W) 'src/opentask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/opentask.cpp'; fi` | |
| 1289 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-opentask.Tpo $(DEPDIR)/sipp-opentask.Po | |
| 1290 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/opentask.cpp' object='sipp-opentask.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1291 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1292 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-opentask.obj `if test -f 'src/opentask.cpp'; then $(CYGPATH_W) 'src/opentask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/opentask.cpp'; fi` | |
| 1293 | + | |
| 1294 | +sipp-reporttask.o: src/reporttask.cpp | |
| 1295 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-reporttask.o -MD -MP -MF $(DEPDIR)/sipp-reporttask.Tpo -c -o sipp-reporttask.o `test -f 'src/reporttask.cpp' || echo '$(srcdir)/'`src/reporttask.cpp | |
| 1296 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-reporttask.Tpo $(DEPDIR)/sipp-reporttask.Po | |
| 1297 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/reporttask.cpp' object='sipp-reporttask.o' libtool=no @AMDEPBACKSLASH@ | |
| 1298 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1299 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-reporttask.o `test -f 'src/reporttask.cpp' || echo '$(srcdir)/'`src/reporttask.cpp | |
| 1300 | + | |
| 1301 | +sipp-reporttask.obj: src/reporttask.cpp | |
| 1302 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-reporttask.obj -MD -MP -MF $(DEPDIR)/sipp-reporttask.Tpo -c -o sipp-reporttask.obj `if test -f 'src/reporttask.cpp'; then $(CYGPATH_W) 'src/reporttask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/reporttask.cpp'; fi` | |
| 1303 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-reporttask.Tpo $(DEPDIR)/sipp-reporttask.Po | |
| 1304 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/reporttask.cpp' object='sipp-reporttask.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1305 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1306 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-reporttask.obj `if test -f 'src/reporttask.cpp'; then $(CYGPATH_W) 'src/reporttask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/reporttask.cpp'; fi` | |
| 1307 | + | |
| 1308 | +sipp-scenario.o: src/scenario.cpp | |
| 1309 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-scenario.o -MD -MP -MF $(DEPDIR)/sipp-scenario.Tpo -c -o sipp-scenario.o `test -f 'src/scenario.cpp' || echo '$(srcdir)/'`src/scenario.cpp | |
| 1310 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-scenario.Tpo $(DEPDIR)/sipp-scenario.Po | |
| 1311 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/scenario.cpp' object='sipp-scenario.o' libtool=no @AMDEPBACKSLASH@ | |
| 1312 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1313 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-scenario.o `test -f 'src/scenario.cpp' || echo '$(srcdir)/'`src/scenario.cpp | |
| 1314 | + | |
| 1315 | +sipp-scenario.obj: src/scenario.cpp | |
| 1316 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-scenario.obj -MD -MP -MF $(DEPDIR)/sipp-scenario.Tpo -c -o sipp-scenario.obj `if test -f 'src/scenario.cpp'; then $(CYGPATH_W) 'src/scenario.cpp'; else $(CYGPATH_W) '$(srcdir)/src/scenario.cpp'; fi` | |
| 1317 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-scenario.Tpo $(DEPDIR)/sipp-scenario.Po | |
| 1318 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/scenario.cpp' object='sipp-scenario.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1319 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1320 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-scenario.obj `if test -f 'src/scenario.cpp'; then $(CYGPATH_W) 'src/scenario.cpp'; else $(CYGPATH_W) '$(srcdir)/src/scenario.cpp'; fi` | |
| 1321 | + | |
| 1322 | +sipp-sip_parser.o: src/sip_parser.cpp | |
| 1323 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-sip_parser.o -MD -MP -MF $(DEPDIR)/sipp-sip_parser.Tpo -c -o sipp-sip_parser.o `test -f 'src/sip_parser.cpp' || echo '$(srcdir)/'`src/sip_parser.cpp | |
| 1324 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sip_parser.Tpo $(DEPDIR)/sipp-sip_parser.Po | |
| 1325 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sip_parser.cpp' object='sipp-sip_parser.o' libtool=no @AMDEPBACKSLASH@ | |
| 1326 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1327 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-sip_parser.o `test -f 'src/sip_parser.cpp' || echo '$(srcdir)/'`src/sip_parser.cpp | |
| 1328 | + | |
| 1329 | +sipp-sip_parser.obj: src/sip_parser.cpp | |
| 1330 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-sip_parser.obj -MD -MP -MF $(DEPDIR)/sipp-sip_parser.Tpo -c -o sipp-sip_parser.obj `if test -f 'src/sip_parser.cpp'; then $(CYGPATH_W) 'src/sip_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sip_parser.cpp'; fi` | |
| 1331 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sip_parser.Tpo $(DEPDIR)/sipp-sip_parser.Po | |
| 1332 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sip_parser.cpp' object='sipp-sip_parser.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1333 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1334 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-sip_parser.obj `if test -f 'src/sip_parser.cpp'; then $(CYGPATH_W) 'src/sip_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sip_parser.cpp'; fi` | |
| 1335 | + | |
| 1336 | +sipp-screen.o: src/screen.cpp | |
| 1337 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-screen.o -MD -MP -MF $(DEPDIR)/sipp-screen.Tpo -c -o sipp-screen.o `test -f 'src/screen.cpp' || echo '$(srcdir)/'`src/screen.cpp | |
| 1338 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-screen.Tpo $(DEPDIR)/sipp-screen.Po | |
| 1339 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/screen.cpp' object='sipp-screen.o' libtool=no @AMDEPBACKSLASH@ | |
| 1340 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1341 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-screen.o `test -f 'src/screen.cpp' || echo '$(srcdir)/'`src/screen.cpp | |
| 1342 | + | |
| 1343 | +sipp-screen.obj: src/screen.cpp | |
| 1344 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-screen.obj -MD -MP -MF $(DEPDIR)/sipp-screen.Tpo -c -o sipp-screen.obj `if test -f 'src/screen.cpp'; then $(CYGPATH_W) 'src/screen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/screen.cpp'; fi` | |
| 1345 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-screen.Tpo $(DEPDIR)/sipp-screen.Po | |
| 1346 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/screen.cpp' object='sipp-screen.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1347 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1348 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-screen.obj `if test -f 'src/screen.cpp'; then $(CYGPATH_W) 'src/screen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/screen.cpp'; fi` | |
| 1349 | + | |
| 1350 | +sipp-socket.o: src/socket.cpp | |
| 1351 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-socket.o -MD -MP -MF $(DEPDIR)/sipp-socket.Tpo -c -o sipp-socket.o `test -f 'src/socket.cpp' || echo '$(srcdir)/'`src/socket.cpp | |
| 1352 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-socket.Tpo $(DEPDIR)/sipp-socket.Po | |
| 1353 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socket.cpp' object='sipp-socket.o' libtool=no @AMDEPBACKSLASH@ | |
| 1354 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1355 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-socket.o `test -f 'src/socket.cpp' || echo '$(srcdir)/'`src/socket.cpp | |
| 1356 | + | |
| 1357 | +sipp-socket.obj: src/socket.cpp | |
| 1358 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-socket.obj -MD -MP -MF $(DEPDIR)/sipp-socket.Tpo -c -o sipp-socket.obj `if test -f 'src/socket.cpp'; then $(CYGPATH_W) 'src/socket.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socket.cpp'; fi` | |
| 1359 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-socket.Tpo $(DEPDIR)/sipp-socket.Po | |
| 1360 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socket.cpp' object='sipp-socket.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1361 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1362 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-socket.obj `if test -f 'src/socket.cpp'; then $(CYGPATH_W) 'src/socket.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socket.cpp'; fi` | |
| 1363 | + | |
| 1364 | +sipp-socketowner.o: src/socketowner.cpp | |
| 1365 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-socketowner.o -MD -MP -MF $(DEPDIR)/sipp-socketowner.Tpo -c -o sipp-socketowner.o `test -f 'src/socketowner.cpp' || echo '$(srcdir)/'`src/socketowner.cpp | |
| 1366 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-socketowner.Tpo $(DEPDIR)/sipp-socketowner.Po | |
| 1367 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socketowner.cpp' object='sipp-socketowner.o' libtool=no @AMDEPBACKSLASH@ | |
| 1368 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1369 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-socketowner.o `test -f 'src/socketowner.cpp' || echo '$(srcdir)/'`src/socketowner.cpp | |
| 1370 | + | |
| 1371 | +sipp-socketowner.obj: src/socketowner.cpp | |
| 1372 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-socketowner.obj -MD -MP -MF $(DEPDIR)/sipp-socketowner.Tpo -c -o sipp-socketowner.obj `if test -f 'src/socketowner.cpp'; then $(CYGPATH_W) 'src/socketowner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socketowner.cpp'; fi` | |
| 1373 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-socketowner.Tpo $(DEPDIR)/sipp-socketowner.Po | |
| 1374 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socketowner.cpp' object='sipp-socketowner.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1375 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1376 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-socketowner.obj `if test -f 'src/socketowner.cpp'; then $(CYGPATH_W) 'src/socketowner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socketowner.cpp'; fi` | |
| 1377 | + | |
| 1378 | +sipp-stat.o: src/stat.cpp | |
| 1379 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-stat.o -MD -MP -MF $(DEPDIR)/sipp-stat.Tpo -c -o sipp-stat.o `test -f 'src/stat.cpp' || echo '$(srcdir)/'`src/stat.cpp | |
| 1380 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-stat.Tpo $(DEPDIR)/sipp-stat.Po | |
| 1381 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/stat.cpp' object='sipp-stat.o' libtool=no @AMDEPBACKSLASH@ | |
| 1382 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1383 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-stat.o `test -f 'src/stat.cpp' || echo '$(srcdir)/'`src/stat.cpp | |
| 1384 | + | |
| 1385 | +sipp-stat.obj: src/stat.cpp | |
| 1386 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-stat.obj -MD -MP -MF $(DEPDIR)/sipp-stat.Tpo -c -o sipp-stat.obj `if test -f 'src/stat.cpp'; then $(CYGPATH_W) 'src/stat.cpp'; else $(CYGPATH_W) '$(srcdir)/src/stat.cpp'; fi` | |
| 1387 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-stat.Tpo $(DEPDIR)/sipp-stat.Po | |
| 1388 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/stat.cpp' object='sipp-stat.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1389 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1390 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-stat.obj `if test -f 'src/stat.cpp'; then $(CYGPATH_W) 'src/stat.cpp'; else $(CYGPATH_W) '$(srcdir)/src/stat.cpp'; fi` | |
| 1391 | + | |
| 1392 | +sipp-strings.o: src/strings.cpp | |
| 1393 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-strings.o -MD -MP -MF $(DEPDIR)/sipp-strings.Tpo -c -o sipp-strings.o `test -f 'src/strings.cpp' || echo '$(srcdir)/'`src/strings.cpp | |
| 1394 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-strings.Tpo $(DEPDIR)/sipp-strings.Po | |
| 1395 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/strings.cpp' object='sipp-strings.o' libtool=no @AMDEPBACKSLASH@ | |
| 1396 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1397 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-strings.o `test -f 'src/strings.cpp' || echo '$(srcdir)/'`src/strings.cpp | |
| 1398 | + | |
| 1399 | +sipp-strings.obj: src/strings.cpp | |
| 1400 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-strings.obj -MD -MP -MF $(DEPDIR)/sipp-strings.Tpo -c -o sipp-strings.obj `if test -f 'src/strings.cpp'; then $(CYGPATH_W) 'src/strings.cpp'; else $(CYGPATH_W) '$(srcdir)/src/strings.cpp'; fi` | |
| 1401 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-strings.Tpo $(DEPDIR)/sipp-strings.Po | |
| 1402 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/strings.cpp' object='sipp-strings.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1403 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1404 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-strings.obj `if test -f 'src/strings.cpp'; then $(CYGPATH_W) 'src/strings.cpp'; else $(CYGPATH_W) '$(srcdir)/src/strings.cpp'; fi` | |
| 1405 | + | |
| 1406 | +sipp-task.o: src/task.cpp | |
| 1407 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-task.o -MD -MP -MF $(DEPDIR)/sipp-task.Tpo -c -o sipp-task.o `test -f 'src/task.cpp' || echo '$(srcdir)/'`src/task.cpp | |
| 1408 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-task.Tpo $(DEPDIR)/sipp-task.Po | |
| 1409 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/task.cpp' object='sipp-task.o' libtool=no @AMDEPBACKSLASH@ | |
| 1410 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1411 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-task.o `test -f 'src/task.cpp' || echo '$(srcdir)/'`src/task.cpp | |
| 1412 | + | |
| 1413 | +sipp-task.obj: src/task.cpp | |
| 1414 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-task.obj -MD -MP -MF $(DEPDIR)/sipp-task.Tpo -c -o sipp-task.obj `if test -f 'src/task.cpp'; then $(CYGPATH_W) 'src/task.cpp'; else $(CYGPATH_W) '$(srcdir)/src/task.cpp'; fi` | |
| 1415 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-task.Tpo $(DEPDIR)/sipp-task.Po | |
| 1416 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/task.cpp' object='sipp-task.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1417 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1418 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-task.obj `if test -f 'src/task.cpp'; then $(CYGPATH_W) 'src/task.cpp'; else $(CYGPATH_W) '$(srcdir)/src/task.cpp'; fi` | |
| 1419 | + | |
| 1420 | +sipp-time.o: src/time.cpp | |
| 1421 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-time.o -MD -MP -MF $(DEPDIR)/sipp-time.Tpo -c -o sipp-time.o `test -f 'src/time.cpp' || echo '$(srcdir)/'`src/time.cpp | |
| 1422 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-time.Tpo $(DEPDIR)/sipp-time.Po | |
| 1423 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/time.cpp' object='sipp-time.o' libtool=no @AMDEPBACKSLASH@ | |
| 1424 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1425 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-time.o `test -f 'src/time.cpp' || echo '$(srcdir)/'`src/time.cpp | |
| 1426 | + | |
| 1427 | +sipp-time.obj: src/time.cpp | |
| 1428 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-time.obj -MD -MP -MF $(DEPDIR)/sipp-time.Tpo -c -o sipp-time.obj `if test -f 'src/time.cpp'; then $(CYGPATH_W) 'src/time.cpp'; else $(CYGPATH_W) '$(srcdir)/src/time.cpp'; fi` | |
| 1429 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-time.Tpo $(DEPDIR)/sipp-time.Po | |
| 1430 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/time.cpp' object='sipp-time.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1431 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1432 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-time.obj `if test -f 'src/time.cpp'; then $(CYGPATH_W) 'src/time.cpp'; else $(CYGPATH_W) '$(srcdir)/src/time.cpp'; fi` | |
| 1433 | + | |
| 1434 | +sipp-variables.o: src/variables.cpp | |
| 1435 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-variables.o -MD -MP -MF $(DEPDIR)/sipp-variables.Tpo -c -o sipp-variables.o `test -f 'src/variables.cpp' || echo '$(srcdir)/'`src/variables.cpp | |
| 1436 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-variables.Tpo $(DEPDIR)/sipp-variables.Po | |
| 1437 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/variables.cpp' object='sipp-variables.o' libtool=no @AMDEPBACKSLASH@ | |
| 1438 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1439 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-variables.o `test -f 'src/variables.cpp' || echo '$(srcdir)/'`src/variables.cpp | |
| 1440 | + | |
| 1441 | +sipp-variables.obj: src/variables.cpp | |
| 1442 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-variables.obj -MD -MP -MF $(DEPDIR)/sipp-variables.Tpo -c -o sipp-variables.obj `if test -f 'src/variables.cpp'; then $(CYGPATH_W) 'src/variables.cpp'; else $(CYGPATH_W) '$(srcdir)/src/variables.cpp'; fi` | |
| 1443 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-variables.Tpo $(DEPDIR)/sipp-variables.Po | |
| 1444 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/variables.cpp' object='sipp-variables.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1445 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1446 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-variables.obj `if test -f 'src/variables.cpp'; then $(CYGPATH_W) 'src/variables.cpp'; else $(CYGPATH_W) '$(srcdir)/src/variables.cpp'; fi` | |
| 1447 | + | |
| 1448 | +sipp-watchdog.o: src/watchdog.cpp | |
| 1449 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-watchdog.o -MD -MP -MF $(DEPDIR)/sipp-watchdog.Tpo -c -o sipp-watchdog.o `test -f 'src/watchdog.cpp' || echo '$(srcdir)/'`src/watchdog.cpp | |
| 1450 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-watchdog.Tpo $(DEPDIR)/sipp-watchdog.Po | |
| 1451 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/watchdog.cpp' object='sipp-watchdog.o' libtool=no @AMDEPBACKSLASH@ | |
| 1452 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1453 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-watchdog.o `test -f 'src/watchdog.cpp' || echo '$(srcdir)/'`src/watchdog.cpp | |
| 1454 | + | |
| 1455 | +sipp-watchdog.obj: src/watchdog.cpp | |
| 1456 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-watchdog.obj -MD -MP -MF $(DEPDIR)/sipp-watchdog.Tpo -c -o sipp-watchdog.obj `if test -f 'src/watchdog.cpp'; then $(CYGPATH_W) 'src/watchdog.cpp'; else $(CYGPATH_W) '$(srcdir)/src/watchdog.cpp'; fi` | |
| 1457 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-watchdog.Tpo $(DEPDIR)/sipp-watchdog.Po | |
| 1458 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/watchdog.cpp' object='sipp-watchdog.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1459 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1460 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-watchdog.obj `if test -f 'src/watchdog.cpp'; then $(CYGPATH_W) 'src/watchdog.cpp'; else $(CYGPATH_W) '$(srcdir)/src/watchdog.cpp'; fi` | |
| 1461 | + | |
| 1462 | +sipp-rtpstream.o: src/rtpstream.cpp | |
| 1463 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-rtpstream.o -MD -MP -MF $(DEPDIR)/sipp-rtpstream.Tpo -c -o sipp-rtpstream.o `test -f 'src/rtpstream.cpp' || echo '$(srcdir)/'`src/rtpstream.cpp | |
| 1464 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-rtpstream.Tpo $(DEPDIR)/sipp-rtpstream.Po | |
| 1465 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/rtpstream.cpp' object='sipp-rtpstream.o' libtool=no @AMDEPBACKSLASH@ | |
| 1466 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1467 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-rtpstream.o `test -f 'src/rtpstream.cpp' || echo '$(srcdir)/'`src/rtpstream.cpp | |
| 1468 | + | |
| 1469 | +sipp-rtpstream.obj: src/rtpstream.cpp | |
| 1470 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-rtpstream.obj -MD -MP -MF $(DEPDIR)/sipp-rtpstream.Tpo -c -o sipp-rtpstream.obj `if test -f 'src/rtpstream.cpp'; then $(CYGPATH_W) 'src/rtpstream.cpp'; else $(CYGPATH_W) '$(srcdir)/src/rtpstream.cpp'; fi` | |
| 1471 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-rtpstream.Tpo $(DEPDIR)/sipp-rtpstream.Po | |
| 1472 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/rtpstream.cpp' object='sipp-rtpstream.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1473 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1474 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-rtpstream.obj `if test -f 'src/rtpstream.cpp'; then $(CYGPATH_W) 'src/rtpstream.cpp'; else $(CYGPATH_W) '$(srcdir)/src/rtpstream.cpp'; fi` | |
| 1475 | + | |
| 1476 | +sipp-sipp.o: src/sipp.cpp | |
| 1477 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-sipp.o -MD -MP -MF $(DEPDIR)/sipp-sipp.Tpo -c -o sipp-sipp.o `test -f 'src/sipp.cpp' || echo '$(srcdir)/'`src/sipp.cpp | |
| 1478 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sipp.Tpo $(DEPDIR)/sipp-sipp.Po | |
| 1479 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sipp.cpp' object='sipp-sipp.o' libtool=no @AMDEPBACKSLASH@ | |
| 1480 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1481 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-sipp.o `test -f 'src/sipp.cpp' || echo '$(srcdir)/'`src/sipp.cpp | |
| 1482 | + | |
| 1483 | +sipp-sipp.obj: src/sipp.cpp | |
| 1484 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -MT sipp-sipp.obj -MD -MP -MF $(DEPDIR)/sipp-sipp.Tpo -c -o sipp-sipp.obj `if test -f 'src/sipp.cpp'; then $(CYGPATH_W) 'src/sipp.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sipp.cpp'; fi` | |
| 1485 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp-sipp.Tpo $(DEPDIR)/sipp-sipp.Po | |
| 1486 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sipp.cpp' object='sipp-sipp.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1487 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1488 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_CXXFLAGS) $(CXXFLAGS) -c -o sipp-sipp.obj `if test -f 'src/sipp.cpp'; then $(CYGPATH_W) 'src/sipp.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sipp.cpp'; fi` | |
| 1489 | + | |
| 1490 | +sipp_unittest-actions.o: src/actions.cpp | |
| 1491 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-actions.o -MD -MP -MF $(DEPDIR)/sipp_unittest-actions.Tpo -c -o sipp_unittest-actions.o `test -f 'src/actions.cpp' || echo '$(srcdir)/'`src/actions.cpp | |
| 1492 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-actions.Tpo $(DEPDIR)/sipp_unittest-actions.Po | |
| 1493 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/actions.cpp' object='sipp_unittest-actions.o' libtool=no @AMDEPBACKSLASH@ | |
| 1494 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1495 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-actions.o `test -f 'src/actions.cpp' || echo '$(srcdir)/'`src/actions.cpp | |
| 1496 | + | |
| 1497 | +sipp_unittest-actions.obj: src/actions.cpp | |
| 1498 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-actions.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-actions.Tpo -c -o sipp_unittest-actions.obj `if test -f 'src/actions.cpp'; then $(CYGPATH_W) 'src/actions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actions.cpp'; fi` | |
| 1499 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-actions.Tpo $(DEPDIR)/sipp_unittest-actions.Po | |
| 1500 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/actions.cpp' object='sipp_unittest-actions.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1501 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1502 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-actions.obj `if test -f 'src/actions.cpp'; then $(CYGPATH_W) 'src/actions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actions.cpp'; fi` | |
| 1503 | + | |
| 1504 | +sipp_unittest-call.o: src/call.cpp | |
| 1505 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-call.o -MD -MP -MF $(DEPDIR)/sipp_unittest-call.Tpo -c -o sipp_unittest-call.o `test -f 'src/call.cpp' || echo '$(srcdir)/'`src/call.cpp | |
| 1506 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-call.Tpo $(DEPDIR)/sipp_unittest-call.Po | |
| 1507 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/call.cpp' object='sipp_unittest-call.o' libtool=no @AMDEPBACKSLASH@ | |
| 1508 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1509 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-call.o `test -f 'src/call.cpp' || echo '$(srcdir)/'`src/call.cpp | |
| 1510 | + | |
| 1511 | +sipp_unittest-call.obj: src/call.cpp | |
| 1512 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-call.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-call.Tpo -c -o sipp_unittest-call.obj `if test -f 'src/call.cpp'; then $(CYGPATH_W) 'src/call.cpp'; else $(CYGPATH_W) '$(srcdir)/src/call.cpp'; fi` | |
| 1513 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-call.Tpo $(DEPDIR)/sipp_unittest-call.Po | |
| 1514 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/call.cpp' object='sipp_unittest-call.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1515 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1516 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-call.obj `if test -f 'src/call.cpp'; then $(CYGPATH_W) 'src/call.cpp'; else $(CYGPATH_W) '$(srcdir)/src/call.cpp'; fi` | |
| 1517 | + | |
| 1518 | +sipp_unittest-deadcall.o: src/deadcall.cpp | |
| 1519 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-deadcall.o -MD -MP -MF $(DEPDIR)/sipp_unittest-deadcall.Tpo -c -o sipp_unittest-deadcall.o `test -f 'src/deadcall.cpp' || echo '$(srcdir)/'`src/deadcall.cpp | |
| 1520 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-deadcall.Tpo $(DEPDIR)/sipp_unittest-deadcall.Po | |
| 1521 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/deadcall.cpp' object='sipp_unittest-deadcall.o' libtool=no @AMDEPBACKSLASH@ | |
| 1522 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1523 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-deadcall.o `test -f 'src/deadcall.cpp' || echo '$(srcdir)/'`src/deadcall.cpp | |
| 1524 | + | |
| 1525 | +sipp_unittest-deadcall.obj: src/deadcall.cpp | |
| 1526 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-deadcall.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-deadcall.Tpo -c -o sipp_unittest-deadcall.obj `if test -f 'src/deadcall.cpp'; then $(CYGPATH_W) 'src/deadcall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/deadcall.cpp'; fi` | |
| 1527 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-deadcall.Tpo $(DEPDIR)/sipp_unittest-deadcall.Po | |
| 1528 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/deadcall.cpp' object='sipp_unittest-deadcall.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1529 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1530 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-deadcall.obj `if test -f 'src/deadcall.cpp'; then $(CYGPATH_W) 'src/deadcall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/deadcall.cpp'; fi` | |
| 1531 | + | |
| 1532 | +sipp_unittest-infile.o: src/infile.cpp | |
| 1533 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-infile.o -MD -MP -MF $(DEPDIR)/sipp_unittest-infile.Tpo -c -o sipp_unittest-infile.o `test -f 'src/infile.cpp' || echo '$(srcdir)/'`src/infile.cpp | |
| 1534 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-infile.Tpo $(DEPDIR)/sipp_unittest-infile.Po | |
| 1535 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/infile.cpp' object='sipp_unittest-infile.o' libtool=no @AMDEPBACKSLASH@ | |
| 1536 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1537 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-infile.o `test -f 'src/infile.cpp' || echo '$(srcdir)/'`src/infile.cpp | |
| 1538 | + | |
| 1539 | +sipp_unittest-infile.obj: src/infile.cpp | |
| 1540 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-infile.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-infile.Tpo -c -o sipp_unittest-infile.obj `if test -f 'src/infile.cpp'; then $(CYGPATH_W) 'src/infile.cpp'; else $(CYGPATH_W) '$(srcdir)/src/infile.cpp'; fi` | |
| 1541 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-infile.Tpo $(DEPDIR)/sipp_unittest-infile.Po | |
| 1542 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/infile.cpp' object='sipp_unittest-infile.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1543 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1544 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-infile.obj `if test -f 'src/infile.cpp'; then $(CYGPATH_W) 'src/infile.cpp'; else $(CYGPATH_W) '$(srcdir)/src/infile.cpp'; fi` | |
| 1545 | + | |
| 1546 | +sipp_unittest-listener.o: src/listener.cpp | |
| 1547 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-listener.o -MD -MP -MF $(DEPDIR)/sipp_unittest-listener.Tpo -c -o sipp_unittest-listener.o `test -f 'src/listener.cpp' || echo '$(srcdir)/'`src/listener.cpp | |
| 1548 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-listener.Tpo $(DEPDIR)/sipp_unittest-listener.Po | |
| 1549 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/listener.cpp' object='sipp_unittest-listener.o' libtool=no @AMDEPBACKSLASH@ | |
| 1550 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1551 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-listener.o `test -f 'src/listener.cpp' || echo '$(srcdir)/'`src/listener.cpp | |
| 1552 | + | |
| 1553 | +sipp_unittest-listener.obj: src/listener.cpp | |
| 1554 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-listener.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-listener.Tpo -c -o sipp_unittest-listener.obj `if test -f 'src/listener.cpp'; then $(CYGPATH_W) 'src/listener.cpp'; else $(CYGPATH_W) '$(srcdir)/src/listener.cpp'; fi` | |
| 1555 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-listener.Tpo $(DEPDIR)/sipp_unittest-listener.Po | |
| 1556 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/listener.cpp' object='sipp_unittest-listener.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1557 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1558 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-listener.obj `if test -f 'src/listener.cpp'; then $(CYGPATH_W) 'src/listener.cpp'; else $(CYGPATH_W) '$(srcdir)/src/listener.cpp'; fi` | |
| 1559 | + | |
| 1560 | +sipp_unittest-logger.o: src/logger.cpp | |
| 1561 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-logger.o -MD -MP -MF $(DEPDIR)/sipp_unittest-logger.Tpo -c -o sipp_unittest-logger.o `test -f 'src/logger.cpp' || echo '$(srcdir)/'`src/logger.cpp | |
| 1562 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-logger.Tpo $(DEPDIR)/sipp_unittest-logger.Po | |
| 1563 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/logger.cpp' object='sipp_unittest-logger.o' libtool=no @AMDEPBACKSLASH@ | |
| 1564 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1565 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-logger.o `test -f 'src/logger.cpp' || echo '$(srcdir)/'`src/logger.cpp | |
| 1566 | + | |
| 1567 | +sipp_unittest-logger.obj: src/logger.cpp | |
| 1568 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-logger.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-logger.Tpo -c -o sipp_unittest-logger.obj `if test -f 'src/logger.cpp'; then $(CYGPATH_W) 'src/logger.cpp'; else $(CYGPATH_W) '$(srcdir)/src/logger.cpp'; fi` | |
| 1569 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-logger.Tpo $(DEPDIR)/sipp_unittest-logger.Po | |
| 1570 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/logger.cpp' object='sipp_unittest-logger.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1571 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1572 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-logger.obj `if test -f 'src/logger.cpp'; then $(CYGPATH_W) 'src/logger.cpp'; else $(CYGPATH_W) '$(srcdir)/src/logger.cpp'; fi` | |
| 1573 | + | |
| 1574 | +sipp_unittest-message.o: src/message.cpp | |
| 1575 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-message.o -MD -MP -MF $(DEPDIR)/sipp_unittest-message.Tpo -c -o sipp_unittest-message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp | |
| 1576 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-message.Tpo $(DEPDIR)/sipp_unittest-message.Po | |
| 1577 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/message.cpp' object='sipp_unittest-message.o' libtool=no @AMDEPBACKSLASH@ | |
| 1578 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1579 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp | |
| 1580 | + | |
| 1581 | +sipp_unittest-message.obj: src/message.cpp | |
| 1582 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-message.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-message.Tpo -c -o sipp_unittest-message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi` | |
| 1583 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-message.Tpo $(DEPDIR)/sipp_unittest-message.Po | |
| 1584 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/message.cpp' object='sipp_unittest-message.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1585 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1586 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi` | |
| 1587 | + | |
| 1588 | +sipp_unittest-opentask.o: src/opentask.cpp | |
| 1589 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-opentask.o -MD -MP -MF $(DEPDIR)/sipp_unittest-opentask.Tpo -c -o sipp_unittest-opentask.o `test -f 'src/opentask.cpp' || echo '$(srcdir)/'`src/opentask.cpp | |
| 1590 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-opentask.Tpo $(DEPDIR)/sipp_unittest-opentask.Po | |
| 1591 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/opentask.cpp' object='sipp_unittest-opentask.o' libtool=no @AMDEPBACKSLASH@ | |
| 1592 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1593 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-opentask.o `test -f 'src/opentask.cpp' || echo '$(srcdir)/'`src/opentask.cpp | |
| 1594 | + | |
| 1595 | +sipp_unittest-opentask.obj: src/opentask.cpp | |
| 1596 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-opentask.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-opentask.Tpo -c -o sipp_unittest-opentask.obj `if test -f 'src/opentask.cpp'; then $(CYGPATH_W) 'src/opentask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/opentask.cpp'; fi` | |
| 1597 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-opentask.Tpo $(DEPDIR)/sipp_unittest-opentask.Po | |
| 1598 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/opentask.cpp' object='sipp_unittest-opentask.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1599 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1600 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-opentask.obj `if test -f 'src/opentask.cpp'; then $(CYGPATH_W) 'src/opentask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/opentask.cpp'; fi` | |
| 1601 | + | |
| 1602 | +sipp_unittest-reporttask.o: src/reporttask.cpp | |
| 1603 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-reporttask.o -MD -MP -MF $(DEPDIR)/sipp_unittest-reporttask.Tpo -c -o sipp_unittest-reporttask.o `test -f 'src/reporttask.cpp' || echo '$(srcdir)/'`src/reporttask.cpp | |
| 1604 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-reporttask.Tpo $(DEPDIR)/sipp_unittest-reporttask.Po | |
| 1605 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/reporttask.cpp' object='sipp_unittest-reporttask.o' libtool=no @AMDEPBACKSLASH@ | |
| 1606 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1607 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-reporttask.o `test -f 'src/reporttask.cpp' || echo '$(srcdir)/'`src/reporttask.cpp | |
| 1608 | + | |
| 1609 | +sipp_unittest-reporttask.obj: src/reporttask.cpp | |
| 1610 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-reporttask.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-reporttask.Tpo -c -o sipp_unittest-reporttask.obj `if test -f 'src/reporttask.cpp'; then $(CYGPATH_W) 'src/reporttask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/reporttask.cpp'; fi` | |
| 1611 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-reporttask.Tpo $(DEPDIR)/sipp_unittest-reporttask.Po | |
| 1612 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/reporttask.cpp' object='sipp_unittest-reporttask.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1613 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1614 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-reporttask.obj `if test -f 'src/reporttask.cpp'; then $(CYGPATH_W) 'src/reporttask.cpp'; else $(CYGPATH_W) '$(srcdir)/src/reporttask.cpp'; fi` | |
| 1615 | + | |
| 1616 | +sipp_unittest-scenario.o: src/scenario.cpp | |
| 1617 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-scenario.o -MD -MP -MF $(DEPDIR)/sipp_unittest-scenario.Tpo -c -o sipp_unittest-scenario.o `test -f 'src/scenario.cpp' || echo '$(srcdir)/'`src/scenario.cpp | |
| 1618 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-scenario.Tpo $(DEPDIR)/sipp_unittest-scenario.Po | |
| 1619 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/scenario.cpp' object='sipp_unittest-scenario.o' libtool=no @AMDEPBACKSLASH@ | |
| 1620 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1621 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-scenario.o `test -f 'src/scenario.cpp' || echo '$(srcdir)/'`src/scenario.cpp | |
| 1622 | + | |
| 1623 | +sipp_unittest-scenario.obj: src/scenario.cpp | |
| 1624 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-scenario.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-scenario.Tpo -c -o sipp_unittest-scenario.obj `if test -f 'src/scenario.cpp'; then $(CYGPATH_W) 'src/scenario.cpp'; else $(CYGPATH_W) '$(srcdir)/src/scenario.cpp'; fi` | |
| 1625 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-scenario.Tpo $(DEPDIR)/sipp_unittest-scenario.Po | |
| 1626 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/scenario.cpp' object='sipp_unittest-scenario.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1627 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1628 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-scenario.obj `if test -f 'src/scenario.cpp'; then $(CYGPATH_W) 'src/scenario.cpp'; else $(CYGPATH_W) '$(srcdir)/src/scenario.cpp'; fi` | |
| 1629 | + | |
| 1630 | +sipp_unittest-sip_parser.o: src/sip_parser.cpp | |
| 1631 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-sip_parser.o -MD -MP -MF $(DEPDIR)/sipp_unittest-sip_parser.Tpo -c -o sipp_unittest-sip_parser.o `test -f 'src/sip_parser.cpp' || echo '$(srcdir)/'`src/sip_parser.cpp | |
| 1632 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sip_parser.Tpo $(DEPDIR)/sipp_unittest-sip_parser.Po | |
| 1633 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sip_parser.cpp' object='sipp_unittest-sip_parser.o' libtool=no @AMDEPBACKSLASH@ | |
| 1634 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1635 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-sip_parser.o `test -f 'src/sip_parser.cpp' || echo '$(srcdir)/'`src/sip_parser.cpp | |
| 1636 | + | |
| 1637 | +sipp_unittest-sip_parser.obj: src/sip_parser.cpp | |
| 1638 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-sip_parser.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-sip_parser.Tpo -c -o sipp_unittest-sip_parser.obj `if test -f 'src/sip_parser.cpp'; then $(CYGPATH_W) 'src/sip_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sip_parser.cpp'; fi` | |
| 1639 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sip_parser.Tpo $(DEPDIR)/sipp_unittest-sip_parser.Po | |
| 1640 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sip_parser.cpp' object='sipp_unittest-sip_parser.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1641 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1642 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-sip_parser.obj `if test -f 'src/sip_parser.cpp'; then $(CYGPATH_W) 'src/sip_parser.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sip_parser.cpp'; fi` | |
| 1643 | + | |
| 1644 | +sipp_unittest-screen.o: src/screen.cpp | |
| 1645 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-screen.o -MD -MP -MF $(DEPDIR)/sipp_unittest-screen.Tpo -c -o sipp_unittest-screen.o `test -f 'src/screen.cpp' || echo '$(srcdir)/'`src/screen.cpp | |
| 1646 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-screen.Tpo $(DEPDIR)/sipp_unittest-screen.Po | |
| 1647 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/screen.cpp' object='sipp_unittest-screen.o' libtool=no @AMDEPBACKSLASH@ | |
| 1648 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1649 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-screen.o `test -f 'src/screen.cpp' || echo '$(srcdir)/'`src/screen.cpp | |
| 1650 | + | |
| 1651 | +sipp_unittest-screen.obj: src/screen.cpp | |
| 1652 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-screen.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-screen.Tpo -c -o sipp_unittest-screen.obj `if test -f 'src/screen.cpp'; then $(CYGPATH_W) 'src/screen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/screen.cpp'; fi` | |
| 1653 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-screen.Tpo $(DEPDIR)/sipp_unittest-screen.Po | |
| 1654 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/screen.cpp' object='sipp_unittest-screen.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1655 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1656 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-screen.obj `if test -f 'src/screen.cpp'; then $(CYGPATH_W) 'src/screen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/screen.cpp'; fi` | |
| 1657 | + | |
| 1658 | +sipp_unittest-socket.o: src/socket.cpp | |
| 1659 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-socket.o -MD -MP -MF $(DEPDIR)/sipp_unittest-socket.Tpo -c -o sipp_unittest-socket.o `test -f 'src/socket.cpp' || echo '$(srcdir)/'`src/socket.cpp | |
| 1660 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-socket.Tpo $(DEPDIR)/sipp_unittest-socket.Po | |
| 1661 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socket.cpp' object='sipp_unittest-socket.o' libtool=no @AMDEPBACKSLASH@ | |
| 1662 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1663 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-socket.o `test -f 'src/socket.cpp' || echo '$(srcdir)/'`src/socket.cpp | |
| 1664 | + | |
| 1665 | +sipp_unittest-socket.obj: src/socket.cpp | |
| 1666 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-socket.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-socket.Tpo -c -o sipp_unittest-socket.obj `if test -f 'src/socket.cpp'; then $(CYGPATH_W) 'src/socket.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socket.cpp'; fi` | |
| 1667 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-socket.Tpo $(DEPDIR)/sipp_unittest-socket.Po | |
| 1668 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socket.cpp' object='sipp_unittest-socket.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1669 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1670 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-socket.obj `if test -f 'src/socket.cpp'; then $(CYGPATH_W) 'src/socket.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socket.cpp'; fi` | |
| 1671 | + | |
| 1672 | +sipp_unittest-socketowner.o: src/socketowner.cpp | |
| 1673 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-socketowner.o -MD -MP -MF $(DEPDIR)/sipp_unittest-socketowner.Tpo -c -o sipp_unittest-socketowner.o `test -f 'src/socketowner.cpp' || echo '$(srcdir)/'`src/socketowner.cpp | |
| 1674 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-socketowner.Tpo $(DEPDIR)/sipp_unittest-socketowner.Po | |
| 1675 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socketowner.cpp' object='sipp_unittest-socketowner.o' libtool=no @AMDEPBACKSLASH@ | |
| 1676 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1677 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-socketowner.o `test -f 'src/socketowner.cpp' || echo '$(srcdir)/'`src/socketowner.cpp | |
| 1678 | + | |
| 1679 | +sipp_unittest-socketowner.obj: src/socketowner.cpp | |
| 1680 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-socketowner.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-socketowner.Tpo -c -o sipp_unittest-socketowner.obj `if test -f 'src/socketowner.cpp'; then $(CYGPATH_W) 'src/socketowner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socketowner.cpp'; fi` | |
| 1681 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-socketowner.Tpo $(DEPDIR)/sipp_unittest-socketowner.Po | |
| 1682 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/socketowner.cpp' object='sipp_unittest-socketowner.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1683 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1684 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-socketowner.obj `if test -f 'src/socketowner.cpp'; then $(CYGPATH_W) 'src/socketowner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/socketowner.cpp'; fi` | |
| 1685 | + | |
| 1686 | +sipp_unittest-stat.o: src/stat.cpp | |
| 1687 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-stat.o -MD -MP -MF $(DEPDIR)/sipp_unittest-stat.Tpo -c -o sipp_unittest-stat.o `test -f 'src/stat.cpp' || echo '$(srcdir)/'`src/stat.cpp | |
| 1688 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-stat.Tpo $(DEPDIR)/sipp_unittest-stat.Po | |
| 1689 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/stat.cpp' object='sipp_unittest-stat.o' libtool=no @AMDEPBACKSLASH@ | |
| 1690 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1691 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-stat.o `test -f 'src/stat.cpp' || echo '$(srcdir)/'`src/stat.cpp | |
| 1692 | + | |
| 1693 | +sipp_unittest-stat.obj: src/stat.cpp | |
| 1694 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-stat.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-stat.Tpo -c -o sipp_unittest-stat.obj `if test -f 'src/stat.cpp'; then $(CYGPATH_W) 'src/stat.cpp'; else $(CYGPATH_W) '$(srcdir)/src/stat.cpp'; fi` | |
| 1695 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-stat.Tpo $(DEPDIR)/sipp_unittest-stat.Po | |
| 1696 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/stat.cpp' object='sipp_unittest-stat.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1697 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1698 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-stat.obj `if test -f 'src/stat.cpp'; then $(CYGPATH_W) 'src/stat.cpp'; else $(CYGPATH_W) '$(srcdir)/src/stat.cpp'; fi` | |
| 1699 | + | |
| 1700 | +sipp_unittest-strings.o: src/strings.cpp | |
| 1701 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-strings.o -MD -MP -MF $(DEPDIR)/sipp_unittest-strings.Tpo -c -o sipp_unittest-strings.o `test -f 'src/strings.cpp' || echo '$(srcdir)/'`src/strings.cpp | |
| 1702 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-strings.Tpo $(DEPDIR)/sipp_unittest-strings.Po | |
| 1703 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/strings.cpp' object='sipp_unittest-strings.o' libtool=no @AMDEPBACKSLASH@ | |
| 1704 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1705 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-strings.o `test -f 'src/strings.cpp' || echo '$(srcdir)/'`src/strings.cpp | |
| 1706 | + | |
| 1707 | +sipp_unittest-strings.obj: src/strings.cpp | |
| 1708 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-strings.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-strings.Tpo -c -o sipp_unittest-strings.obj `if test -f 'src/strings.cpp'; then $(CYGPATH_W) 'src/strings.cpp'; else $(CYGPATH_W) '$(srcdir)/src/strings.cpp'; fi` | |
| 1709 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-strings.Tpo $(DEPDIR)/sipp_unittest-strings.Po | |
| 1710 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/strings.cpp' object='sipp_unittest-strings.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1711 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1712 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-strings.obj `if test -f 'src/strings.cpp'; then $(CYGPATH_W) 'src/strings.cpp'; else $(CYGPATH_W) '$(srcdir)/src/strings.cpp'; fi` | |
| 1713 | + | |
| 1714 | +sipp_unittest-task.o: src/task.cpp | |
| 1715 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-task.o -MD -MP -MF $(DEPDIR)/sipp_unittest-task.Tpo -c -o sipp_unittest-task.o `test -f 'src/task.cpp' || echo '$(srcdir)/'`src/task.cpp | |
| 1716 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-task.Tpo $(DEPDIR)/sipp_unittest-task.Po | |
| 1717 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/task.cpp' object='sipp_unittest-task.o' libtool=no @AMDEPBACKSLASH@ | |
| 1718 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1719 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-task.o `test -f 'src/task.cpp' || echo '$(srcdir)/'`src/task.cpp | |
| 1720 | + | |
| 1721 | +sipp_unittest-task.obj: src/task.cpp | |
| 1722 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-task.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-task.Tpo -c -o sipp_unittest-task.obj `if test -f 'src/task.cpp'; then $(CYGPATH_W) 'src/task.cpp'; else $(CYGPATH_W) '$(srcdir)/src/task.cpp'; fi` | |
| 1723 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-task.Tpo $(DEPDIR)/sipp_unittest-task.Po | |
| 1724 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/task.cpp' object='sipp_unittest-task.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1725 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1726 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-task.obj `if test -f 'src/task.cpp'; then $(CYGPATH_W) 'src/task.cpp'; else $(CYGPATH_W) '$(srcdir)/src/task.cpp'; fi` | |
| 1727 | + | |
| 1728 | +sipp_unittest-time.o: src/time.cpp | |
| 1729 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-time.o -MD -MP -MF $(DEPDIR)/sipp_unittest-time.Tpo -c -o sipp_unittest-time.o `test -f 'src/time.cpp' || echo '$(srcdir)/'`src/time.cpp | |
| 1730 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-time.Tpo $(DEPDIR)/sipp_unittest-time.Po | |
| 1731 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/time.cpp' object='sipp_unittest-time.o' libtool=no @AMDEPBACKSLASH@ | |
| 1732 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1733 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-time.o `test -f 'src/time.cpp' || echo '$(srcdir)/'`src/time.cpp | |
| 1734 | + | |
| 1735 | +sipp_unittest-time.obj: src/time.cpp | |
| 1736 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-time.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-time.Tpo -c -o sipp_unittest-time.obj `if test -f 'src/time.cpp'; then $(CYGPATH_W) 'src/time.cpp'; else $(CYGPATH_W) '$(srcdir)/src/time.cpp'; fi` | |
| 1737 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-time.Tpo $(DEPDIR)/sipp_unittest-time.Po | |
| 1738 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/time.cpp' object='sipp_unittest-time.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1739 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1740 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-time.obj `if test -f 'src/time.cpp'; then $(CYGPATH_W) 'src/time.cpp'; else $(CYGPATH_W) '$(srcdir)/src/time.cpp'; fi` | |
| 1741 | + | |
| 1742 | +sipp_unittest-variables.o: src/variables.cpp | |
| 1743 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-variables.o -MD -MP -MF $(DEPDIR)/sipp_unittest-variables.Tpo -c -o sipp_unittest-variables.o `test -f 'src/variables.cpp' || echo '$(srcdir)/'`src/variables.cpp | |
| 1744 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-variables.Tpo $(DEPDIR)/sipp_unittest-variables.Po | |
| 1745 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/variables.cpp' object='sipp_unittest-variables.o' libtool=no @AMDEPBACKSLASH@ | |
| 1746 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1747 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-variables.o `test -f 'src/variables.cpp' || echo '$(srcdir)/'`src/variables.cpp | |
| 1748 | + | |
| 1749 | +sipp_unittest-variables.obj: src/variables.cpp | |
| 1750 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-variables.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-variables.Tpo -c -o sipp_unittest-variables.obj `if test -f 'src/variables.cpp'; then $(CYGPATH_W) 'src/variables.cpp'; else $(CYGPATH_W) '$(srcdir)/src/variables.cpp'; fi` | |
| 1751 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-variables.Tpo $(DEPDIR)/sipp_unittest-variables.Po | |
| 1752 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/variables.cpp' object='sipp_unittest-variables.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1753 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1754 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-variables.obj `if test -f 'src/variables.cpp'; then $(CYGPATH_W) 'src/variables.cpp'; else $(CYGPATH_W) '$(srcdir)/src/variables.cpp'; fi` | |
| 1755 | + | |
| 1756 | +sipp_unittest-watchdog.o: src/watchdog.cpp | |
| 1757 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-watchdog.o -MD -MP -MF $(DEPDIR)/sipp_unittest-watchdog.Tpo -c -o sipp_unittest-watchdog.o `test -f 'src/watchdog.cpp' || echo '$(srcdir)/'`src/watchdog.cpp | |
| 1758 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-watchdog.Tpo $(DEPDIR)/sipp_unittest-watchdog.Po | |
| 1759 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/watchdog.cpp' object='sipp_unittest-watchdog.o' libtool=no @AMDEPBACKSLASH@ | |
| 1760 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1761 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-watchdog.o `test -f 'src/watchdog.cpp' || echo '$(srcdir)/'`src/watchdog.cpp | |
| 1762 | + | |
| 1763 | +sipp_unittest-watchdog.obj: src/watchdog.cpp | |
| 1764 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-watchdog.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-watchdog.Tpo -c -o sipp_unittest-watchdog.obj `if test -f 'src/watchdog.cpp'; then $(CYGPATH_W) 'src/watchdog.cpp'; else $(CYGPATH_W) '$(srcdir)/src/watchdog.cpp'; fi` | |
| 1765 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-watchdog.Tpo $(DEPDIR)/sipp_unittest-watchdog.Po | |
| 1766 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/watchdog.cpp' object='sipp_unittest-watchdog.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1767 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1768 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-watchdog.obj `if test -f 'src/watchdog.cpp'; then $(CYGPATH_W) 'src/watchdog.cpp'; else $(CYGPATH_W) '$(srcdir)/src/watchdog.cpp'; fi` | |
| 1769 | + | |
| 1770 | +sipp_unittest-rtpstream.o: src/rtpstream.cpp | |
| 1771 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-rtpstream.o -MD -MP -MF $(DEPDIR)/sipp_unittest-rtpstream.Tpo -c -o sipp_unittest-rtpstream.o `test -f 'src/rtpstream.cpp' || echo '$(srcdir)/'`src/rtpstream.cpp | |
| 1772 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-rtpstream.Tpo $(DEPDIR)/sipp_unittest-rtpstream.Po | |
| 1773 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/rtpstream.cpp' object='sipp_unittest-rtpstream.o' libtool=no @AMDEPBACKSLASH@ | |
| 1774 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1775 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-rtpstream.o `test -f 'src/rtpstream.cpp' || echo '$(srcdir)/'`src/rtpstream.cpp | |
| 1776 | + | |
| 1777 | +sipp_unittest-rtpstream.obj: src/rtpstream.cpp | |
| 1778 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-rtpstream.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-rtpstream.Tpo -c -o sipp_unittest-rtpstream.obj `if test -f 'src/rtpstream.cpp'; then $(CYGPATH_W) 'src/rtpstream.cpp'; else $(CYGPATH_W) '$(srcdir)/src/rtpstream.cpp'; fi` | |
| 1779 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-rtpstream.Tpo $(DEPDIR)/sipp_unittest-rtpstream.Po | |
| 1780 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/rtpstream.cpp' object='sipp_unittest-rtpstream.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1781 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1782 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-rtpstream.obj `if test -f 'src/rtpstream.cpp'; then $(CYGPATH_W) 'src/rtpstream.cpp'; else $(CYGPATH_W) '$(srcdir)/src/rtpstream.cpp'; fi` | |
| 1783 | + | |
| 1784 | +sipp_unittest-sipp_unittest.o: src/sipp_unittest.cpp | |
| 1785 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-sipp_unittest.o -MD -MP -MF $(DEPDIR)/sipp_unittest-sipp_unittest.Tpo -c -o sipp_unittest-sipp_unittest.o `test -f 'src/sipp_unittest.cpp' || echo '$(srcdir)/'`src/sipp_unittest.cpp | |
| 1786 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sipp_unittest.Tpo $(DEPDIR)/sipp_unittest-sipp_unittest.Po | |
| 1787 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sipp_unittest.cpp' object='sipp_unittest-sipp_unittest.o' libtool=no @AMDEPBACKSLASH@ | |
| 1788 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1789 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-sipp_unittest.o `test -f 'src/sipp_unittest.cpp' || echo '$(srcdir)/'`src/sipp_unittest.cpp | |
| 1790 | + | |
| 1791 | +sipp_unittest-sipp_unittest.obj: src/sipp_unittest.cpp | |
| 1792 | +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -MT sipp_unittest-sipp_unittest.obj -MD -MP -MF $(DEPDIR)/sipp_unittest-sipp_unittest.Tpo -c -o sipp_unittest-sipp_unittest.obj `if test -f 'src/sipp_unittest.cpp'; then $(CYGPATH_W) 'src/sipp_unittest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sipp_unittest.cpp'; fi` | |
| 1793 | +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sipp_unittest-sipp_unittest.Tpo $(DEPDIR)/sipp_unittest-sipp_unittest.Po | |
| 1794 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='src/sipp_unittest.cpp' object='sipp_unittest-sipp_unittest.obj' libtool=no @AMDEPBACKSLASH@ | |
| 1795 | +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ | |
| 1796 | +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sipp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o sipp_unittest-sipp_unittest.obj `if test -f 'src/sipp_unittest.cpp'; then $(CYGPATH_W) 'src/sipp_unittest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/sipp_unittest.cpp'; fi` | |
| 1797 | + | |
| 1798 | +ID: $(am__tagged_files) | |
| 1799 | + $(am__define_uniq_tagged_files); mkid -fID $$unique | |
| 1800 | +tags: tags-am | |
| 1801 | +TAGS: tags | |
| 1802 | + | |
| 1803 | +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |
| 1804 | + set x; \ | |
| 1805 | + here=`pwd`; \ | |
| 1806 | + $(am__define_uniq_tagged_files); \ | |
| 1807 | + shift; \ | |
| 1808 | + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ | |
| 1809 | + test -n "$$unique" || unique=$$empty_fix; \ | |
| 1810 | + if test $$# -gt 0; then \ | |
| 1811 | + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ | |
| 1812 | + "$$@" $$unique; \ | |
| 1813 | + else \ | |
| 1814 | + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ | |
| 1815 | + $$unique; \ | |
| 1816 | + fi; \ | |
| 1817 | + fi | |
| 1818 | +ctags: ctags-am | |
| 1819 | + | |
| 1820 | +CTAGS: ctags | |
| 1821 | +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) | |
| 1822 | + $(am__define_uniq_tagged_files); \ | |
| 1823 | + test -z "$(CTAGS_ARGS)$$unique" \ | |
| 1824 | + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ | |
| 1825 | + $$unique | |
| 1826 | + | |
| 1827 | +GTAGS: | |
| 1828 | + here=`$(am__cd) $(top_builddir) && pwd` \ | |
| 1829 | + && $(am__cd) $(top_srcdir) \ | |
| 1830 | + && gtags -i $(GTAGS_ARGS) "$$here" | |
| 1831 | +cscope: cscope.files | |
| 1832 | + test ! -s cscope.files \ | |
| 1833 | + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) | |
| 1834 | +clean-cscope: | |
| 1835 | + -rm -f cscope.files | |
| 1836 | +cscope.files: clean-cscope cscopelist | |
| 1837 | +cscopelist: cscopelist-am | |
| 1838 | + | |
| 1839 | +cscopelist-am: $(am__tagged_files) | |
| 1840 | + list='$(am__tagged_files)'; \ | |
| 1841 | + case "$(srcdir)" in \ | |
| 1842 | + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ | |
| 1843 | + *) sdir=$(subdir)/$(srcdir) ;; \ | |
| 1844 | + esac; \ | |
| 1845 | + for i in $$list; do \ | |
| 1846 | + if test -f "$$i"; then \ | |
| 1847 | + echo "$(subdir)/$$i"; \ | |
| 1848 | + else \ | |
| 1849 | + echo "$$sdir/$$i"; \ | |
| 1850 | + fi; \ | |
| 1851 | + done >> $(top_builddir)/cscope.files | |
| 1852 | + | |
| 1853 | +distclean-tags: | |
| 1854 | + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags | |
| 1855 | + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files | |
| 1856 | + | |
| 1857 | +# Recover from deleted '.trs' file; this should ensure that | |
| 1858 | +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create | |
| 1859 | +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells | |
| 1860 | +# to avoid problems with "make -n". | |
| 1861 | +.log.trs: | |
| 1862 | + rm -f $< $@ | |
| 1863 | + $(MAKE) $(AM_MAKEFLAGS) $< | |
| 1864 | + | |
| 1865 | +# Leading 'am--fnord' is there to ensure the list of targets does not | |
| 1866 | +# expand to empty, as could happen e.g. with make check TESTS=''. | |
| 1867 | +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) | |
| 1868 | +am--force-recheck: | |
| 1869 | + @: | |
| 1870 | + | |
| 1871 | +$(TEST_SUITE_LOG): $(TEST_LOGS) | |
| 1872 | + @$(am__set_TESTS_bases); \ | |
| 1873 | + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ | |
| 1874 | + redo_bases=`for i in $$bases; do \ | |
| 1875 | + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ | |
| 1876 | + done`; \ | |
| 1877 | + if test -n "$$redo_bases"; then \ | |
| 1878 | + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ | |
| 1879 | + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ | |
| 1880 | + if $(am__make_dryrun); then :; else \ | |
| 1881 | + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ | |
| 1882 | + fi; \ | |
| 1883 | + fi; \ | |
| 1884 | + if test -n "$$am__remaking_logs"; then \ | |
| 1885 | + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ | |
| 1886 | + "recursion detected" >&2; \ | |
| 1887 | + else \ | |
| 1888 | + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ | |
| 1889 | + fi; \ | |
| 1890 | + if $(am__make_dryrun); then :; else \ | |
| 1891 | + st=0; \ | |
| 1892 | + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ | |
| 1893 | + for i in $$redo_bases; do \ | |
| 1894 | + test -f $$i.trs && test -r $$i.trs \ | |
| 1895 | + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ | |
| 1896 | + test -f $$i.log && test -r $$i.log \ | |
| 1897 | + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ | |
| 1898 | + done; \ | |
| 1899 | + test $$st -eq 0 || exit 1; \ | |
| 1900 | + fi | |
| 1901 | + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ | |
| 1902 | + ws='[ ]'; \ | |
| 1903 | + results=`for b in $$bases; do echo $$b.trs; done`; \ | |
| 1904 | + test -n "$$results" || results=/dev/null; \ | |
| 1905 | + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ | |
| 1906 | + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ | |
| 1907 | + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ | |
| 1908 | + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ | |
| 1909 | + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ | |
| 1910 | + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ | |
| 1911 | + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ | |
| 1912 | + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ | |
| 1913 | + success=true; \ | |
| 1914 | + else \ | |
| 1915 | + success=false; \ | |
| 1916 | + fi; \ | |
| 1917 | + br='==================='; br=$$br$$br$$br$$br; \ | |
| 1918 | + result_count () \ | |
| 1919 | + { \ | |
| 1920 | + if test x"$$1" = x"--maybe-color"; then \ | |
| 1921 | + maybe_colorize=yes; \ | |
| 1922 | + elif test x"$$1" = x"--no-color"; then \ | |
| 1923 | + maybe_colorize=no; \ | |
| 1924 | + else \ | |
| 1925 | + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ | |
| 1926 | + fi; \ | |
| 1927 | + shift; \ | |
| 1928 | + desc=$$1 count=$$2; \ | |
| 1929 | + if test $$maybe_colorize = yes && test $$count -gt 0; then \ | |
| 1930 | + color_start=$$3 color_end=$$std; \ | |
| 1931 | + else \ | |
| 1932 | + color_start= color_end=; \ | |
| 1933 | + fi; \ | |
| 1934 | + echo "$${color_start}# $$desc $$count$${color_end}"; \ | |
| 1935 | + }; \ | |
| 1936 | + create_testsuite_report () \ | |
| 1937 | + { \ | |
| 1938 | + result_count $$1 "TOTAL:" $$all "$$brg"; \ | |
| 1939 | + result_count $$1 "PASS: " $$pass "$$grn"; \ | |
| 1940 | + result_count $$1 "SKIP: " $$skip "$$blu"; \ | |
| 1941 | + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ | |
| 1942 | + result_count $$1 "FAIL: " $$fail "$$red"; \ | |
| 1943 | + result_count $$1 "XPASS:" $$xpass "$$red"; \ | |
| 1944 | + result_count $$1 "ERROR:" $$error "$$mgn"; \ | |
| 1945 | + }; \ | |
| 1946 | + { \ | |
| 1947 | + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ | |
| 1948 | + $(am__rst_title); \ | |
| 1949 | + create_testsuite_report --no-color; \ | |
| 1950 | + echo; \ | |
| 1951 | + echo ".. contents:: :depth: 2"; \ | |
| 1952 | + echo; \ | |
| 1953 | + for b in $$bases; do echo $$b; done \ | |
| 1954 | + | $(am__create_global_log); \ | |
| 1955 | + } >$(TEST_SUITE_LOG).tmp || exit 1; \ | |
| 1956 | + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ | |
| 1957 | + if $$success; then \ | |
| 1958 | + col="$$grn"; \ | |
| 1959 | + else \ | |
| 1960 | + col="$$red"; \ | |
| 1961 | + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ | |
| 1962 | + fi; \ | |
| 1963 | + echo "$${col}$$br$${std}"; \ | |
| 1964 | + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ | |
| 1965 | + echo "$${col}$$br$${std}"; \ | |
| 1966 | + create_testsuite_report --maybe-color; \ | |
| 1967 | + echo "$$col$$br$$std"; \ | |
| 1968 | + if $$success; then :; else \ | |
| 1969 | + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ | |
| 1970 | + if test -n "$(PACKAGE_BUGREPORT)"; then \ | |
| 1971 | + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ | |
| 1972 | + fi; \ | |
| 1973 | + echo "$$col$$br$$std"; \ | |
| 1974 | + fi; \ | |
| 1975 | + $$success || exit 1 | |
| 1976 | + | |
| 1977 | +check-TESTS: | |
| 1978 | + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list | |
| 1979 | + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list | |
| 1980 | + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) | |
| 1981 | + @set +e; $(am__set_TESTS_bases); \ | |
| 1982 | + log_list=`for i in $$bases; do echo $$i.log; done`; \ | |
| 1983 | + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ | |
| 1984 | + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ | |
| 1985 | + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ | |
| 1986 | + exit $$?; | |
| 1987 | +recheck: all | |
| 1988 | + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) | |
| 1989 | + @set +e; $(am__set_TESTS_bases); \ | |
| 1990 | + bases=`for i in $$bases; do echo $$i; done \ | |
| 1991 | + | $(am__list_recheck_tests)` || exit 1; \ | |
| 1992 | + log_list=`for i in $$bases; do echo $$i.log; done`; \ | |
| 1993 | + log_list=`echo $$log_list`; \ | |
| 1994 | + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ | |
| 1995 | + am__force_recheck=am--force-recheck \ | |
| 1996 | + TEST_LOGS="$$log_list"; \ | |
| 1997 | + exit $$? | |
| 1998 | +sipp_unittest.log: sipp_unittest$(EXEEXT) | |
| 1999 | + @p='sipp_unittest$(EXEEXT)'; \ | |
| 2000 | + b='sipp_unittest'; \ | |
| 2001 | + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ | |
| 2002 | + --log-file $$b.log --trs-file $$b.trs \ | |
| 2003 | + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ | |
| 2004 | + "$$tst" $(AM_TESTS_FD_REDIRECT) | |
| 2005 | +.test.log: | |
| 2006 | + @p='$<'; \ | |
| 2007 | + $(am__set_b); \ | |
| 2008 | + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ | |
| 2009 | + --log-file $$b.log --trs-file $$b.trs \ | |
| 2010 | + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ | |
| 2011 | + "$$tst" $(AM_TESTS_FD_REDIRECT) | |
| 2012 | +@am__EXEEXT_TRUE@.test$(EXEEXT).log: | |
| 2013 | +@am__EXEEXT_TRUE@ @p='$<'; \ | |
| 2014 | +@am__EXEEXT_TRUE@ $(am__set_b); \ | |
| 2015 | +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ | |
| 2016 | +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ | |
| 2017 | +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ | |
| 2018 | +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) | |
| 2019 | + | |
| 2020 | +distdir: $(DISTFILES) | |
| 2021 | + $(am__remove_distdir) | |
| 2022 | + test -d "$(distdir)" || mkdir "$(distdir)" | |
| 2023 | + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | |
| 2024 | + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ | |
| 2025 | + list='$(DISTFILES)'; \ | |
| 2026 | + dist_files=`for file in $$list; do echo $$file; done | \ | |
| 2027 | + sed -e "s|^$$srcdirstrip/||;t" \ | |
| 2028 | + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ | |
| 2029 | + case $$dist_files in \ | |
| 2030 | + */*) $(MKDIR_P) `echo "$$dist_files" | \ | |
| 2031 | + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ | |
| 2032 | + sort -u` ;; \ | |
| 2033 | + esac; \ | |
| 2034 | + for file in $$dist_files; do \ | |
| 2035 | + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ | |
| 2036 | + if test -d $$d/$$file; then \ | |
| 2037 | + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ | |
| 2038 | + if test -d "$(distdir)/$$file"; then \ | |
| 2039 | + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ | |
| 2040 | + fi; \ | |
| 2041 | + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ | |
| 2042 | + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ | |
| 2043 | + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ | |
| 2044 | + fi; \ | |
| 2045 | + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ | |
| 2046 | + else \ | |
| 2047 | + test -f "$(distdir)/$$file" \ | |
| 2048 | + || cp -p $$d/$$file "$(distdir)/$$file" \ | |
| 2049 | + || exit 1; \ | |
| 2050 | + fi; \ | |
| 2051 | + done | |
| 2052 | + -test -n "$(am__skip_mode_fix)" \ | |
| 2053 | + || find "$(distdir)" -type d ! -perm -755 \ | |
| 2054 | + -exec chmod u+rwx,go+rx {} \; -o \ | |
| 2055 | + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ | |
| 2056 | + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ | |
| 2057 | + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ | |
| 2058 | + || chmod -R a+r "$(distdir)" | |
| 2059 | +dist-gzip: distdir | |
| 2060 | + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz | |
| 2061 | + $(am__post_remove_distdir) | |
| 2062 | + | |
| 2063 | +dist-bzip2: distdir | |
| 2064 | + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 | |
| 2065 | + $(am__post_remove_distdir) | |
| 2066 | + | |
| 2067 | +dist-lzip: distdir | |
| 2068 | + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz | |
| 2069 | + $(am__post_remove_distdir) | |
| 2070 | + | |
| 2071 | +dist-xz: distdir | |
| 2072 | + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz | |
| 2073 | + $(am__post_remove_distdir) | |
| 2074 | + | |
| 2075 | +dist-tarZ: distdir | |
| 2076 | + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z | |
| 2077 | + $(am__post_remove_distdir) | |
| 2078 | + | |
| 2079 | +dist-shar: distdir | |
| 2080 | + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz | |
| 2081 | + $(am__post_remove_distdir) | |
| 2082 | + | |
| 2083 | +dist-zip: distdir | |
| 2084 | + -rm -f $(distdir).zip | |
| 2085 | + zip -rq $(distdir).zip $(distdir) | |
| 2086 | + $(am__post_remove_distdir) | |
| 2087 | + | |
| 2088 | +dist dist-all: | |
| 2089 | + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' | |
| 2090 | + $(am__post_remove_distdir) | |
| 2091 | + | |
| 2092 | +# This target untars the dist file and tries a VPATH configuration. Then | |
| 2093 | +# it guarantees that the distribution is self-contained by making another | |
| 2094 | +# tarfile. | |
| 2095 | +distcheck: dist | |
| 2096 | + case '$(DIST_ARCHIVES)' in \ | |
| 2097 | + *.tar.gz*) \ | |
| 2098 | + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ | |
| 2099 | + *.tar.bz2*) \ | |
| 2100 | + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ | |
| 2101 | + *.tar.lz*) \ | |
| 2102 | + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ | |
| 2103 | + *.tar.xz*) \ | |
| 2104 | + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ | |
| 2105 | + *.tar.Z*) \ | |
| 2106 | + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ | |
| 2107 | + *.shar.gz*) \ | |
| 2108 | + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ | |
| 2109 | + *.zip*) \ | |
| 2110 | + unzip $(distdir).zip ;;\ | |
| 2111 | + esac | |
| 2112 | + chmod -R a-w $(distdir) | |
| 2113 | + chmod u+w $(distdir) | |
| 2114 | + mkdir $(distdir)/_build $(distdir)/_inst | |
| 2115 | + chmod a-w $(distdir) | |
| 2116 | + test -d $(distdir)/_build || exit 0; \ | |
| 2117 | + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ | |
| 2118 | + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ | |
| 2119 | + && am__cwd=`pwd` \ | |
| 2120 | + && $(am__cd) $(distdir)/_build \ | |
| 2121 | + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ | |
| 2122 | + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ | |
| 2123 | + $(DISTCHECK_CONFIGURE_FLAGS) \ | |
| 2124 | + && $(MAKE) $(AM_MAKEFLAGS) \ | |
| 2125 | + && $(MAKE) $(AM_MAKEFLAGS) dvi \ | |
| 2126 | + && $(MAKE) $(AM_MAKEFLAGS) check \ | |
| 2127 | + && $(MAKE) $(AM_MAKEFLAGS) install \ | |
| 2128 | + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ | |
| 2129 | + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ | |
| 2130 | + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ | |
| 2131 | + distuninstallcheck \ | |
| 2132 | + && chmod -R a-w "$$dc_install_base" \ | |
| 2133 | + && ({ \ | |
| 2134 | + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ | |
| 2135 | + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ | |
| 2136 | + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ | |
| 2137 | + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ | |
| 2138 | + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ | |
| 2139 | + } || { rm -rf "$$dc_destdir"; exit 1; }) \ | |
| 2140 | + && rm -rf "$$dc_destdir" \ | |
| 2141 | + && $(MAKE) $(AM_MAKEFLAGS) dist \ | |
| 2142 | + && rm -rf $(DIST_ARCHIVES) \ | |
| 2143 | + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ | |
| 2144 | + && cd "$$am__cwd" \ | |
| 2145 | + || exit 1 | |
| 2146 | + $(am__post_remove_distdir) | |
| 2147 | + @(echo "$(distdir) archives ready for distribution: "; \ | |
| 2148 | + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ | |
| 2149 | + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' | |
| 2150 | +distuninstallcheck: | |
| 2151 | + @test -n '$(distuninstallcheck_dir)' || { \ | |
| 2152 | + echo 'ERROR: trying to run $@ with an empty' \ | |
| 2153 | + '$$(distuninstallcheck_dir)' >&2; \ | |
| 2154 | + exit 1; \ | |
| 2155 | + }; \ | |
| 2156 | + $(am__cd) '$(distuninstallcheck_dir)' || { \ | |
| 2157 | + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ | |
| 2158 | + exit 1; \ | |
| 2159 | + }; \ | |
| 2160 | + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ | |
| 2161 | + || { echo "ERROR: files left after uninstall:" ; \ | |
| 2162 | + if test -n "$(DESTDIR)"; then \ | |
| 2163 | + echo " (check DESTDIR support)"; \ | |
| 2164 | + fi ; \ | |
| 2165 | + $(distuninstallcheck_listfiles) ; \ | |
| 2166 | + exit 1; } >&2 | |
| 2167 | +distcleancheck: distclean | |
| 2168 | + @if test '$(srcdir)' = . ; then \ | |
| 2169 | + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ | |
| 2170 | + exit 1 ; \ | |
| 2171 | + fi | |
| 2172 | + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ | |
| 2173 | + || { echo "ERROR: files left in build directory after distclean:" ; \ | |
| 2174 | + $(distcleancheck_listfiles) ; \ | |
| 2175 | + exit 1; } >&2 | |
| 2176 | +check-am: all-am | |
| 2177 | + $(MAKE) $(AM_MAKEFLAGS) check-TESTS | |
| 2178 | +check: check-am | |
| 2179 | +all-am: Makefile $(PROGRAMS) | |
| 2180 | +installdirs: | |
| 2181 | + for dir in "$(DESTDIR)$(bindir)"; do \ | |
| 2182 | + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ | |
| 2183 | + done | |
| 2184 | +install: install-am | |
| 2185 | +install-exec: install-exec-am | |
| 2186 | +install-data: install-data-am | |
| 2187 | +uninstall: uninstall-am | |
| 2188 | + | |
| 2189 | +install-am: all-am | |
| 2190 | + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am | |
| 2191 | + | |
| 2192 | +installcheck: installcheck-am | |
| 2193 | +install-strip: | |
| 2194 | + if test -z '$(STRIP)'; then \ | |
| 2195 | + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ | |
| 2196 | + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ | |
| 2197 | + install; \ | |
| 2198 | + else \ | |
| 2199 | + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ | |
| 2200 | + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ | |
| 2201 | + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ | |
| 2202 | + fi | |
| 2203 | +mostlyclean-generic: | |
| 2204 | + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) | |
| 2205 | + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) | |
| 2206 | + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) | |
| 2207 | + | |
| 2208 | +clean-generic: | |
| 2209 | + | |
| 2210 | +distclean-generic: | |
| 2211 | + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) | |
| 2212 | + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) | |
| 2213 | + | |
| 2214 | +maintainer-clean-generic: | |
| 2215 | + @echo "This command is intended for maintainers to use" | |
| 2216 | + @echo "it deletes files that may require special tools to rebuild." | |
| 2217 | +clean: clean-am | |
| 2218 | + | |
| 2219 | +clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \ | |
| 2220 | + mostlyclean-am | |
| 2221 | + | |
| 2222 | +distclean: distclean-am | |
| 2223 | + -rm -f $(am__CONFIG_DISTCLEAN_FILES) | |
| 2224 | + -rm -rf ./$(DEPDIR) | |
| 2225 | + -rm -f Makefile | |
| 2226 | +distclean-am: clean-am distclean-compile distclean-generic \ | |
| 2227 | + distclean-hdr distclean-tags | |
| 2228 | + | |
| 2229 | +dvi: dvi-am | |
| 2230 | + | |
| 2231 | +dvi-am: | |
| 2232 | + | |
| 2233 | +html: html-am | |
| 2234 | + | |
| 2235 | +html-am: | |
| 2236 | + | |
| 2237 | +info: info-am | |
| 2238 | + | |
| 2239 | +info-am: | |
| 2240 | + | |
| 2241 | +install-data-am: | |
| 2242 | + | |
| 2243 | +install-dvi: install-dvi-am | |
| 2244 | + | |
| 2245 | +install-dvi-am: | |
| 2246 | + | |
| 2247 | +install-exec-am: install-binPROGRAMS | |
| 2248 | + | |
| 2249 | +install-html: install-html-am | |
| 2250 | + | |
| 2251 | +install-html-am: | |
| 2252 | + | |
| 2253 | +install-info: install-info-am | |
| 2254 | + | |
| 2255 | +install-info-am: | |
| 2256 | + | |
| 2257 | +install-man: | |
| 2258 | + | |
| 2259 | +install-pdf: install-pdf-am | |
| 2260 | + | |
| 2261 | +install-pdf-am: | |
| 2262 | + | |
| 2263 | +install-ps: install-ps-am | |
| 2264 | + | |
| 2265 | +install-ps-am: | |
| 2266 | + | |
| 2267 | +installcheck-am: | |
| 2268 | + | |
| 2269 | +maintainer-clean: maintainer-clean-am | |
| 2270 | + -rm -f $(am__CONFIG_DISTCLEAN_FILES) | |
| 2271 | + -rm -rf $(top_srcdir)/autom4te.cache | |
| 2272 | + -rm -rf ./$(DEPDIR) | |
| 2273 | + -rm -f Makefile | |
| 2274 | +maintainer-clean-am: distclean-am maintainer-clean-generic | |
| 2275 | + | |
| 2276 | +mostlyclean: mostlyclean-am | |
| 2277 | + | |
| 2278 | +mostlyclean-am: mostlyclean-compile mostlyclean-generic | |
| 2279 | + | |
| 2280 | +pdf: pdf-am | |
| 2281 | + | |
| 2282 | +pdf-am: | |
| 2283 | + | |
| 2284 | +ps: ps-am | |
| 2285 | + | |
| 2286 | +ps-am: | |
| 2287 | + | |
| 2288 | +uninstall-am: uninstall-binPROGRAMS | |
| 2289 | + | |
| 2290 | +.MAKE: check-am install-am install-strip | |
| 2291 | + | |
| 2292 | +.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \ | |
| 2293 | + check-am clean clean-binPROGRAMS clean-cscope clean-generic \ | |
| 2294 | + clean-noinstPROGRAMS cscope cscopelist-am ctags ctags-am dist \ | |
| 2295 | + dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ | |
| 2296 | + dist-xz dist-zip distcheck distclean distclean-compile \ | |
| 2297 | + distclean-generic distclean-hdr distclean-tags distcleancheck \ | |
| 2298 | + distdir distuninstallcheck dvi dvi-am html html-am info \ | |
| 2299 | + info-am install install-am install-binPROGRAMS install-data \ | |
| 2300 | + install-data-am install-dvi install-dvi-am install-exec \ | |
| 2301 | + install-exec-am install-html install-html-am install-info \ | |
| 2302 | + install-info-am install-man install-pdf install-pdf-am \ | |
| 2303 | + install-ps install-ps-am install-strip installcheck \ | |
| 2304 | + installcheck-am installdirs maintainer-clean \ | |
| 2305 | + maintainer-clean-generic mostlyclean mostlyclean-compile \ | |
| 2306 | + mostlyclean-generic pdf pdf-am ps ps-am recheck tags tags-am \ | |
| 2307 | + uninstall uninstall-am uninstall-binPROGRAMS | |
| 2308 | + | |
| 2309 | + | |
| 2310 | +# Tell versions [3.59,3.63) of GNU make to not export all variables. | |
| 2311 | +# Otherwise a system limit (for SysV at least) may be exceeded. | |
| 2312 | +.NOEXPORT: | ... | ... |
README
100644 → 100755
README.txt
0 → 100644
| 1 | +# SIPp - a SIP protocol test tool | |
| 2 | +# Copyright (C) 2003-2013 - The Authors | |
| 3 | +# This program is free software: you can redistribute it and/or modify | |
| 4 | +# it under the terms of the GNU General Public License as published by | |
| 5 | +# the Free Software Foundation, either version 3 of the License, or | |
| 6 | +# (at your option) any later version. | |
| 7 | +# | |
| 8 | +# This program is distributed in the hope that it will be useful, | |
| 9 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 10 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 11 | +# GNU General Public License for more details. | |
| 12 | +# | |
| 13 | +# You should have received a copy of the GNU General Public License | |
| 14 | +# along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 15 | + | |
| 16 | +BUILDING | |
| 17 | +******** | |
| 18 | + | |
| 19 | +This is the SIPp package. Please refer to the | |
| 20 | +http://sipp.sourceforge.net/ webpage for details and download of the | |
| 21 | +last version. | |
| 22 | + | |
| 23 | +Normally, you should be able to build SIPp by just typing "./configure | |
| 24 | +--with-pcap --with-sctp; make" in the current directory. Then "sipp | |
| 25 | +-h" will give you access to the online help. | |
| 26 | + | |
| 27 | +CONTRIBUTING | |
| 28 | +************ | |
| 29 | + | |
| 30 | +SIPp is free software, under the terms of the GPL licence (see the | |
| 31 | +LICENCE.txt file for details). You can contribute to the development | |
| 32 | +of SIPp and contact us via Sourceforge to integrate your changes. If | |
| 33 | +you make changes in SIPp, *PLEASE* follow a few coding rules: | |
| 34 | + | |
| 35 | + - Use 80 columns code, | |
| 36 | + | |
| 37 | + - Do *NOT* use tabulations for indentation. Use spaces. | |
| 38 | + | |
| 39 | + - Please stay conform with the current indentation style (2 spaces | |
| 40 | + indent, standard Emacs-like indentation). Examples: | |
| 41 | + | |
| 42 | + if (condition) { | |
| 43 | + f(); | |
| 44 | + } else { | |
| 45 | + g(); | |
| 46 | + } | |
| 47 | + | |
| 48 | + - Use "{" in if conditions even if there is only one instruction | |
| 49 | + (see example above). | |
| 50 | + | |
| 51 | + - If possible, check your changes can be compiled on: | |
| 52 | + - Linux, | |
| 53 | + - Cygwin, | |
| 54 | + - FreeBSD. | |
| 55 | + | |
| 56 | + (We can provide help on these portability points). | |
| 57 | + | |
| 58 | +Thanks, | |
| 59 | + | |
| 60 | + Rob Day <rkd@rkd.me.uk> | ... | ... |
THANKS
0 → 100644
| 1 | +The following people have contributed code or other elements to SIPp: | |
| 2 | + | |
| 3 | +Richard Gayraud | |
| 4 | +Marc Lamberton | |
| 5 | +Olivier Jacques | |
| 6 | +Herve Pellan | |
| 7 | +David Mansutti | |
| 8 | +Francois-Xavier Kowalski | |
| 9 | +Gerard Lyonnaz | |
| 10 | +Francois Draperi | |
| 11 | +F. Tarek Rogers | |
| 12 | +Peter Higginson | |
| 13 | +Vincent Luba | |
| 14 | +Shriram Natarajan | |
| 15 | +Guillaume Teissier | |
| 16 | +Clement Chen | |
| 17 | +Wolfgang Beck | |
| 18 | +Charles P Wright | |
| 19 | +Martin Van Leeuwen | |
| 20 | +Andy Aicken | |
| 21 | +Michael Hirschbichler | |
| 22 | +Rob Day | |
| 23 | +Dmitry Semyonov | |
| 24 | +Jordan Walbesser | |
| 25 | +Ken Crowell | |
| 26 | +Peter Lemenkov | |
| 27 | +Menyus Hegedűs | |
| 28 | +Mitko Mitev | |
| 29 | +Matt Williams | |
| 30 | +Richard Brady | |
| 31 | +Natanael Copa | |
| 32 | + | |
| 33 | +SIPp also uses code originally by Aaron Turner (send_packets.c) and L Peter | |
| 34 | +Deutsch (md5.c). | |
| 35 | + | |
| 36 | +The following people have contributed to SIPp in other useful ways (bug reports, testing, etc.): | |
| 37 | +Paul Belanger | |
| 38 | +Jan Stanek | |
| 39 | +Enrico Hartung | |
| 40 | +Daniel Swärd | |
| 41 | +Paul D Smith | |
| 42 | +Ferenc Wágner | ... | ... |
aclocal.m4
0 → 100644
| 1 | +# generated automatically by aclocal 1.13.3 -*- Autoconf -*- | |
| 2 | + | |
| 3 | +# Copyright (C) 1996-2013 Free Software Foundation, Inc. | |
| 4 | + | |
| 5 | +# This file is free software; the Free Software Foundation | |
| 6 | +# gives unlimited permission to copy and/or distribute it, | |
| 7 | +# with or without modifications, as long as this notice is preserved. | |
| 8 | + | |
| 9 | +# This program is distributed in the hope that it will be useful, | |
| 10 | +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without | |
| 11 | +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A | |
| 12 | +# PARTICULAR PURPOSE. | |
| 13 | + | |
| 14 | +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) | |
| 15 | +m4_ifndef([AC_AUTOCONF_VERSION], | |
| 16 | + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | |
| 17 | +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, | |
| 18 | +[m4_warning([this file was generated for autoconf 2.69. | |
| 19 | +You have another version of autoconf. It may work, but is not guaranteed to. | |
| 20 | +If you have problems, you may need to regenerate the build system entirely. | |
| 21 | +To do so, use the procedure documented by the package, typically 'autoreconf'.])]) | |
| 22 | + | |
| 23 | +# =========================================================================== | |
| 24 | +# http://www.gnu.org/software/autoconf-archive/ax_config_feature.html | |
| 25 | +# =========================================================================== | |
| 26 | +# | |
| 27 | +# SYNOPSIS | |
| 28 | +# | |
| 29 | +# AX_CONFIG_FEATURE(FEATURE-NAME, FEATURE-DESCRIPTION, DEFINE, DEFINE-DESCRIPTION, [ACTION-IF-ENABLED [, ACTION-IF-NOT-ENABLED]]) | |
| 30 | +# | |
| 31 | +# DESCRIPTION | |
| 32 | +# | |
| 33 | +# AX_CONFIG_FEATURE is a simple wrapper for AC_ARG_ENABLE, it enables the | |
| 34 | +# feature FEATURE-NAME and AC_DEFINEs the passed DEFINE, depending on the | |
| 35 | +# user choice. DESCRIPTION will be used for AC_DEFINEs. ACTION-IF-ENABLED | |
| 36 | +# and ACTION-IF-NOT-ENABLED are the actions that will be run. A feature is | |
| 37 | +# enabled by default, in order to change this behaviour use the | |
| 38 | +# AX_CONFIG_FEATURE_DEFAULT_ENABLED and AX_CONFIG_FEATURE_DEFAULT_DISABLED | |
| 39 | +# macros. | |
| 40 | +# | |
| 41 | +# A simple example: | |
| 42 | +# | |
| 43 | +# AX_CONFIG_FEATURE_DEFAULT_ENABLED | |
| 44 | +# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], | |
| 45 | +# HAVE_XXXXX, [Define if you want XXXXX support]) | |
| 46 | +# | |
| 47 | +# ... | |
| 48 | +# | |
| 49 | +# AX_CONFIG_FEATURE_DEFAULT_DISABLED | |
| 50 | +# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], | |
| 51 | +# HAVE_YYYYY, [Define if you want YYYYY support], | |
| 52 | +# [enable_yyyyy="yes"], [enable_yyyyy="no"]) | |
| 53 | +# AM_CONDITIONAL(YYYYY, [test "$enable_yyyyy" = "yes"]) | |
| 54 | +# | |
| 55 | +# AX_CONFIG_FEATURE_DEFAULT_ENABLED | |
| 56 | +# AX_CONFIG_FEATURE(...) | |
| 57 | +# | |
| 58 | +# ... | |
| 59 | +# | |
| 60 | +# If you have lot of features and you want a verbose dumping of each user | |
| 61 | +# selection use AX_CONFIG_FEATURE_VERBOSE. Use AX_CONFIG_FEATURE_SILENT in | |
| 62 | +# order to remove a previously AX_CONFIG_FEATURE_VERBOSE. By default | |
| 63 | +# features are silent. | |
| 64 | +# | |
| 65 | +# Use AX_CONFIG_FEATURE_ENABLE or AX_CONFIG_FEATURE_DISABLE in order to | |
| 66 | +# enable or disable a specific feature. | |
| 67 | +# | |
| 68 | +# Another simple example: | |
| 69 | +# | |
| 70 | +# AS_IF([some_test_here],[AX_CONFIG_FEATURE_ENABLE(feature_xxxxx)],[]) | |
| 71 | +# | |
| 72 | +# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], | |
| 73 | +# HAVE_XXXXX, [Define if you want XXXXX support]) | |
| 74 | +# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], | |
| 75 | +# HAVE_YYYYY, [Define if you want YYYYY support], | |
| 76 | +# [enable_yyyyy="yes"], [enable_yyyyy="no"]) | |
| 77 | +# | |
| 78 | +# ... | |
| 79 | +# | |
| 80 | +# NOTE: AX_CONFIG_FEATURE_ENABLE() must be placed first of the relative | |
| 81 | +# AX_CONFIG_FEATURE() macro ... | |
| 82 | +# | |
| 83 | +# LICENSE | |
| 84 | +# | |
| 85 | +# Copyright (c) 2008 Francesco Salvestrini <salvestrini@users.sourceforge.net> | |
| 86 | +# | |
| 87 | +# This program is free software; you can redistribute it and/or modify it | |
| 88 | +# under the terms of the GNU General Public License as published by the | |
| 89 | +# Free Software Foundation; either version 2 of the License, or (at your | |
| 90 | +# option) any later version. | |
| 91 | +# | |
| 92 | +# This program is distributed in the hope that it will be useful, but | |
| 93 | +# WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 94 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | |
| 95 | +# Public License for more details. | |
| 96 | +# | |
| 97 | +# You should have received a copy of the GNU General Public License along | |
| 98 | +# with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 99 | +# | |
| 100 | +# As a special exception, the respective Autoconf Macro's copyright owner | |
| 101 | +# gives unlimited permission to copy, distribute and modify the configure | |
| 102 | +# scripts that are the output of Autoconf when processing the Macro. You | |
| 103 | +# need not follow the terms of the GNU General Public License when using | |
| 104 | +# or distributing such scripts, even though portions of the text of the | |
| 105 | +# Macro appear in them. The GNU General Public License (GPL) does govern | |
| 106 | +# all other use of the material that constitutes the Autoconf Macro. | |
| 107 | +# | |
| 108 | +# This special exception to the GPL applies to versions of the Autoconf | |
| 109 | +# Macro released by the Autoconf Archive. When you make and distribute a | |
| 110 | +# modified version of the Autoconf Macro, you may extend this special | |
| 111 | +# exception to the GPL to apply to your modified version as well. | |
| 112 | + | |
| 113 | +#serial 10 | |
| 114 | + | |
| 115 | +AC_DEFUN([AX_CONFIG_FEATURE],[ dnl | |
| 116 | +m4_pushdef([FEATURE], patsubst([$1], -, _))dnl | |
| 117 | + | |
| 118 | +AC_ARG_ENABLE([$1],AS_HELP_STRING([--enable-$1],[$2]),[ | |
| 119 | +case "${enableval}" in | |
| 120 | + yes) | |
| 121 | + ax_config_feature_[]FEATURE[]="yes" | |
| 122 | + ;; | |
| 123 | + no) | |
| 124 | + ax_config_feature_[]FEATURE[]="no" | |
| 125 | + ;; | |
| 126 | + *) | |
| 127 | + AC_MSG_ERROR([bad value ${enableval} for feature --$1]) | |
| 128 | + ;; | |
| 129 | +esac | |
| 130 | +]) | |
| 131 | + | |
| 132 | +AS_IF([test "$ax_config_feature_[]FEATURE[]" = yes],[ dnl | |
| 133 | + AC_DEFINE([$3]) | |
| 134 | + $5 | |
| 135 | + AS_IF([test "$ax_config_feature_verbose" = yes],[ dnl | |
| 136 | + AC_MSG_NOTICE([Feature $1 is enabled]) | |
| 137 | + ]) | |
| 138 | +],[ dnl | |
| 139 | + $6 | |
| 140 | + AS_IF([test "$ax_config_feature_verbose" = yes],[ dnl | |
| 141 | + AC_MSG_NOTICE([Feature $1 is disabled]) | |
| 142 | + ]) | |
| 143 | +]) | |
| 144 | + | |
| 145 | +AH_TEMPLATE([$3],[$4]) | |
| 146 | + | |
| 147 | +m4_popdef([FEATURE])dnl | |
| 148 | +]) | |
| 149 | + | |
| 150 | +dnl Feature global | |
| 151 | +AC_DEFUN([AX_CONFIG_FEATURE_VERBOSE],[ dnl | |
| 152 | + ax_config_feature_verbose=yes | |
| 153 | +]) | |
| 154 | + | |
| 155 | +dnl Feature global | |
| 156 | +AC_DEFUN([AX_CONFIG_FEATURE_SILENT],[ dnl | |
| 157 | + ax_config_feature_verbose=no | |
| 158 | +]) | |
| 159 | + | |
| 160 | +dnl Feature specific | |
| 161 | +AC_DEFUN([AX_CONFIG_FEATURE_DEFAULT_ENABLED], [ | |
| 162 | + ax_config_feature_[]FEATURE[]_default=yes | |
| 163 | +]) | |
| 164 | + | |
| 165 | +dnl Feature specific | |
| 166 | +AC_DEFUN([AX_CONFIG_FEATURE_DEFAULT_DISABLED], [ | |
| 167 | + ax_config_feature_[]FEATURE[]_default=no | |
| 168 | +]) | |
| 169 | + | |
| 170 | +dnl Feature specific | |
| 171 | +AC_DEFUN([AX_CONFIG_FEATURE_ENABLE],[ dnl | |
| 172 | + ax_config_feature_[]patsubst([$1], -, _)[]=yes | |
| 173 | +]) | |
| 174 | + | |
| 175 | +dnl Feature specific | |
| 176 | +AC_DEFUN([AX_CONFIG_FEATURE_DISABLE],[ dnl | |
| 177 | + ax_config_feature_[]patsubst([$1], -, _)[]=no | |
| 178 | +]) | |
| 179 | + | |
| 180 | +# =========================================================================== | |
| 181 | +# http://www.gnu.org/software/autoconf-archive/ax_have_epoll.html | |
| 182 | +# =========================================================================== | |
| 183 | +# | |
| 184 | +# SYNOPSIS | |
| 185 | +# | |
| 186 | +# AX_HAVE_EPOLL([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | |
| 187 | +# AX_HAVE_EPOLL_PWAIT([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | |
| 188 | +# | |
| 189 | +# DESCRIPTION | |
| 190 | +# | |
| 191 | +# This macro determines whether the system supports the epoll I/O event | |
| 192 | +# interface. A neat usage example would be: | |
| 193 | +# | |
| 194 | +# AX_HAVE_EPOLL( | |
| 195 | +# [AX_CONFIG_FEATURE_ENABLE(epoll)], | |
| 196 | +# [AX_CONFIG_FEATURE_DISABLE(epoll)]) | |
| 197 | +# AX_CONFIG_FEATURE( | |
| 198 | +# [epoll], [This platform supports epoll(7)], | |
| 199 | +# [HAVE_EPOLL], [This platform supports epoll(7).]) | |
| 200 | +# | |
| 201 | +# The epoll interface was added to the Linux kernel in version 2.5.45, and | |
| 202 | +# the macro verifies that a kernel newer than this is installed. This | |
| 203 | +# check is somewhat unreliable if <linux/version.h> doesn't match the | |
| 204 | +# running kernel, but it is necessary regardless, because glibc comes with | |
| 205 | +# stubs for the epoll_create(), epoll_wait(), etc. that allow programs to | |
| 206 | +# compile and link even if the kernel is too old; the problem would then | |
| 207 | +# be detected only at runtime. | |
| 208 | +# | |
| 209 | +# Linux kernel version 2.6.19 adds the epoll_pwait() call in addition to | |
| 210 | +# epoll_wait(). The availability of that function can be tested with the | |
| 211 | +# second macro. Generally speaking, it is safe to assume that | |
| 212 | +# AX_HAVE_EPOLL would succeed if AX_HAVE_EPOLL_PWAIT has, but not the | |
| 213 | +# other way round. | |
| 214 | +# | |
| 215 | +# LICENSE | |
| 216 | +# | |
| 217 | +# Copyright (c) 2008 Peter Simons <simons@cryp.to> | |
| 218 | +# | |
| 219 | +# Copying and distribution of this file, with or without modification, are | |
| 220 | +# permitted in any medium without royalty provided the copyright notice | |
| 221 | +# and this notice are preserved. This file is offered as-is, without any | |
| 222 | +# warranty. | |
| 223 | + | |
| 224 | +#serial 10 | |
| 225 | + | |
| 226 | +AC_DEFUN([AX_HAVE_EPOLL], [dnl | |
| 227 | + ax_have_epoll_cppflags="${CPPFLAGS}" | |
| 228 | + AC_CHECK_HEADER([linux/version.h], [CPPFLAGS="${CPPFLAGS} -DHAVE_LINUX_VERSION_H"]) | |
| 229 | + AC_MSG_CHECKING([for Linux epoll(7) interface]) | |
| 230 | + AC_CACHE_VAL([ax_cv_have_epoll], [dnl | |
| 231 | + AC_LINK_IFELSE([dnl | |
| 232 | + AC_LANG_PROGRAM([dnl | |
| 233 | +#include <sys/epoll.h> | |
| 234 | +#ifdef HAVE_LINUX_VERSION_H | |
| 235 | +# include <linux/version.h> | |
| 236 | +# if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,45) | |
| 237 | +# error linux kernel version is too old to have epoll | |
| 238 | +# endif | |
| 239 | +#endif | |
| 240 | +], [dnl | |
| 241 | +int fd, rc; | |
| 242 | +struct epoll_event ev; | |
| 243 | +fd = epoll_create(128); | |
| 244 | +rc = epoll_wait(fd, &ev, 1, 0);])], | |
| 245 | + [ax_cv_have_epoll=yes], | |
| 246 | + [ax_cv_have_epoll=no])]) | |
| 247 | + CPPFLAGS="${ax_have_epoll_cppflags}" | |
| 248 | + AS_IF([test "${ax_cv_have_epoll}" = "yes"], | |
| 249 | + [AC_MSG_RESULT([yes]) | |
| 250 | +$1],[AC_MSG_RESULT([no]) | |
| 251 | +$2]) | |
| 252 | +])dnl | |
| 253 | + | |
| 254 | +AC_DEFUN([AX_HAVE_EPOLL_PWAIT], [dnl | |
| 255 | + ax_have_epoll_cppflags="${CPPFLAGS}" | |
| 256 | + AC_CHECK_HEADER([linux/version.h], | |
| 257 | + [CPPFLAGS="${CPPFLAGS} -DHAVE_LINUX_VERSION_H"]) | |
| 258 | + AC_MSG_CHECKING([for Linux epoll(7) interface with signals extension]) | |
| 259 | + AC_CACHE_VAL([ax_cv_have_epoll_pwait], [dnl | |
| 260 | + AC_LINK_IFELSE([dnl | |
| 261 | + AC_LANG_PROGRAM([dnl | |
| 262 | +#ifdef HAVE_LINUX_VERSION_H | |
| 263 | +# include <linux/version.h> | |
| 264 | +# if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) | |
| 265 | +# error linux kernel version is too old to have epoll_pwait | |
| 266 | +# endif | |
| 267 | +#endif | |
| 268 | +#include <sys/epoll.h> | |
| 269 | +#include <signal.h> | |
| 270 | +], [dnl | |
| 271 | +int fd, rc; | |
| 272 | +struct epoll_event ev; | |
| 273 | +fd = epoll_create(128); | |
| 274 | +rc = epoll_wait(fd, &ev, 1, 0); | |
| 275 | +rc = epoll_pwait(fd, &ev, 1, 0, (sigset_t const *)(0));])], | |
| 276 | + [ax_cv_have_epoll_pwait=yes], | |
| 277 | + [ax_cv_have_epoll_pwait=no])]) | |
| 278 | + CPPFLAGS="${ax_have_epoll_cppflags}" | |
| 279 | + AS_IF([test "${ax_cv_have_epoll_pwait}" = "yes"], | |
| 280 | + [AC_MSG_RESULT([yes]) | |
| 281 | +$1],[AC_MSG_RESULT([no]) | |
| 282 | +$2]) | |
| 283 | +])dnl | |
| 284 | + | |
| 285 | +# Copyright (C) 2002-2013 Free Software Foundation, Inc. | |
| 286 | +# | |
| 287 | +# This file is free software; the Free Software Foundation | |
| 288 | +# gives unlimited permission to copy and/or distribute it, | |
| 289 | +# with or without modifications, as long as this notice is preserved. | |
| 290 | + | |
| 291 | +# AM_AUTOMAKE_VERSION(VERSION) | |
| 292 | +# ---------------------------- | |
| 293 | +# Automake X.Y traces this macro to ensure aclocal.m4 has been | |
| 294 | +# generated from the m4 files accompanying Automake X.Y. | |
| 295 | +# (This private macro should not be called outside this file.) | |
| 296 | +AC_DEFUN([AM_AUTOMAKE_VERSION], | |
| 297 | +[am__api_version='1.13' | |
| 298 | +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to | |
| 299 | +dnl require some minimum version. Point them to the right macro. | |
| 300 | +m4_if([$1], [1.13.3], [], | |
| 301 | + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl | |
| 302 | +]) | |
| 303 | + | |
| 304 | +# _AM_AUTOCONF_VERSION(VERSION) | |
| 305 | +# ----------------------------- | |
| 306 | +# aclocal traces this macro to find the Autoconf version. | |
| 307 | +# This is a private macro too. Using m4_define simplifies | |
| 308 | +# the logic in aclocal, which can simply ignore this definition. | |
| 309 | +m4_define([_AM_AUTOCONF_VERSION], []) | |
| 310 | + | |
| 311 | +# AM_SET_CURRENT_AUTOMAKE_VERSION | |
| 312 | +# ------------------------------- | |
| 313 | +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. | |
| 314 | +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. | |
| 315 | +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], | |
| 316 | +[AM_AUTOMAKE_VERSION([1.13.3])dnl | |
| 317 | +m4_ifndef([AC_AUTOCONF_VERSION], | |
| 318 | + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | |
| 319 | +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) | |
| 320 | + | |
| 321 | +# AM_AUX_DIR_EXPAND -*- Autoconf -*- | |
| 322 | + | |
| 323 | +# Copyright (C) 2001-2013 Free Software Foundation, Inc. | |
| 324 | +# | |
| 325 | +# This file is free software; the Free Software Foundation | |
| 326 | +# gives unlimited permission to copy and/or distribute it, | |
| 327 | +# with or without modifications, as long as this notice is preserved. | |
| 328 | + | |
| 329 | +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets | |
| 330 | +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to | |
| 331 | +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. | |
| 332 | +# | |
| 333 | +# Of course, Automake must honor this variable whenever it calls a | |
| 334 | +# tool from the auxiliary directory. The problem is that $srcdir (and | |
| 335 | +# therefore $ac_aux_dir as well) can be either absolute or relative, | |
| 336 | +# depending on how configure is run. This is pretty annoying, since | |
| 337 | +# it makes $ac_aux_dir quite unusable in subdirectories: in the top | |
| 338 | +# source directory, any form will work fine, but in subdirectories a | |
| 339 | +# relative path needs to be adjusted first. | |
| 340 | +# | |
| 341 | +# $ac_aux_dir/missing | |
| 342 | +# fails when called from a subdirectory if $ac_aux_dir is relative | |
| 343 | +# $top_srcdir/$ac_aux_dir/missing | |
| 344 | +# fails if $ac_aux_dir is absolute, | |
| 345 | +# fails when called from a subdirectory in a VPATH build with | |
| 346 | +# a relative $ac_aux_dir | |
| 347 | +# | |
| 348 | +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir | |
| 349 | +# are both prefixed by $srcdir. In an in-source build this is usually | |
| 350 | +# harmless because $srcdir is '.', but things will broke when you | |
| 351 | +# start a VPATH build or use an absolute $srcdir. | |
| 352 | +# | |
| 353 | +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, | |
| 354 | +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: | |
| 355 | +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` | |
| 356 | +# and then we would define $MISSING as | |
| 357 | +# MISSING="\${SHELL} $am_aux_dir/missing" | |
| 358 | +# This will work as long as MISSING is not called from configure, because | |
| 359 | +# unfortunately $(top_srcdir) has no meaning in configure. | |
| 360 | +# However there are other variables, like CC, which are often used in | |
| 361 | +# configure, and could therefore not use this "fixed" $ac_aux_dir. | |
| 362 | +# | |
| 363 | +# Another solution, used here, is to always expand $ac_aux_dir to an | |
| 364 | +# absolute PATH. The drawback is that using absolute paths prevent a | |
| 365 | +# configured tree to be moved without reconfiguration. | |
| 366 | + | |
| 367 | +AC_DEFUN([AM_AUX_DIR_EXPAND], | |
| 368 | +[dnl Rely on autoconf to set up CDPATH properly. | |
| 369 | +AC_PREREQ([2.50])dnl | |
| 370 | +# expand $ac_aux_dir to an absolute path | |
| 371 | +am_aux_dir=`cd $ac_aux_dir && pwd` | |
| 372 | +]) | |
| 373 | + | |
| 374 | +# AM_CONDITIONAL -*- Autoconf -*- | |
| 375 | + | |
| 376 | +# Copyright (C) 1997-2013 Free Software Foundation, Inc. | |
| 377 | +# | |
| 378 | +# This file is free software; the Free Software Foundation | |
| 379 | +# gives unlimited permission to copy and/or distribute it, | |
| 380 | +# with or without modifications, as long as this notice is preserved. | |
| 381 | + | |
| 382 | +# AM_CONDITIONAL(NAME, SHELL-CONDITION) | |
| 383 | +# ------------------------------------- | |
| 384 | +# Define a conditional. | |
| 385 | +AC_DEFUN([AM_CONDITIONAL], | |
| 386 | +[AC_PREREQ([2.52])dnl | |
| 387 | + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], | |
| 388 | + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl | |
| 389 | +AC_SUBST([$1_TRUE])dnl | |
| 390 | +AC_SUBST([$1_FALSE])dnl | |
| 391 | +_AM_SUBST_NOTMAKE([$1_TRUE])dnl | |
| 392 | +_AM_SUBST_NOTMAKE([$1_FALSE])dnl | |
| 393 | +m4_define([_AM_COND_VALUE_$1], [$2])dnl | |
| 394 | +if $2; then | |
| 395 | + $1_TRUE= | |
| 396 | + $1_FALSE='#' | |
| 397 | +else | |
| 398 | + $1_TRUE='#' | |
| 399 | + $1_FALSE= | |
| 400 | +fi | |
| 401 | +AC_CONFIG_COMMANDS_PRE( | |
| 402 | +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then | |
| 403 | + AC_MSG_ERROR([[conditional "$1" was never defined. | |
| 404 | +Usually this means the macro was only invoked conditionally.]]) | |
| 405 | +fi])]) | |
| 406 | + | |
| 407 | +# Copyright (C) 1999-2013 Free Software Foundation, Inc. | |
| 408 | +# | |
| 409 | +# This file is free software; the Free Software Foundation | |
| 410 | +# gives unlimited permission to copy and/or distribute it, | |
| 411 | +# with or without modifications, as long as this notice is preserved. | |
| 412 | + | |
| 413 | + | |
| 414 | +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be | |
| 415 | +# written in clear, in which case automake, when reading aclocal.m4, | |
| 416 | +# will think it sees a *use*, and therefore will trigger all it's | |
| 417 | +# C support machinery. Also note that it means that autoscan, seeing | |
| 418 | +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... | |
| 419 | + | |
| 420 | + | |
| 421 | +# _AM_DEPENDENCIES(NAME) | |
| 422 | +# ---------------------- | |
| 423 | +# See how the compiler implements dependency checking. | |
| 424 | +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". | |
| 425 | +# We try a few techniques and use that to set a single cache variable. | |
| 426 | +# | |
| 427 | +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was | |
| 428 | +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular | |
| 429 | +# dependency, and given that the user is not expected to run this macro, | |
| 430 | +# just rely on AC_PROG_CC. | |
| 431 | +AC_DEFUN([_AM_DEPENDENCIES], | |
| 432 | +[AC_REQUIRE([AM_SET_DEPDIR])dnl | |
| 433 | +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl | |
| 434 | +AC_REQUIRE([AM_MAKE_INCLUDE])dnl | |
| 435 | +AC_REQUIRE([AM_DEP_TRACK])dnl | |
| 436 | + | |
| 437 | +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], | |
| 438 | + [$1], [CXX], [depcc="$CXX" am_compiler_list=], | |
| 439 | + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], | |
| 440 | + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], | |
| 441 | + [$1], [UPC], [depcc="$UPC" am_compiler_list=], | |
| 442 | + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], | |
| 443 | + [depcc="$$1" am_compiler_list=]) | |
| 444 | + | |
| 445 | +AC_CACHE_CHECK([dependency style of $depcc], | |
| 446 | + [am_cv_$1_dependencies_compiler_type], | |
| 447 | +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then | |
| 448 | + # We make a subdir and do the tests there. Otherwise we can end up | |
| 449 | + # making bogus files that we don't know about and never remove. For | |
| 450 | + # instance it was reported that on HP-UX the gcc test will end up | |
| 451 | + # making a dummy file named 'D' -- because '-MD' means "put the output | |
| 452 | + # in D". | |
| 453 | + rm -rf conftest.dir | |
| 454 | + mkdir conftest.dir | |
| 455 | + # Copy depcomp to subdir because otherwise we won't find it if we're | |
| 456 | + # using a relative directory. | |
| 457 | + cp "$am_depcomp" conftest.dir | |
| 458 | + cd conftest.dir | |
| 459 | + # We will build objects and dependencies in a subdirectory because | |
| 460 | + # it helps to detect inapplicable dependency modes. For instance | |
| 461 | + # both Tru64's cc and ICC support -MD to output dependencies as a | |
| 462 | + # side effect of compilation, but ICC will put the dependencies in | |
| 463 | + # the current directory while Tru64 will put them in the object | |
| 464 | + # directory. | |
| 465 | + mkdir sub | |
| 466 | + | |
| 467 | + am_cv_$1_dependencies_compiler_type=none | |
| 468 | + if test "$am_compiler_list" = ""; then | |
| 469 | + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` | |
| 470 | + fi | |
| 471 | + am__universal=false | |
| 472 | + m4_case([$1], [CC], | |
| 473 | + [case " $depcc " in #( | |
| 474 | + *\ -arch\ *\ -arch\ *) am__universal=true ;; | |
| 475 | + esac], | |
| 476 | + [CXX], | |
| 477 | + [case " $depcc " in #( | |
| 478 | + *\ -arch\ *\ -arch\ *) am__universal=true ;; | |
| 479 | + esac]) | |
| 480 | + | |
| 481 | + for depmode in $am_compiler_list; do | |
| 482 | + # Setup a source with many dependencies, because some compilers | |
| 483 | + # like to wrap large dependency lists on column 80 (with \), and | |
| 484 | + # we should not choose a depcomp mode which is confused by this. | |
| 485 | + # | |
| 486 | + # We need to recreate these files for each test, as the compiler may | |
| 487 | + # overwrite some of them when testing with obscure command lines. | |
| 488 | + # This happens at least with the AIX C compiler. | |
| 489 | + : > sub/conftest.c | |
| 490 | + for i in 1 2 3 4 5 6; do | |
| 491 | + echo '#include "conftst'$i'.h"' >> sub/conftest.c | |
| 492 | + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with | |
| 493 | + # Solaris 10 /bin/sh. | |
| 494 | + echo '/* dummy */' > sub/conftst$i.h | |
| 495 | + done | |
| 496 | + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf | |
| 497 | + | |
| 498 | + # We check with '-c' and '-o' for the sake of the "dashmstdout" | |
| 499 | + # mode. It turns out that the SunPro C++ compiler does not properly | |
| 500 | + # handle '-M -o', and we need to detect this. Also, some Intel | |
| 501 | + # versions had trouble with output in subdirs. | |
| 502 | + am__obj=sub/conftest.${OBJEXT-o} | |
| 503 | + am__minus_obj="-o $am__obj" | |
| 504 | + case $depmode in | |
| 505 | + gcc) | |
| 506 | + # This depmode causes a compiler race in universal mode. | |
| 507 | + test "$am__universal" = false || continue | |
| 508 | + ;; | |
| 509 | + nosideeffect) | |
| 510 | + # After this tag, mechanisms are not by side-effect, so they'll | |
| 511 | + # only be used when explicitly requested. | |
| 512 | + if test "x$enable_dependency_tracking" = xyes; then | |
| 513 | + continue | |
| 514 | + else | |
| 515 | + break | |
| 516 | + fi | |
| 517 | + ;; | |
| 518 | + msvc7 | msvc7msys | msvisualcpp | msvcmsys) | |
| 519 | + # This compiler won't grok '-c -o', but also, the minuso test has | |
| 520 | + # not run yet. These depmodes are late enough in the game, and | |
| 521 | + # so weak that their functioning should not be impacted. | |
| 522 | + am__obj=conftest.${OBJEXT-o} | |
| 523 | + am__minus_obj= | |
| 524 | + ;; | |
| 525 | + none) break ;; | |
| 526 | + esac | |
| 527 | + if depmode=$depmode \ | |
| 528 | + source=sub/conftest.c object=$am__obj \ | |
| 529 | + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ | |
| 530 | + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ | |
| 531 | + >/dev/null 2>conftest.err && | |
| 532 | + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && | |
| 533 | + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && | |
| 534 | + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && | |
| 535 | + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then | |
| 536 | + # icc doesn't choke on unknown options, it will just issue warnings | |
| 537 | + # or remarks (even with -Werror). So we grep stderr for any message | |
| 538 | + # that says an option was ignored or not supported. | |
| 539 | + # When given -MP, icc 7.0 and 7.1 complain thusly: | |
| 540 | + # icc: Command line warning: ignoring option '-M'; no argument required | |
| 541 | + # The diagnosis changed in icc 8.0: | |
| 542 | + # icc: Command line remark: option '-MP' not supported | |
| 543 | + if (grep 'ignoring option' conftest.err || | |
| 544 | + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else | |
| 545 | + am_cv_$1_dependencies_compiler_type=$depmode | |
| 546 | + break | |
| 547 | + fi | |
| 548 | + fi | |
| 549 | + done | |
| 550 | + | |
| 551 | + cd .. | |
| 552 | + rm -rf conftest.dir | |
| 553 | +else | |
| 554 | + am_cv_$1_dependencies_compiler_type=none | |
| 555 | +fi | |
| 556 | +]) | |
| 557 | +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) | |
| 558 | +AM_CONDITIONAL([am__fastdep$1], [ | |
| 559 | + test "x$enable_dependency_tracking" != xno \ | |
| 560 | + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) | |
| 561 | +]) | |
| 562 | + | |
| 563 | + | |
| 564 | +# AM_SET_DEPDIR | |
| 565 | +# ------------- | |
| 566 | +# Choose a directory name for dependency files. | |
| 567 | +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. | |
| 568 | +AC_DEFUN([AM_SET_DEPDIR], | |
| 569 | +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl | |
| 570 | +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl | |
| 571 | +]) | |
| 572 | + | |
| 573 | + | |
| 574 | +# AM_DEP_TRACK | |
| 575 | +# ------------ | |
| 576 | +AC_DEFUN([AM_DEP_TRACK], | |
| 577 | +[AC_ARG_ENABLE([dependency-tracking], [dnl | |
| 578 | +AS_HELP_STRING( | |
| 579 | + [--enable-dependency-tracking], | |
| 580 | + [do not reject slow dependency extractors]) | |
| 581 | +AS_HELP_STRING( | |
| 582 | + [--disable-dependency-tracking], | |
| 583 | + [speeds up one-time build])]) | |
| 584 | +if test "x$enable_dependency_tracking" != xno; then | |
| 585 | + am_depcomp="$ac_aux_dir/depcomp" | |
| 586 | + AMDEPBACKSLASH='\' | |
| 587 | + am__nodep='_no' | |
| 588 | +fi | |
| 589 | +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) | |
| 590 | +AC_SUBST([AMDEPBACKSLASH])dnl | |
| 591 | +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl | |
| 592 | +AC_SUBST([am__nodep])dnl | |
| 593 | +_AM_SUBST_NOTMAKE([am__nodep])dnl | |
| 594 | +]) | |
| 595 | + | |
| 596 | +# Generate code to set up dependency tracking. -*- Autoconf -*- | |
| 597 | + | |
| 598 | +# Copyright (C) 1999-2013 Free Software Foundation, Inc. | |
| 599 | +# | |
| 600 | +# This file is free software; the Free Software Foundation | |
| 601 | +# gives unlimited permission to copy and/or distribute it, | |
| 602 | +# with or without modifications, as long as this notice is preserved. | |
| 603 | + | |
| 604 | + | |
| 605 | +# _AM_OUTPUT_DEPENDENCY_COMMANDS | |
| 606 | +# ------------------------------ | |
| 607 | +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], | |
| 608 | +[{ | |
| 609 | + # Older Autoconf quotes --file arguments for eval, but not when files | |
| 610 | + # are listed without --file. Let's play safe and only enable the eval | |
| 611 | + # if we detect the quoting. | |
| 612 | + case $CONFIG_FILES in | |
| 613 | + *\'*) eval set x "$CONFIG_FILES" ;; | |
| 614 | + *) set x $CONFIG_FILES ;; | |
| 615 | + esac | |
| 616 | + shift | |
| 617 | + for mf | |
| 618 | + do | |
| 619 | + # Strip MF so we end up with the name of the file. | |
| 620 | + mf=`echo "$mf" | sed -e 's/:.*$//'` | |
| 621 | + # Check whether this is an Automake generated Makefile or not. | |
| 622 | + # We used to match only the files named 'Makefile.in', but | |
| 623 | + # some people rename them; so instead we look at the file content. | |
| 624 | + # Grep'ing the first line is not enough: some people post-process | |
| 625 | + # each Makefile.in and add a new line on top of each file to say so. | |
| 626 | + # Grep'ing the whole file is not good either: AIX grep has a line | |
| 627 | + # limit of 2048, but all sed's we know have understand at least 4000. | |
| 628 | + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then | |
| 629 | + dirpart=`AS_DIRNAME("$mf")` | |
| 630 | + else | |
| 631 | + continue | |
| 632 | + fi | |
| 633 | + # Extract the definition of DEPDIR, am__include, and am__quote | |
| 634 | + # from the Makefile without running 'make'. | |
| 635 | + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` | |
| 636 | + test -z "$DEPDIR" && continue | |
| 637 | + am__include=`sed -n 's/^am__include = //p' < "$mf"` | |
| 638 | + test -z "$am__include" && continue | |
| 639 | + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` | |
| 640 | + # Find all dependency output files, they are included files with | |
| 641 | + # $(DEPDIR) in their names. We invoke sed twice because it is the | |
| 642 | + # simplest approach to changing $(DEPDIR) to its actual value in the | |
| 643 | + # expansion. | |
| 644 | + for file in `sed -n " | |
| 645 | + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ | |
| 646 | + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do | |
| 647 | + # Make sure the directory exists. | |
| 648 | + test -f "$dirpart/$file" && continue | |
| 649 | + fdir=`AS_DIRNAME(["$file"])` | |
| 650 | + AS_MKDIR_P([$dirpart/$fdir]) | |
| 651 | + # echo "creating $dirpart/$file" | |
| 652 | + echo '# dummy' > "$dirpart/$file" | |
| 653 | + done | |
| 654 | + done | |
| 655 | +} | |
| 656 | +])# _AM_OUTPUT_DEPENDENCY_COMMANDS | |
| 657 | + | |
| 658 | + | |
| 659 | +# AM_OUTPUT_DEPENDENCY_COMMANDS | |
| 660 | +# ----------------------------- | |
| 661 | +# This macro should only be invoked once -- use via AC_REQUIRE. | |
| 662 | +# | |
| 663 | +# This code is only required when automatic dependency tracking | |
| 664 | +# is enabled. FIXME. This creates each '.P' file that we will | |
| 665 | +# need in order to bootstrap the dependency handling code. | |
| 666 | +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], | |
| 667 | +[AC_CONFIG_COMMANDS([depfiles], | |
| 668 | + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], | |
| 669 | + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) | |
| 670 | +]) | |
| 671 | + | |
| 672 | +# Do all the work for Automake. -*- Autoconf -*- | |
| 673 | + | |
| 674 | +# Copyright (C) 1996-2013 Free Software Foundation, Inc. | |
| 675 | +# | |
| 676 | +# This file is free software; the Free Software Foundation | |
| 677 | +# gives unlimited permission to copy and/or distribute it, | |
| 678 | +# with or without modifications, as long as this notice is preserved. | |
| 679 | + | |
| 680 | +# This macro actually does too much. Some checks are only needed if | |
| 681 | +# your package does certain things. But this isn't really a big deal. | |
| 682 | + | |
| 683 | +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) | |
| 684 | +# AM_INIT_AUTOMAKE([OPTIONS]) | |
| 685 | +# ----------------------------------------------- | |
| 686 | +# The call with PACKAGE and VERSION arguments is the old style | |
| 687 | +# call (pre autoconf-2.50), which is being phased out. PACKAGE | |
| 688 | +# and VERSION should now be passed to AC_INIT and removed from | |
| 689 | +# the call to AM_INIT_AUTOMAKE. | |
| 690 | +# We support both call styles for the transition. After | |
| 691 | +# the next Automake release, Autoconf can make the AC_INIT | |
| 692 | +# arguments mandatory, and then we can depend on a new Autoconf | |
| 693 | +# release and drop the old call support. | |
| 694 | +AC_DEFUN([AM_INIT_AUTOMAKE], | |
| 695 | +[AC_PREREQ([2.65])dnl | |
| 696 | +dnl Autoconf wants to disallow AM_ names. We explicitly allow | |
| 697 | +dnl the ones we care about. | |
| 698 | +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl | |
| 699 | +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl | |
| 700 | +AC_REQUIRE([AC_PROG_INSTALL])dnl | |
| 701 | +if test "`cd $srcdir && pwd`" != "`pwd`"; then | |
| 702 | + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output | |
| 703 | + # is not polluted with repeated "-I." | |
| 704 | + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl | |
| 705 | + # test to see if srcdir already configured | |
| 706 | + if test -f $srcdir/config.status; then | |
| 707 | + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) | |
| 708 | + fi | |
| 709 | +fi | |
| 710 | + | |
| 711 | +# test whether we have cygpath | |
| 712 | +if test -z "$CYGPATH_W"; then | |
| 713 | + if (cygpath --version) >/dev/null 2>/dev/null; then | |
| 714 | + CYGPATH_W='cygpath -w' | |
| 715 | + else | |
| 716 | + CYGPATH_W=echo | |
| 717 | + fi | |
| 718 | +fi | |
| 719 | +AC_SUBST([CYGPATH_W]) | |
| 720 | + | |
| 721 | +# Define the identity of the package. | |
| 722 | +dnl Distinguish between old-style and new-style calls. | |
| 723 | +m4_ifval([$2], | |
| 724 | +[AC_DIAGNOSE([obsolete], | |
| 725 | + [$0: two- and three-arguments forms are deprecated.]) | |
| 726 | +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl | |
| 727 | + AC_SUBST([PACKAGE], [$1])dnl | |
| 728 | + AC_SUBST([VERSION], [$2])], | |
| 729 | +[_AM_SET_OPTIONS([$1])dnl | |
| 730 | +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. | |
| 731 | +m4_if( | |
| 732 | + m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), | |
| 733 | + [ok:ok],, | |
| 734 | + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl | |
| 735 | + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl | |
| 736 | + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl | |
| 737 | + | |
| 738 | +_AM_IF_OPTION([no-define],, | |
| 739 | +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) | |
| 740 | + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl | |
| 741 | + | |
| 742 | +# Some tools Automake needs. | |
| 743 | +AC_REQUIRE([AM_SANITY_CHECK])dnl | |
| 744 | +AC_REQUIRE([AC_ARG_PROGRAM])dnl | |
| 745 | +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) | |
| 746 | +AM_MISSING_PROG([AUTOCONF], [autoconf]) | |
| 747 | +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) | |
| 748 | +AM_MISSING_PROG([AUTOHEADER], [autoheader]) | |
| 749 | +AM_MISSING_PROG([MAKEINFO], [makeinfo]) | |
| 750 | +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | |
| 751 | +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl | |
| 752 | +AC_REQUIRE([AC_PROG_MKDIR_P])dnl | |
| 753 | +# For better backward compatibility. To be removed once Automake 1.9.x | |
| 754 | +# dies out for good. For more background, see: | |
| 755 | +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> | |
| 756 | +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> | |
| 757 | +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) | |
| 758 | +# We need awk for the "check" target. The system "awk" is bad on | |
| 759 | +# some platforms. | |
| 760 | +AC_REQUIRE([AC_PROG_AWK])dnl | |
| 761 | +AC_REQUIRE([AC_PROG_MAKE_SET])dnl | |
| 762 | +AC_REQUIRE([AM_SET_LEADING_DOT])dnl | |
| 763 | +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], | |
| 764 | + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], | |
| 765 | + [_AM_PROG_TAR([v7])])]) | |
| 766 | +_AM_IF_OPTION([no-dependencies],, | |
| 767 | +[AC_PROVIDE_IFELSE([AC_PROG_CC], | |
| 768 | + [_AM_DEPENDENCIES([CC])], | |
| 769 | + [m4_define([AC_PROG_CC], | |
| 770 | + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl | |
| 771 | +AC_PROVIDE_IFELSE([AC_PROG_CXX], | |
| 772 | + [_AM_DEPENDENCIES([CXX])], | |
| 773 | + [m4_define([AC_PROG_CXX], | |
| 774 | + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl | |
| 775 | +AC_PROVIDE_IFELSE([AC_PROG_OBJC], | |
| 776 | + [_AM_DEPENDENCIES([OBJC])], | |
| 777 | + [m4_define([AC_PROG_OBJC], | |
| 778 | + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl | |
| 779 | +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], | |
| 780 | + [_AM_DEPENDENCIES([OBJCXX])], | |
| 781 | + [m4_define([AC_PROG_OBJCXX], | |
| 782 | + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl | |
| 783 | +]) | |
| 784 | +AC_REQUIRE([AM_SILENT_RULES])dnl | |
| 785 | +dnl The testsuite driver may need to know about EXEEXT, so add the | |
| 786 | +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This | |
| 787 | +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. | |
| 788 | +AC_CONFIG_COMMANDS_PRE(dnl | |
| 789 | +[m4_provide_if([_AM_COMPILER_EXEEXT], | |
| 790 | + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl | |
| 791 | +]) | |
| 792 | + | |
| 793 | +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not | |
| 794 | +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further | |
| 795 | +dnl mangled by Autoconf and run in a shell conditional statement. | |
| 796 | +m4_define([_AC_COMPILER_EXEEXT], | |
| 797 | +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) | |
| 798 | + | |
| 799 | + | |
| 800 | +# When config.status generates a header, we must update the stamp-h file. | |
| 801 | +# This file resides in the same directory as the config header | |
| 802 | +# that is generated. The stamp files are numbered to have different names. | |
| 803 | + | |
| 804 | +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the | |
| 805 | +# loop where config.status creates the headers, so we can generate | |
| 806 | +# our stamp files there. | |
| 807 | +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], | |
| 808 | +[# Compute $1's index in $config_headers. | |
| 809 | +_am_arg=$1 | |
| 810 | +_am_stamp_count=1 | |
| 811 | +for _am_header in $config_headers :; do | |
| 812 | + case $_am_header in | |
| 813 | + $_am_arg | $_am_arg:* ) | |
| 814 | + break ;; | |
| 815 | + * ) | |
| 816 | + _am_stamp_count=`expr $_am_stamp_count + 1` ;; | |
| 817 | + esac | |
| 818 | +done | |
| 819 | +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) | |
| 820 | + | |
| 821 | +# Copyright (C) 2001-2013 Free Software Foundation, Inc. | |
| 822 | +# | |
| 823 | +# This file is free software; the Free Software Foundation | |
| 824 | +# gives unlimited permission to copy and/or distribute it, | |
| 825 | +# with or without modifications, as long as this notice is preserved. | |
| 826 | + | |
| 827 | +# AM_PROG_INSTALL_SH | |
| 828 | +# ------------------ | |
| 829 | +# Define $install_sh. | |
| 830 | +AC_DEFUN([AM_PROG_INSTALL_SH], | |
| 831 | +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | |
| 832 | +if test x"${install_sh}" != xset; then | |
| 833 | + case $am_aux_dir in | |
| 834 | + *\ * | *\ *) | |
| 835 | + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; | |
| 836 | + *) | |
| 837 | + install_sh="\${SHELL} $am_aux_dir/install-sh" | |
| 838 | + esac | |
| 839 | +fi | |
| 840 | +AC_SUBST([install_sh])]) | |
| 841 | + | |
| 842 | +# Copyright (C) 2003-2013 Free Software Foundation, Inc. | |
| 843 | +# | |
| 844 | +# This file is free software; the Free Software Foundation | |
| 845 | +# gives unlimited permission to copy and/or distribute it, | |
| 846 | +# with or without modifications, as long as this notice is preserved. | |
| 847 | + | |
| 848 | +# Check whether the underlying file-system supports filenames | |
| 849 | +# with a leading dot. For instance MS-DOS doesn't. | |
| 850 | +AC_DEFUN([AM_SET_LEADING_DOT], | |
| 851 | +[rm -rf .tst 2>/dev/null | |
| 852 | +mkdir .tst 2>/dev/null | |
| 853 | +if test -d .tst; then | |
| 854 | + am__leading_dot=. | |
| 855 | +else | |
| 856 | + am__leading_dot=_ | |
| 857 | +fi | |
| 858 | +rmdir .tst 2>/dev/null | |
| 859 | +AC_SUBST([am__leading_dot])]) | |
| 860 | + | |
| 861 | +# Check to see how 'make' treats includes. -*- Autoconf -*- | |
| 862 | + | |
| 863 | +# Copyright (C) 2001-2013 Free Software Foundation, Inc. | |
| 864 | +# | |
| 865 | +# This file is free software; the Free Software Foundation | |
| 866 | +# gives unlimited permission to copy and/or distribute it, | |
| 867 | +# with or without modifications, as long as this notice is preserved. | |
| 868 | + | |
| 869 | +# AM_MAKE_INCLUDE() | |
| 870 | +# ----------------- | |
| 871 | +# Check to see how make treats includes. | |
| 872 | +AC_DEFUN([AM_MAKE_INCLUDE], | |
| 873 | +[am_make=${MAKE-make} | |
| 874 | +cat > confinc << 'END' | |
| 875 | +am__doit: | |
| 876 | + @echo this is the am__doit target | |
| 877 | +.PHONY: am__doit | |
| 878 | +END | |
| 879 | +# If we don't find an include directive, just comment out the code. | |
| 880 | +AC_MSG_CHECKING([for style of include used by $am_make]) | |
| 881 | +am__include="#" | |
| 882 | +am__quote= | |
| 883 | +_am_result=none | |
| 884 | +# First try GNU make style include. | |
| 885 | +echo "include confinc" > confmf | |
| 886 | +# Ignore all kinds of additional output from 'make'. | |
| 887 | +case `$am_make -s -f confmf 2> /dev/null` in #( | |
| 888 | +*the\ am__doit\ target*) | |
| 889 | + am__include=include | |
| 890 | + am__quote= | |
| 891 | + _am_result=GNU | |
| 892 | + ;; | |
| 893 | +esac | |
| 894 | +# Now try BSD make style include. | |
| 895 | +if test "$am__include" = "#"; then | |
| 896 | + echo '.include "confinc"' > confmf | |
| 897 | + case `$am_make -s -f confmf 2> /dev/null` in #( | |
| 898 | + *the\ am__doit\ target*) | |
| 899 | + am__include=.include | |
| 900 | + am__quote="\"" | |
| 901 | + _am_result=BSD | |
| 902 | + ;; | |
| 903 | + esac | |
| 904 | +fi | |
| 905 | +AC_SUBST([am__include]) | |
| 906 | +AC_SUBST([am__quote]) | |
| 907 | +AC_MSG_RESULT([$_am_result]) | |
| 908 | +rm -f confinc confmf | |
| 909 | +]) | |
| 910 | + | |
| 911 | +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- | |
| 912 | + | |
| 913 | +# Copyright (C) 1997-2013 Free Software Foundation, Inc. | |
| 914 | +# | |
| 915 | +# This file is free software; the Free Software Foundation | |
| 916 | +# gives unlimited permission to copy and/or distribute it, | |
| 917 | +# with or without modifications, as long as this notice is preserved. | |
| 918 | + | |
| 919 | +# AM_MISSING_PROG(NAME, PROGRAM) | |
| 920 | +# ------------------------------ | |
| 921 | +AC_DEFUN([AM_MISSING_PROG], | |
| 922 | +[AC_REQUIRE([AM_MISSING_HAS_RUN]) | |
| 923 | +$1=${$1-"${am_missing_run}$2"} | |
| 924 | +AC_SUBST($1)]) | |
| 925 | + | |
| 926 | +# AM_MISSING_HAS_RUN | |
| 927 | +# ------------------ | |
| 928 | +# Define MISSING if not defined so far and test if it is modern enough. | |
| 929 | +# If it is, set am_missing_run to use it, otherwise, to nothing. | |
| 930 | +AC_DEFUN([AM_MISSING_HAS_RUN], | |
| 931 | +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | |
| 932 | +AC_REQUIRE_AUX_FILE([missing])dnl | |
| 933 | +if test x"${MISSING+set}" != xset; then | |
| 934 | + case $am_aux_dir in | |
| 935 | + *\ * | *\ *) | |
| 936 | + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; | |
| 937 | + *) | |
| 938 | + MISSING="\${SHELL} $am_aux_dir/missing" ;; | |
| 939 | + esac | |
| 940 | +fi | |
| 941 | +# Use eval to expand $SHELL | |
| 942 | +if eval "$MISSING --is-lightweight"; then | |
| 943 | + am_missing_run="$MISSING " | |
| 944 | +else | |
| 945 | + am_missing_run= | |
| 946 | + AC_MSG_WARN(['missing' script is too old or missing]) | |
| 947 | +fi | |
| 948 | +]) | |
| 949 | + | |
| 950 | +# Helper functions for option handling. -*- Autoconf -*- | |
| 951 | + | |
| 952 | +# Copyright (C) 2001-2013 Free Software Foundation, Inc. | |
| 953 | +# | |
| 954 | +# This file is free software; the Free Software Foundation | |
| 955 | +# gives unlimited permission to copy and/or distribute it, | |
| 956 | +# with or without modifications, as long as this notice is preserved. | |
| 957 | + | |
| 958 | +# _AM_MANGLE_OPTION(NAME) | |
| 959 | +# ----------------------- | |
| 960 | +AC_DEFUN([_AM_MANGLE_OPTION], | |
| 961 | +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) | |
| 962 | + | |
| 963 | +# _AM_SET_OPTION(NAME) | |
| 964 | +# -------------------- | |
| 965 | +# Set option NAME. Presently that only means defining a flag for this option. | |
| 966 | +AC_DEFUN([_AM_SET_OPTION], | |
| 967 | +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) | |
| 968 | + | |
| 969 | +# _AM_SET_OPTIONS(OPTIONS) | |
| 970 | +# ------------------------ | |
| 971 | +# OPTIONS is a space-separated list of Automake options. | |
| 972 | +AC_DEFUN([_AM_SET_OPTIONS], | |
| 973 | +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) | |
| 974 | + | |
| 975 | +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) | |
| 976 | +# ------------------------------------------- | |
| 977 | +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. | |
| 978 | +AC_DEFUN([_AM_IF_OPTION], | |
| 979 | +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) | |
| 980 | + | |
| 981 | +# Check to make sure that the build environment is sane. -*- Autoconf -*- | |
| 982 | + | |
| 983 | +# Copyright (C) 1996-2013 Free Software Foundation, Inc. | |
| 984 | +# | |
| 985 | +# This file is free software; the Free Software Foundation | |
| 986 | +# gives unlimited permission to copy and/or distribute it, | |
| 987 | +# with or without modifications, as long as this notice is preserved. | |
| 988 | + | |
| 989 | +# AM_SANITY_CHECK | |
| 990 | +# --------------- | |
| 991 | +AC_DEFUN([AM_SANITY_CHECK], | |
| 992 | +[AC_MSG_CHECKING([whether build environment is sane]) | |
| 993 | +# Reject unsafe characters in $srcdir or the absolute working directory | |
| 994 | +# name. Accept space and tab only in the latter. | |
| 995 | +am_lf=' | |
| 996 | +' | |
| 997 | +case `pwd` in | |
| 998 | + *[[\\\"\#\$\&\'\`$am_lf]]*) | |
| 999 | + AC_MSG_ERROR([unsafe absolute working directory name]);; | |
| 1000 | +esac | |
| 1001 | +case $srcdir in | |
| 1002 | + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) | |
| 1003 | + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; | |
| 1004 | +esac | |
| 1005 | + | |
| 1006 | +# Do 'set' in a subshell so we don't clobber the current shell's | |
| 1007 | +# arguments. Must try -L first in case configure is actually a | |
| 1008 | +# symlink; some systems play weird games with the mod time of symlinks | |
| 1009 | +# (eg FreeBSD returns the mod time of the symlink's containing | |
| 1010 | +# directory). | |
| 1011 | +if ( | |
| 1012 | + am_has_slept=no | |
| 1013 | + for am_try in 1 2; do | |
| 1014 | + echo "timestamp, slept: $am_has_slept" > conftest.file | |
| 1015 | + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` | |
| 1016 | + if test "$[*]" = "X"; then | |
| 1017 | + # -L didn't work. | |
| 1018 | + set X `ls -t "$srcdir/configure" conftest.file` | |
| 1019 | + fi | |
| 1020 | + if test "$[*]" != "X $srcdir/configure conftest.file" \ | |
| 1021 | + && test "$[*]" != "X conftest.file $srcdir/configure"; then | |
| 1022 | + | |
| 1023 | + # If neither matched, then we have a broken ls. This can happen | |
| 1024 | + # if, for instance, CONFIG_SHELL is bash and it inherits a | |
| 1025 | + # broken ls alias from the environment. This has actually | |
| 1026 | + # happened. Such a system could not be considered "sane". | |
| 1027 | + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken | |
| 1028 | + alias in your environment]) | |
| 1029 | + fi | |
| 1030 | + if test "$[2]" = conftest.file || test $am_try -eq 2; then | |
| 1031 | + break | |
| 1032 | + fi | |
| 1033 | + # Just in case. | |
| 1034 | + sleep 1 | |
| 1035 | + am_has_slept=yes | |
| 1036 | + done | |
| 1037 | + test "$[2]" = conftest.file | |
| 1038 | + ) | |
| 1039 | +then | |
| 1040 | + # Ok. | |
| 1041 | + : | |
| 1042 | +else | |
| 1043 | + AC_MSG_ERROR([newly created file is older than distributed files! | |
| 1044 | +Check your system clock]) | |
| 1045 | +fi | |
| 1046 | +AC_MSG_RESULT([yes]) | |
| 1047 | +# If we didn't sleep, we still need to ensure time stamps of config.status and | |
| 1048 | +# generated files are strictly newer. | |
| 1049 | +am_sleep_pid= | |
| 1050 | +if grep 'slept: no' conftest.file >/dev/null 2>&1; then | |
| 1051 | + ( sleep 1 ) & | |
| 1052 | + am_sleep_pid=$! | |
| 1053 | +fi | |
| 1054 | +AC_CONFIG_COMMANDS_PRE( | |
| 1055 | + [AC_MSG_CHECKING([that generated files are newer than configure]) | |
| 1056 | + if test -n "$am_sleep_pid"; then | |
| 1057 | + # Hide warnings about reused PIDs. | |
| 1058 | + wait $am_sleep_pid 2>/dev/null | |
| 1059 | + fi | |
| 1060 | + AC_MSG_RESULT([done])]) | |
| 1061 | +rm -f conftest.file | |
| 1062 | +]) | |
| 1063 | + | |
| 1064 | +# Copyright (C) 2009-2013 Free Software Foundation, Inc. | |
| 1065 | +# | |
| 1066 | +# This file is free software; the Free Software Foundation | |
| 1067 | +# gives unlimited permission to copy and/or distribute it, | |
| 1068 | +# with or without modifications, as long as this notice is preserved. | |
| 1069 | + | |
| 1070 | +# AM_SILENT_RULES([DEFAULT]) | |
| 1071 | +# -------------------------- | |
| 1072 | +# Enable less verbose build rules; with the default set to DEFAULT | |
| 1073 | +# ("yes" being less verbose, "no" or empty being verbose). | |
| 1074 | +AC_DEFUN([AM_SILENT_RULES], | |
| 1075 | +[AC_ARG_ENABLE([silent-rules], [dnl | |
| 1076 | +AS_HELP_STRING( | |
| 1077 | + [--enable-silent-rules], | |
| 1078 | + [less verbose build output (undo: "make V=1")]) | |
| 1079 | +AS_HELP_STRING( | |
| 1080 | + [--disable-silent-rules], | |
| 1081 | + [verbose build output (undo: "make V=0")])dnl | |
| 1082 | +]) | |
| 1083 | +case $enable_silent_rules in @%:@ ((( | |
| 1084 | + yes) AM_DEFAULT_VERBOSITY=0;; | |
| 1085 | + no) AM_DEFAULT_VERBOSITY=1;; | |
| 1086 | + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; | |
| 1087 | +esac | |
| 1088 | +dnl | |
| 1089 | +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) | |
| 1090 | +dnl do not support nested variable expansions. | |
| 1091 | +dnl See automake bug#9928 and bug#10237. | |
| 1092 | +am_make=${MAKE-make} | |
| 1093 | +AC_CACHE_CHECK([whether $am_make supports nested variables], | |
| 1094 | + [am_cv_make_support_nested_variables], | |
| 1095 | + [if AS_ECHO([['TRUE=$(BAR$(V)) | |
| 1096 | +BAR0=false | |
| 1097 | +BAR1=true | |
| 1098 | +V=1 | |
| 1099 | +am__doit: | |
| 1100 | + @$(TRUE) | |
| 1101 | +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then | |
| 1102 | + am_cv_make_support_nested_variables=yes | |
| 1103 | +else | |
| 1104 | + am_cv_make_support_nested_variables=no | |
| 1105 | +fi]) | |
| 1106 | +if test $am_cv_make_support_nested_variables = yes; then | |
| 1107 | + dnl Using '$V' instead of '$(V)' breaks IRIX make. | |
| 1108 | + AM_V='$(V)' | |
| 1109 | + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | |
| 1110 | +else | |
| 1111 | + AM_V=$AM_DEFAULT_VERBOSITY | |
| 1112 | + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY | |
| 1113 | +fi | |
| 1114 | +AC_SUBST([AM_V])dnl | |
| 1115 | +AM_SUBST_NOTMAKE([AM_V])dnl | |
| 1116 | +AC_SUBST([AM_DEFAULT_V])dnl | |
| 1117 | +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl | |
| 1118 | +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl | |
| 1119 | +AM_BACKSLASH='\' | |
| 1120 | +AC_SUBST([AM_BACKSLASH])dnl | |
| 1121 | +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl | |
| 1122 | +]) | |
| 1123 | + | |
| 1124 | +# Copyright (C) 2001-2013 Free Software Foundation, Inc. | |
| 1125 | +# | |
| 1126 | +# This file is free software; the Free Software Foundation | |
| 1127 | +# gives unlimited permission to copy and/or distribute it, | |
| 1128 | +# with or without modifications, as long as this notice is preserved. | |
| 1129 | + | |
| 1130 | +# AM_PROG_INSTALL_STRIP | |
| 1131 | +# --------------------- | |
| 1132 | +# One issue with vendor 'install' (even GNU) is that you can't | |
| 1133 | +# specify the program used to strip binaries. This is especially | |
| 1134 | +# annoying in cross-compiling environments, where the build's strip | |
| 1135 | +# is unlikely to handle the host's binaries. | |
| 1136 | +# Fortunately install-sh will honor a STRIPPROG variable, so we | |
| 1137 | +# always use install-sh in "make install-strip", and initialize | |
| 1138 | +# STRIPPROG with the value of the STRIP variable (set by the user). | |
| 1139 | +AC_DEFUN([AM_PROG_INSTALL_STRIP], | |
| 1140 | +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | |
| 1141 | +# Installed binaries are usually stripped using 'strip' when the user | |
| 1142 | +# run "make install-strip". However 'strip' might not be the right | |
| 1143 | +# tool to use in cross-compilation environments, therefore Automake | |
| 1144 | +# will honor the 'STRIP' environment variable to overrule this program. | |
| 1145 | +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. | |
| 1146 | +if test "$cross_compiling" != no; then | |
| 1147 | + AC_CHECK_TOOL([STRIP], [strip], :) | |
| 1148 | +fi | |
| 1149 | +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" | |
| 1150 | +AC_SUBST([INSTALL_STRIP_PROGRAM])]) | |
| 1151 | + | |
| 1152 | +# Copyright (C) 2006-2013 Free Software Foundation, Inc. | |
| 1153 | +# | |
| 1154 | +# This file is free software; the Free Software Foundation | |
| 1155 | +# gives unlimited permission to copy and/or distribute it, | |
| 1156 | +# with or without modifications, as long as this notice is preserved. | |
| 1157 | + | |
| 1158 | +# _AM_SUBST_NOTMAKE(VARIABLE) | |
| 1159 | +# --------------------------- | |
| 1160 | +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. | |
| 1161 | +# This macro is traced by Automake. | |
| 1162 | +AC_DEFUN([_AM_SUBST_NOTMAKE]) | |
| 1163 | + | |
| 1164 | +# AM_SUBST_NOTMAKE(VARIABLE) | |
| 1165 | +# -------------------------- | |
| 1166 | +# Public sister of _AM_SUBST_NOTMAKE. | |
| 1167 | +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) | |
| 1168 | + | |
| 1169 | +# Check how to create a tarball. -*- Autoconf -*- | |
| 1170 | + | |
| 1171 | +# Copyright (C) 2004-2013 Free Software Foundation, Inc. | |
| 1172 | +# | |
| 1173 | +# This file is free software; the Free Software Foundation | |
| 1174 | +# gives unlimited permission to copy and/or distribute it, | |
| 1175 | +# with or without modifications, as long as this notice is preserved. | |
| 1176 | + | |
| 1177 | +# _AM_PROG_TAR(FORMAT) | |
| 1178 | +# -------------------- | |
| 1179 | +# Check how to create a tarball in format FORMAT. | |
| 1180 | +# FORMAT should be one of 'v7', 'ustar', or 'pax'. | |
| 1181 | +# | |
| 1182 | +# Substitute a variable $(am__tar) that is a command | |
| 1183 | +# writing to stdout a FORMAT-tarball containing the directory | |
| 1184 | +# $tardir. | |
| 1185 | +# tardir=directory && $(am__tar) > result.tar | |
| 1186 | +# | |
| 1187 | +# Substitute a variable $(am__untar) that extract such | |
| 1188 | +# a tarball read from stdin. | |
| 1189 | +# $(am__untar) < result.tar | |
| 1190 | +# | |
| 1191 | +AC_DEFUN([_AM_PROG_TAR], | |
| 1192 | +[# Always define AMTAR for backward compatibility. Yes, it's still used | |
| 1193 | +# in the wild :-( We should find a proper way to deprecate it ... | |
| 1194 | +AC_SUBST([AMTAR], ['$${TAR-tar}']) | |
| 1195 | + | |
| 1196 | +# We'll loop over all known methods to create a tar archive until one works. | |
| 1197 | +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' | |
| 1198 | + | |
| 1199 | +m4_if([$1], [v7], | |
| 1200 | + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], | |
| 1201 | + | |
| 1202 | + [m4_case([$1], | |
| 1203 | + [ustar], | |
| 1204 | + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. | |
| 1205 | + # There is notably a 21 bits limit for the UID and the GID. In fact, | |
| 1206 | + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 | |
| 1207 | + # and bug#13588). | |
| 1208 | + am_max_uid=2097151 # 2^21 - 1 | |
| 1209 | + am_max_gid=$am_max_uid | |
| 1210 | + # The $UID and $GID variables are not portable, so we need to resort | |
| 1211 | + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls | |
| 1212 | + # below are definitely unexpected, so allow the users to see them | |
| 1213 | + # (that is, avoid stderr redirection). | |
| 1214 | + am_uid=`id -u || echo unknown` | |
| 1215 | + am_gid=`id -g || echo unknown` | |
| 1216 | + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) | |
| 1217 | + if test $am_uid -le $am_max_uid; then | |
| 1218 | + AC_MSG_RESULT([yes]) | |
| 1219 | + else | |
| 1220 | + AC_MSG_RESULT([no]) | |
| 1221 | + _am_tools=none | |
| 1222 | + fi | |
| 1223 | + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) | |
| 1224 | + if test $am_gid -le $am_max_gid; then | |
| 1225 | + AC_MSG_RESULT([yes]) | |
| 1226 | + else | |
| 1227 | + AC_MSG_RESULT([no]) | |
| 1228 | + _am_tools=none | |
| 1229 | + fi], | |
| 1230 | + | |
| 1231 | + [pax], | |
| 1232 | + [], | |
| 1233 | + | |
| 1234 | + [m4_fatal([Unknown tar format])]) | |
| 1235 | + | |
| 1236 | + AC_MSG_CHECKING([how to create a $1 tar archive]) | |
| 1237 | + | |
| 1238 | + # Go ahead even if we have the value already cached. We do so because we | |
| 1239 | + # need to set the values for the 'am__tar' and 'am__untar' variables. | |
| 1240 | + _am_tools=${am_cv_prog_tar_$1-$_am_tools} | |
| 1241 | + | |
| 1242 | + for _am_tool in $_am_tools; do | |
| 1243 | + case $_am_tool in | |
| 1244 | + gnutar) | |
| 1245 | + for _am_tar in tar gnutar gtar; do | |
| 1246 | + AM_RUN_LOG([$_am_tar --version]) && break | |
| 1247 | + done | |
| 1248 | + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' | |
| 1249 | + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' | |
| 1250 | + am__untar="$_am_tar -xf -" | |
| 1251 | + ;; | |
| 1252 | + plaintar) | |
| 1253 | + # Must skip GNU tar: if it does not support --format= it doesn't create | |
| 1254 | + # ustar tarball either. | |
| 1255 | + (tar --version) >/dev/null 2>&1 && continue | |
| 1256 | + am__tar='tar chf - "$$tardir"' | |
| 1257 | + am__tar_='tar chf - "$tardir"' | |
| 1258 | + am__untar='tar xf -' | |
| 1259 | + ;; | |
| 1260 | + pax) | |
| 1261 | + am__tar='pax -L -x $1 -w "$$tardir"' | |
| 1262 | + am__tar_='pax -L -x $1 -w "$tardir"' | |
| 1263 | + am__untar='pax -r' | |
| 1264 | + ;; | |
| 1265 | + cpio) | |
| 1266 | + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' | |
| 1267 | + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' | |
| 1268 | + am__untar='cpio -i -H $1 -d' | |
| 1269 | + ;; | |
| 1270 | + none) | |
| 1271 | + am__tar=false | |
| 1272 | + am__tar_=false | |
| 1273 | + am__untar=false | |
| 1274 | + ;; | |
| 1275 | + esac | |
| 1276 | + | |
| 1277 | + # If the value was cached, stop now. We just wanted to have am__tar | |
| 1278 | + # and am__untar set. | |
| 1279 | + test -n "${am_cv_prog_tar_$1}" && break | |
| 1280 | + | |
| 1281 | + # tar/untar a dummy directory, and stop if the command works. | |
| 1282 | + rm -rf conftest.dir | |
| 1283 | + mkdir conftest.dir | |
| 1284 | + echo GrepMe > conftest.dir/file | |
| 1285 | + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) | |
| 1286 | + rm -rf conftest.dir | |
| 1287 | + if test -s conftest.tar; then | |
| 1288 | + AM_RUN_LOG([$am__untar <conftest.tar]) | |
| 1289 | + AM_RUN_LOG([cat conftest.dir/file]) | |
| 1290 | + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break | |
| 1291 | + fi | |
| 1292 | + done | |
| 1293 | + rm -rf conftest.dir | |
| 1294 | + | |
| 1295 | + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) | |
| 1296 | + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) | |
| 1297 | + | |
| 1298 | +AC_SUBST([am__tar]) | |
| 1299 | +AC_SUBST([am__untar]) | |
| 1300 | +]) # _AM_PROG_TAR | |
| 1301 | + | ... | ... |
auto-generate-files.sh
0 → 100644