Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1 | # Automake input for strace. |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2002-2009 Roland McGrath <roland@redhat.com> |
Dmitry V. Levin | e714b87 | 2016-01-12 01:13:48 +0000 | [diff] [blame] | 4 | # Copyright (c) 2006-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 5 | # Copyright (c) 2008-2015 Mike Frysinger <vapier@gentoo.org> |
| 6 | # Copyright (c) 2015 Elvira Khabirova <lineprinter0@gmail.com> |
| 7 | # All rights reserved. |
| 8 | # |
| 9 | # Redistribution and use in source and binary forms, with or without |
| 10 | # modification, are permitted provided that the following conditions |
| 11 | # are met: |
| 12 | # 1. Redistributions of source code must retain the above copyright |
| 13 | # notice, this list of conditions and the following disclaimer. |
| 14 | # 2. Redistributions in binary form must reproduce the above copyright |
| 15 | # notice, this list of conditions and the following disclaimer in the |
| 16 | # documentation and/or other materials provided with the distribution. |
| 17 | # 3. The name of the author may not be used to endorse or promote products |
| 18 | # derived from this software without specific prior written permission. |
| 19 | # |
| 20 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 21 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 22 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 23 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 24 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 25 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 29 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 30 | |
Dmitry V. Levin | 679c47c | 2015-01-23 22:45:02 +0000 | [diff] [blame] | 31 | if HAVE_M32_RUNTIME |
| 32 | TESTS_M32 = tests-m32 |
| 33 | endif |
| 34 | if HAVE_MX32_RUNTIME |
| 35 | TESTS_MX32 = tests-mx32 |
| 36 | endif |
| 37 | SUBDIRS = tests $(TESTS_M32) $(TESTS_MX32) |
Dmitry V. Levin | 4e4b5ad | 2011-02-27 00:28:50 +0000 | [diff] [blame] | 38 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 39 | bin_PROGRAMS = strace |
| 40 | man_MANS = strace.1 |
Denys Vlasenko | 796f6e8 | 2012-03-09 14:21:59 +0100 | [diff] [blame] | 41 | bin_SCRIPTS = strace-graph strace-log-merge |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 42 | |
Dmitry V. Levin | ee245d8 | 2012-02-25 15:34:10 +0100 | [diff] [blame] | 43 | OS = linux |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 44 | # ARCH is `i386', `m68k', `sparc', etc. |
| 45 | ARCH = @arch@ |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 46 | |
Dmitry V. Levin | 916aded | 2010-09-09 17:36:36 +0000 | [diff] [blame] | 47 | ACLOCAL_AMFLAGS = -I m4 |
Dmitry V. Levin | 918e49b | 2010-09-09 17:41:15 +0000 | [diff] [blame] | 48 | AM_CFLAGS = $(WARN_CFLAGS) |
Dmitry V. Levin | 579836c | 2015-01-13 06:12:16 +0000 | [diff] [blame] | 49 | AM_CPPFLAGS = -I$(builddir)/$(OS)/$(ARCH) \ |
| 50 | -I$(srcdir)/$(OS)/$(ARCH) \ |
| 51 | -I$(builddir)/$(OS) \ |
Dmitry V. Levin | cf3ecbd | 2015-08-26 22:50:58 +0000 | [diff] [blame] | 52 | -I$(srcdir)/$(OS) \ |
| 53 | -I$(builddir) \ |
| 54 | -I$(srcdir) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 55 | |
Mike Frysinger | 761ed9b | 2014-02-16 01:59:20 -0500 | [diff] [blame] | 56 | include xlat/Makemodule.am |
| 57 | |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 58 | strace_CPPFLAGS = $(AM_CPPFLAGS) |
Dmitry V. Levin | 71d3aa0 | 2016-02-03 19:19:48 +0000 | [diff] [blame] | 59 | strace_CFLAGS = $(AM_CFLAGS) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 60 | strace_LDFLAGS = |
Dmitry V. Levin | 6ca4c92 | 2016-02-04 02:49:01 +0000 | [diff] [blame] | 61 | strace_LDADD = libstrace.a |
| 62 | noinst_LIBRARIES = libstrace.a |
| 63 | |
| 64 | libstrace_a_CPPFLAGS = $(strace_CPPFLAGS) |
| 65 | libstrace_a_CFLAGS = $(strace_CFLAGS) |
| 66 | libstrace_a_SOURCES = \ |
Dmitry V. Levin | 67c2f67 | 2016-04-26 00:21:26 +0000 | [diff] [blame] | 67 | fstatfs.c \ |
| 68 | fstatfs64.c \ |
| 69 | statfs.c \ |
| 70 | statfs64.c \ |
Dmitry V. Levin | a7501f6 | 2016-04-22 04:17:06 +0000 | [diff] [blame] | 71 | sync_file_range.c \ |
| 72 | sync_file_range2.c \ |
Dmitry V. Levin | 6ca4c92 | 2016-02-04 02:49:01 +0000 | [diff] [blame] | 73 | upeek.c \ |
| 74 | # end of libstrace_a_SOURCES |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 75 | |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 76 | strace_SOURCES = \ |
Dmitry V. Levin | 304cd81 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 77 | access.c \ |
Dmitry V. Levin | b94b983 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 78 | affinity.c \ |
Dmitry V. Levin | 2b64034 | 2013-11-11 15:06:18 +0000 | [diff] [blame] | 79 | aio.c \ |
Dmitry V. Levin | 2720a61 | 2016-01-09 00:06:06 +0000 | [diff] [blame] | 80 | alpha.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 81 | bjm.c \ |
| 82 | block.c \ |
Dmitry V. Levin | ddb53dd | 2015-07-25 23:55:51 +0000 | [diff] [blame] | 83 | bpf.c \ |
Jeff Mahoney | 8cc6962 | 2016-05-18 18:09:39 -0400 | [diff] [blame] | 84 | btrfs.c \ |
Dmitry V. Levin | 95edb8b | 2014-12-03 20:50:08 +0000 | [diff] [blame] | 85 | cacheflush.c \ |
Dmitry V. Levin | 5e7987b | 2014-12-03 20:30:15 +0000 | [diff] [blame] | 86 | capability.c \ |
Dmitry V. Levin | 2f0808b | 2015-02-18 23:59:50 +0000 | [diff] [blame] | 87 | caps0.h \ |
| 88 | caps1.h \ |
Dmitry V. Levin | 9b2f674 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 89 | chdir.c \ |
Dmitry V. Levin | ad5cf1e | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 90 | chmod.c \ |
Dmitry V. Levin | 265903a | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 91 | clone.c \ |
Dmitry V. Levin | c1f99f5 | 2016-02-13 03:45:32 +0000 | [diff] [blame] | 92 | copy_file_range.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 93 | count.c \ |
Dmitry V. Levin | 72dc1b4 | 2015-12-31 14:15:59 +0000 | [diff] [blame] | 94 | defs.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 95 | desc.c \ |
Dmitry V. Levin | 2ed2cc7 | 2014-09-11 22:40:37 +0000 | [diff] [blame] | 96 | dirent.c \ |
Dmitry V. Levin | a367db8 | 2015-11-19 18:13:53 +0000 | [diff] [blame] | 97 | dirent64.c \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 98 | empty.h \ |
Dmitry V. Levin | aba868c | 2015-08-01 22:58:17 +0000 | [diff] [blame] | 99 | epoll.c \ |
Etienne Gemsa | 4f750b9 | 2015-02-20 17:14:10 +0100 | [diff] [blame] | 100 | evdev.c \ |
Dmitry V. Levin | 28471d1 | 2015-08-01 20:36:53 +0000 | [diff] [blame] | 101 | eventfd.c \ |
Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 102 | execve.c \ |
Dmitry V. Levin | 9175909 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 103 | exit.c \ |
Dmitry V. Levin | 63f28dd | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 104 | fadvise.c \ |
Dmitry V. Levin | 2795a5f | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 105 | fallocate.c \ |
Dmitry V. Levin | 99db95d | 2014-02-05 04:13:18 +0000 | [diff] [blame] | 106 | fanotify.c \ |
Dmitry V. Levin | 2f7d020 | 2014-12-13 16:20:44 +0000 | [diff] [blame] | 107 | fchownat.c \ |
Dmitry V. Levin | 2512003 | 2015-10-01 12:24:01 +0000 | [diff] [blame] | 108 | fcntl.c \ |
Dmitry V. Levin | 7a12974 | 2015-09-19 21:28:23 +0000 | [diff] [blame] | 109 | fetch_seccomp_fprog.c \ |
Dmitry V. Levin | 1a713d9 | 2015-09-19 23:48:56 +0000 | [diff] [blame] | 110 | fetch_struct_flock.c \ |
Dmitry V. Levin | 9a8216e | 2016-06-27 00:02:50 +0000 | [diff] [blame] | 111 | fetch_struct_mmsghdr.c \ |
| 112 | fetch_struct_msghdr.c \ |
Dmitry V. Levin | 67c2f67 | 2016-04-26 00:21:26 +0000 | [diff] [blame] | 113 | fetch_struct_statfs.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 114 | file.c \ |
Dmitry V. Levin | 4b3a170 | 2015-11-22 21:29:32 +0000 | [diff] [blame] | 115 | file_handle.c \ |
Jeff Mahoney | 8cc6962 | 2016-05-18 18:09:39 -0400 | [diff] [blame] | 116 | file_ioctl.c \ |
Dmitry V. Levin | 4dd9f3f | 2016-05-26 00:37:26 +0000 | [diff] [blame] | 117 | fs_x_ioctl.c \ |
Dmitry V. Levin | 5d68f46 | 2015-10-01 12:20:11 +0000 | [diff] [blame] | 118 | flock.c \ |
Dmitry V. Levin | 6250e6c | 2015-10-09 01:38:07 +0000 | [diff] [blame] | 119 | flock.h \ |
Dmitry V. Levin | e314f80 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 120 | futex.c \ |
Dmitry V. Levin | f32126b | 2015-12-31 14:19:41 +0000 | [diff] [blame] | 121 | gcc_compat.h \ |
Dmitry V. Levin | 8357638 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 122 | get_robust_list.c \ |
Dmitry V. Levin | 665f10c | 2014-12-11 19:21:54 +0000 | [diff] [blame] | 123 | getcpu.c \ |
Dmitry V. Levin | a836430 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 124 | getcwd.c \ |
Dmitry V. Levin | fef0907 | 2015-02-04 16:38:09 +0000 | [diff] [blame] | 125 | getrandom.c \ |
Dmitry V. Levin | b3f0040 | 2016-05-26 00:07:17 +0000 | [diff] [blame] | 126 | hdio.c \ |
Dmitry V. Levin | 03c06ea | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 127 | hostname.c \ |
Dmitry V. Levin | 2f332e9 | 2014-02-05 15:43:04 +0000 | [diff] [blame] | 128 | inotify.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 129 | io.c \ |
| 130 | ioctl.c \ |
Dmitry V. Levin | 2aa180e | 2015-11-22 18:18:43 +0000 | [diff] [blame] | 131 | ioperm.c \ |
Dmitry V. Levin | dcd00c3 | 2015-11-22 18:21:54 +0000 | [diff] [blame] | 132 | iopl.c \ |
Dmitry V. Levin | fc4727d | 2014-02-05 17:27:43 +0000 | [diff] [blame] | 133 | ioprio.c \ |
Elvira Khabirova | c01ad06 | 2015-08-19 05:06:26 +0300 | [diff] [blame] | 134 | ipc_defs.h \ |
| 135 | ipc_msg.c \ |
| 136 | ipc_msgctl.c \ |
| 137 | ipc_sem.c \ |
| 138 | ipc_shm.c \ |
| 139 | ipc_shmctl.c \ |
Dmitry V. Levin | 7aa9c0d | 2015-11-22 18:35:27 +0000 | [diff] [blame] | 140 | kcmp.c \ |
Dmitry V. Levin | bdb07e3 | 2015-11-27 01:51:22 +0000 | [diff] [blame] | 141 | kernel_types.h \ |
Dmitry V. Levin | 90aa9f4 | 2014-02-05 13:48:26 +0000 | [diff] [blame] | 142 | kexec.c \ |
Dmitry V. Levin | 3acf403 | 2014-02-05 22:41:45 +0000 | [diff] [blame] | 143 | keyctl.c \ |
Dmitry V. Levin | 99a0544 | 2014-04-10 14:10:17 +0000 | [diff] [blame] | 144 | ldt.c \ |
Dmitry V. Levin | 231b19f | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 145 | link.c \ |
Dmitry V. Levin | c31481f | 2015-12-04 14:37:02 +0000 | [diff] [blame] | 146 | linux/asm_stat.h \ |
Dmitry V. Levin | cfde1e3 | 2015-12-04 15:00:37 +0000 | [diff] [blame] | 147 | linux/x32/asm_stat.h \ |
Dmitry V. Levin | 60d7524 | 2015-11-22 19:28:17 +0000 | [diff] [blame] | 148 | lookup_dcookie.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 149 | loop.c \ |
Dmitry V. Levin | b5d25ec | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 150 | lseek.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 151 | mem.c \ |
Dmitry V. Levin | 2aec1e6 | 2015-11-15 02:29:29 +0000 | [diff] [blame] | 152 | membarrier.c \ |
Dmitry V. Levin | 95b84ea | 2015-07-28 23:03:41 +0000 | [diff] [blame] | 153 | memfd_create.c \ |
Dmitry V. Levin | db23b34 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 154 | mknod.c \ |
Dmitry V. Levin | 6da7ca3 | 2014-12-03 21:12:07 +0000 | [diff] [blame] | 155 | mount.c \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 156 | mpers_type.h \ |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 157 | mq.c \ |
Dmitry V. Levin | 95cce4f | 2016-06-27 00:02:55 +0000 | [diff] [blame^] | 158 | msghdr.c \ |
Dmitry V. Levin | 4b38ce9 | 2016-06-27 00:02:41 +0000 | [diff] [blame] | 159 | msghdr.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 160 | mtd.c \ |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 161 | native_defs.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 162 | net.c \ |
Dmitry V. Levin | a4da0c8 | 2016-04-27 05:06:06 +0000 | [diff] [blame] | 163 | numa.c \ |
Dmitry V. Levin | 964d80a | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 164 | open.c \ |
Dmitry V. Levin | f6eb0d6 | 2014-12-03 20:00:42 +0000 | [diff] [blame] | 165 | or1k_atomic.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 166 | pathtrace.c \ |
Dmitry V. Levin | 0d60cf7 | 2015-08-01 20:28:21 +0000 | [diff] [blame] | 167 | perf.c \ |
Dmitry V. Levin | d28b6a0 | 2014-12-03 21:06:11 +0000 | [diff] [blame] | 168 | personality.c \ |
Dmitry V. Levin | 811bda6 | 2015-07-30 16:49:42 +0000 | [diff] [blame] | 169 | poll.c \ |
Dmitry V. Levin | 53c993d | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 170 | prctl.c \ |
Elvira Khabirova | c01ad06 | 2015-08-19 05:06:26 +0300 | [diff] [blame] | 171 | print_mq_attr.c \ |
| 172 | print_msgbuf.c \ |
Dmitry V. Levin | d6b0558 | 2015-09-16 18:05:43 +0000 | [diff] [blame] | 173 | print_sigevent.c \ |
Dmitry V. Levin | 67c2f67 | 2016-04-26 00:21:26 +0000 | [diff] [blame] | 174 | print_statfs.c \ |
Dmitry V. Levin | b5a23ed | 2015-08-04 01:52:40 +0300 | [diff] [blame] | 175 | print_time.c \ |
Dmitry V. Levin | dd6bf4b | 2015-09-16 21:47:48 +0000 | [diff] [blame] | 176 | print_timex.c \ |
Dmitry V. Levin | 9514ac7 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 177 | printmode.c \ |
Dmitry V. Levin | 1e08a16 | 2015-07-17 23:50:02 +0000 | [diff] [blame] | 178 | printrusage.c \ |
Dmitry V. Levin | 537c964 | 2015-03-27 23:28:15 +0000 | [diff] [blame] | 179 | printsiginfo.c \ |
Dmitry V. Levin | 0e946ab | 2015-07-17 23:56:54 +0000 | [diff] [blame] | 180 | printsiginfo.h \ |
Dmitry V. Levin | ab21a94 | 2014-12-28 18:15:25 +0000 | [diff] [blame] | 181 | printstat.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 182 | process.c \ |
Dmitry V. Levin | db16c52 | 2014-12-11 19:21:54 +0000 | [diff] [blame] | 183 | process_vm.c \ |
Stefan Sørensen | b88a6f8 | 2014-01-31 12:01:01 +0100 | [diff] [blame] | 184 | ptp.c \ |
Dmitry V. Levin | fadf379 | 2015-02-13 00:26:38 +0000 | [diff] [blame] | 185 | ptrace.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 186 | quota.c \ |
Dmitry V. Levin | 9e9ceab | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 187 | readahead.c \ |
Dmitry V. Levin | 46245b3 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 188 | readlink.c \ |
Dmitry V. Levin | 9aaf88c | 2014-02-05 14:51:19 +0000 | [diff] [blame] | 189 | reboot.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 190 | regs.h \ |
Dmitry V. Levin | 6d20a0b | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 191 | renameat.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 192 | resource.c \ |
Dmitry V. Levin | 746db06 | 2015-07-04 08:56:21 +0000 | [diff] [blame] | 193 | rtc.c \ |
Dmitry V. Levin | fff2f31 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 194 | sched.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 195 | scsi.c \ |
Dmitry V. Levin | 2af6903 | 2015-02-04 23:50:50 +0000 | [diff] [blame] | 196 | seccomp.c \ |
Dmitry V. Levin | 7a12974 | 2015-09-19 21:28:23 +0000 | [diff] [blame] | 197 | seccomp_fprog.h \ |
Dmitry V. Levin | ac2e728 | 2015-08-18 22:09:30 +0000 | [diff] [blame] | 198 | sendfile.c \ |
Dmitry V. Levin | 174bb2b | 2015-03-26 13:03:25 +0000 | [diff] [blame] | 199 | sigaltstack.c \ |
Dmitry V. Levin | e714b87 | 2016-01-12 01:13:48 +0000 | [diff] [blame] | 200 | sigevent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 201 | signal.c \ |
Dmitry V. Levin | 2307d5c | 2015-08-03 09:12:26 +0000 | [diff] [blame] | 202 | signalfd.c \ |
Dmitry V. Levin | 74219ea | 2015-03-06 01:47:18 +0000 | [diff] [blame] | 203 | sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 204 | sock.c \ |
Dmitry V. Levin | e96aee7 | 2016-06-25 13:47:54 +0000 | [diff] [blame] | 205 | sockaddr.c \ |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 206 | socketutils.c \ |
Dmitry V. Levin | e36c72c | 2014-12-03 20:56:36 +0000 | [diff] [blame] | 207 | sram_alloc.c \ |
Dmitry V. Levin | 9a0dd74 | 2014-09-22 00:17:42 +0000 | [diff] [blame] | 208 | statfs.c \ |
Dmitry V. Levin | 67c2f67 | 2016-04-26 00:21:26 +0000 | [diff] [blame] | 209 | statfs.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 210 | strace.c \ |
Dmitry V. Levin | 85a364a | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 211 | swapon.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 212 | syscall.c \ |
Dmitry V. Levin | 172241b | 2014-12-03 20:20:52 +0000 | [diff] [blame] | 213 | sysctl.c \ |
Dmitry V. Levin | 57d45a2 | 2014-09-29 23:13:05 +0000 | [diff] [blame] | 214 | sysinfo.c \ |
Dmitry V. Levin | b21e2fb | 2014-12-03 21:01:35 +0000 | [diff] [blame] | 215 | syslog.c \ |
Dmitry V. Levin | 600e33c | 2014-12-03 20:08:44 +0000 | [diff] [blame] | 216 | sysmips.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 217 | term.c \ |
| 218 | time.c \ |
Elvira Khabirova | 254ff1e | 2015-08-03 07:09:34 +0300 | [diff] [blame] | 219 | times.c \ |
Dmitry V. Levin | 6934182 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 220 | truncate.c \ |
Dmitry V. Levin | 5104db4 | 2016-05-28 10:29:30 +0000 | [diff] [blame] | 221 | ubi.c \ |
Dmitry V. Levin | e93ef1e | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 222 | uid.c \ |
Dmitry V. Levin | 80f7db1 | 2014-12-13 21:49:01 +0000 | [diff] [blame] | 223 | uid16.c \ |
Dmitry V. Levin | d590f3c | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 224 | umask.c \ |
Dmitry V. Levin | 542ca1e | 2014-12-03 21:09:26 +0000 | [diff] [blame] | 225 | umount.c \ |
Dmitry V. Levin | 58dd2cf | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 226 | uname.c \ |
Dmitry V. Levin | a6ebdb1 | 2015-11-15 02:22:44 +0000 | [diff] [blame] | 227 | userfaultfd.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 228 | util.c \ |
Dmitry V. Levin | fb470f3 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 229 | utime.c \ |
Dmitry V. Levin | 481e067 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 230 | utimes.c \ |
Philippe De Muyter | 0cc9614 | 2014-11-03 21:27:40 +0100 | [diff] [blame] | 231 | v4l2.c \ |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 232 | vsprintf.c \ |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 233 | wait.c \ |
Dmitry V. Levin | 3e9d71f | 2015-05-25 20:41:02 +0000 | [diff] [blame] | 234 | xattr.c \ |
Dmitry V. Levin | 0e09704 | 2016-04-26 00:08:16 +0000 | [diff] [blame] | 235 | xlat.h \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 236 | xmalloc.c \ |
| 237 | # end of strace_SOURCES |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 238 | |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 239 | if USE_LIBUNWIND |
| 240 | strace_SOURCES += unwind.c |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 241 | strace_CPPFLAGS += $(libunwind_CPPFLAGS) |
| 242 | strace_LDFLAGS += $(libunwind_LDFLAGS) |
| 243 | strace_LDADD += $(libunwind_LIBS) |
Luca Clementi | 327064b | 2013-07-23 00:11:35 -0700 | [diff] [blame] | 244 | endif |
| 245 | |
Gabriel Laskar | cba6710 | 2016-02-01 18:15:39 +0100 | [diff] [blame] | 246 | @CODE_COVERAGE_RULES@ |
Dmitry V. Levin | c415387 | 2016-05-10 02:08:56 +0000 | [diff] [blame] | 247 | CODE_COVERAGE_BRANCH_COVERAGE = 1 |
| 248 | CODE_COVERAGE_GENHTML_OPTIONS = $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) \ |
| 249 | --prefix $(shell realpath -Ls $(abs_top_srcdir)/..) |
Gabriel Laskar | cba6710 | 2016-02-01 18:15:39 +0100 | [diff] [blame] | 250 | CODE_COVERAGE_IGNORE_PATTERN = '/usr/include/*' |
| 251 | strace_CPPFLAGS += $(CODE_COVERAGE_CPPFLAGS) |
| 252 | strace_CFLAGS += $(CODE_COVERAGE_CFLAGS) |
| 253 | strace_LDADD += $(CODE_COVERAGE_LDFLAGS) |
| 254 | |
Denys Vlasenko | 76f61be | 2013-03-06 18:59:09 +0100 | [diff] [blame] | 255 | # Enable this to get link map generated |
Dmitry V. Levin | 71d3aa0 | 2016-02-03 19:19:48 +0000 | [diff] [blame] | 256 | #strace_LDFLAGS += -Wl,-Map=strace.mapfile |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 257 | |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 258 | EXTRA_DIST = \ |
| 259 | $(man_MANS) \ |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 260 | .version \ |
Mike Frysinger | 6c19136 | 2013-05-15 16:33:09 -0400 | [diff] [blame] | 261 | COPYING \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 262 | CREDITS \ |
| 263 | ChangeLog \ |
| 264 | ChangeLog-CVS \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 265 | README-linux-ptrace \ |
| 266 | debian/changelog \ |
| 267 | debian/compat \ |
| 268 | debian/control \ |
| 269 | debian/copyright \ |
| 270 | debian/rules \ |
| 271 | debian/source/format \ |
| 272 | debian/strace-udeb.install \ |
| 273 | debian/strace.docs \ |
| 274 | debian/strace.examples \ |
| 275 | debian/strace.install \ |
| 276 | debian/strace.manpages \ |
| 277 | debian/strace64.install \ |
| 278 | debian/strace64.manpages \ |
| 279 | debian/watch \ |
| 280 | errnoent.sh \ |
Elvira Khabirova | 28e32df | 2015-07-10 22:24:54 +0300 | [diff] [blame] | 281 | generate_sen.sh \ |
Dmitry V. Levin | 00119f6 | 2014-11-04 01:40:42 +0000 | [diff] [blame] | 282 | ioctlsort.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 283 | linux/32/ioctls_inc.h \ |
Dmitry V. Levin | 8c20d89 | 2015-05-21 16:19:40 +0000 | [diff] [blame] | 284 | linux/32/ioctls_inc_align32.h \ |
| 285 | linux/32/ioctls_inc_align64.h \ |
Dmitry V. Levin | dee03a3 | 2015-01-11 04:04:54 +0300 | [diff] [blame] | 286 | linux/32/syscallent.h \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 287 | linux/64/ioctls_inc.h \ |
Dmitry V. Levin | 200c02c | 2015-01-10 20:51:37 +0300 | [diff] [blame] | 288 | linux/64/syscallent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 289 | linux/aarch64/arch_regs.c \ |
Andreas Schwab | 64fc9ce | 2015-03-12 11:54:08 +0100 | [diff] [blame] | 290 | linux/aarch64/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 291 | linux/aarch64/arch_sigreturn.c \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 292 | linux/aarch64/errnoent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 293 | linux/aarch64/get_error.c \ |
| 294 | linux/aarch64/get_scno.c \ |
| 295 | linux/aarch64/get_syscall_args.c\ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 296 | linux/aarch64/ioctls_arch0.h \ |
| 297 | linux/aarch64/ioctls_arch1.h \ |
| 298 | linux/aarch64/ioctls_inc0.h \ |
| 299 | linux/aarch64/ioctls_inc1.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 300 | linux/aarch64/signalent1.h \ |
| 301 | linux/aarch64/syscallent.h \ |
| 302 | linux/aarch64/syscallent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 303 | linux/alpha/arch_getrval2.c \ |
| 304 | linux/alpha/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 305 | linux/alpha/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 306 | linux/alpha/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 307 | linux/alpha/errnoent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 308 | linux/alpha/get_error.c \ |
| 309 | linux/alpha/get_scno.c \ |
| 310 | linux/alpha/get_syscall_args.c \ |
| 311 | linux/alpha/get_syscall_result.c\ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 312 | linux/alpha/ioctls_arch0.h \ |
| 313 | linux/alpha/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 314 | linux/alpha/signalent.h \ |
| 315 | linux/alpha/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 316 | linux/alpha/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 317 | linux/arc/arch_regs.c \ |
| 318 | linux/arc/get_error.c \ |
| 319 | linux/arc/get_scno.c \ |
| 320 | linux/arc/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 321 | linux/arc/ioctls_arch0.h \ |
| 322 | linux/arc/ioctls_inc0.h \ |
Vineet Gupta | 7daacbb | 2013-08-16 12:47:06 +0530 | [diff] [blame] | 323 | linux/arc/syscallent.h \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 324 | linux/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 325 | linux/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 326 | linux/arm/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 327 | linux/arm/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 328 | linux/arm/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 329 | linux/arm/get_error.c \ |
| 330 | linux/arm/get_scno.c \ |
| 331 | linux/arm/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 332 | linux/arm/ioctls_arch0.h \ |
| 333 | linux/arm/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 334 | linux/arm/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 335 | linux/arm/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 336 | linux/avr32/arch_regs.c \ |
| 337 | linux/avr32/get_error.c \ |
| 338 | linux/avr32/get_scno.c \ |
| 339 | linux/avr32/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 340 | linux/avr32/ioctls_arch0.h \ |
| 341 | linux/avr32/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 342 | linux/avr32/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 343 | linux/avr32/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 344 | linux/bfin/arch_regs.c \ |
| 345 | linux/bfin/get_error.c \ |
| 346 | linux/bfin/get_scno.c \ |
| 347 | linux/bfin/get_syscall_args.c \ |
| 348 | linux/bfin/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 349 | linux/bfin/ioctls_arch0.h \ |
| 350 | linux/bfin/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 351 | linux/bfin/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 352 | linux/bfin/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 353 | linux/crisv10/arch_regs.c \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 354 | linux/crisv10/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 355 | linux/crisv10/get_error.c \ |
| 356 | linux/crisv10/get_scno.c \ |
| 357 | linux/crisv10/get_syscall_args.c \ |
| 358 | linux/crisv10/get_syscall_result.c \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 359 | linux/crisv10/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 360 | linux/crisv32/arch_regs.c \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 361 | linux/crisv32/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 362 | linux/crisv32/get_error.c \ |
| 363 | linux/crisv32/get_scno.c \ |
| 364 | linux/crisv32/get_syscall_args.c \ |
| 365 | linux/crisv32/get_syscall_result.c \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 366 | linux/crisv32/userent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 367 | linux/dummy.h \ |
| 368 | linux/errnoent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 369 | linux/hppa/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 370 | linux/hppa/arch_regs.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 371 | linux/hppa/errnoent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 372 | linux/hppa/get_error.c \ |
| 373 | linux/hppa/get_scno.c \ |
| 374 | linux/hppa/get_syscall_args.c \ |
| 375 | linux/hppa/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 376 | linux/hppa/ioctls_arch0.h \ |
| 377 | linux/hppa/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 378 | linux/hppa/signalent.h \ |
| 379 | linux/hppa/syscallent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 380 | linux/i386/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 381 | linux/i386/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 382 | linux/i386/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 383 | linux/i386/get_error.c \ |
| 384 | linux/i386/get_scno.c \ |
| 385 | linux/i386/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 386 | linux/i386/ioctls_arch0.h \ |
| 387 | linux/i386/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 388 | linux/i386/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 389 | linux/i386/userent.h \ |
| 390 | linux/i386/userent0.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 391 | linux/ia64/arch_getrval2.c \ |
| 392 | linux/ia64/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 393 | linux/ia64/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 394 | linux/ia64/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 395 | linux/ia64/get_error.c \ |
| 396 | linux/ia64/get_scno.c \ |
| 397 | linux/ia64/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 398 | linux/ia64/ioctls_arch0.h \ |
| 399 | linux/ia64/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 400 | linux/ia64/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 401 | linux/ia64/userent.h \ |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 402 | linux/inet_diag.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 403 | linux/m68k/arch_regs.c \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 404 | linux/m68k/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 405 | linux/m68k/get_error.c \ |
| 406 | linux/m68k/get_scno.c \ |
| 407 | linux/m68k/get_syscall_args.c \ |
| 408 | linux/m68k/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 409 | linux/m68k/ioctls_arch0.h \ |
| 410 | linux/m68k/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 411 | linux/m68k/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 412 | linux/m68k/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 413 | linux/metag/arch_regs.c \ |
| 414 | linux/metag/get_error.c \ |
| 415 | linux/metag/get_scno.c \ |
| 416 | linux/metag/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 417 | linux/metag/ioctls_arch0.h \ |
| 418 | linux/metag/ioctls_inc0.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 419 | linux/metag/syscallent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 420 | linux/microblaze/arch_regs.c \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 421 | linux/microblaze/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 422 | linux/microblaze/get_error.c \ |
| 423 | linux/microblaze/get_scno.c \ |
| 424 | linux/microblaze/get_syscall_args.c \ |
| 425 | linux/microblaze/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 426 | linux/microblaze/ioctls_arch0.h \ |
| 427 | linux/microblaze/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 428 | linux/microblaze/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 429 | linux/microblaze/userent.h \ |
Dmitry V. Levin | 8e8d7d2 | 2015-03-23 23:14:08 +0000 | [diff] [blame] | 430 | linux/mips/arch_getrval2.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 431 | linux/mips/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 432 | linux/mips/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 433 | linux/mips/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 434 | linux/mips/errnoent.h \ |
Dmitry V. Levin | d59287d | 2015-01-13 04:57:27 +0000 | [diff] [blame] | 435 | linux/mips/genstub.sh \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 436 | linux/mips/get_error.c \ |
| 437 | linux/mips/get_scno.c \ |
| 438 | linux/mips/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 439 | linux/mips/ioctls_arch0.h \ |
| 440 | linux/mips/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 441 | linux/mips/signalent.h \ |
Dmitry V. Levin | 34c445b | 2013-05-07 02:46:46 +0000 | [diff] [blame] | 442 | linux/mips/syscallent-compat.h \ |
| 443 | linux/mips/syscallent-n32.h \ |
| 444 | linux/mips/syscallent-n64.h \ |
| 445 | linux/mips/syscallent-o32.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 446 | linux/mips/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 447 | linux/mips/userent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 448 | linux/mtd-abi.h \ |
Fabien Siron | 814c0d5 | 2016-05-17 10:08:47 +0000 | [diff] [blame] | 449 | linux/netlink_diag.h \ |
Ezequiel Garcia | bd8dd77 | 2015-04-18 17:33:27 -0300 | [diff] [blame] | 450 | linux/nios2/arch_regs.c \ |
| 451 | linux/nios2/get_error.c \ |
| 452 | linux/nios2/get_scno.c \ |
| 453 | linux/nios2/get_syscall_args.c \ |
| 454 | linux/nios2/ioctls_arch0.h \ |
| 455 | linux/nios2/ioctls_inc0.h \ |
Ezequiel Garcia | bd8dd77 | 2015-04-18 17:33:27 -0300 | [diff] [blame] | 456 | linux/nios2/syscallent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 457 | linux/or1k/arch_regs.c \ |
| 458 | linux/or1k/get_error.c \ |
| 459 | linux/or1k/get_scno.c \ |
| 460 | linux/or1k/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 461 | linux/or1k/ioctls_arch0.h \ |
| 462 | linux/or1k/ioctls_inc0.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 463 | linux/or1k/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 464 | linux/or1k/userent.h \ |
Dmitry V. Levin | 2a32eaa | 2014-02-05 02:09:49 +0000 | [diff] [blame] | 465 | linux/personality.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 466 | linux/powerpc/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 467 | linux/powerpc/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 468 | linux/powerpc/arch_sigreturn.c \ |
Dmitry V. Levin | b2f8c77 | 2015-02-23 03:10:25 +0000 | [diff] [blame] | 469 | linux/powerpc/errnoent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 470 | linux/powerpc/get_error.c \ |
| 471 | linux/powerpc/get_scno.c \ |
| 472 | linux/powerpc/get_syscall_args.c \ |
| 473 | linux/powerpc/getregs_old.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 474 | linux/powerpc/ioctls_arch0.h \ |
| 475 | linux/powerpc/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 476 | linux/powerpc/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 477 | linux/powerpc/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 478 | linux/powerpc64/arch_regs.c \ |
Dmitry V. Levin | 7226c3a | 2015-02-23 21:28:33 +0000 | [diff] [blame] | 479 | linux/powerpc64/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 480 | linux/powerpc64/arch_sigreturn.c \ |
Dmitry V. Levin | b2f8c77 | 2015-02-23 03:10:25 +0000 | [diff] [blame] | 481 | linux/powerpc64/errnoent.h \ |
Dmitry V. Levin | af3ab5b | 2015-01-21 17:04:31 +0000 | [diff] [blame] | 482 | linux/powerpc64/errnoent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 483 | linux/powerpc64/get_error.c \ |
| 484 | linux/powerpc64/get_scno.c \ |
| 485 | linux/powerpc64/get_syscall_args.c \ |
| 486 | linux/powerpc64/getregs_old.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 487 | linux/powerpc64/ioctls_arch0.h \ |
| 488 | linux/powerpc64/ioctls_arch1.h \ |
| 489 | linux/powerpc64/ioctls_inc0.h \ |
| 490 | linux/powerpc64/ioctls_inc1.h \ |
Dmitry V. Levin | af3ab5b | 2015-01-21 17:04:31 +0000 | [diff] [blame] | 491 | linux/powerpc64/signalent1.h \ |
| 492 | linux/powerpc64/syscallent.h \ |
| 493 | linux/powerpc64/syscallent1.h \ |
| 494 | linux/powerpc64/userent.h \ |
Stefan Sørensen | b88a6f8 | 2014-01-31 12:01:01 +0100 | [diff] [blame] | 495 | linux/ptp_clock.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 496 | linux/s390/arch_regs.c \ |
Dmitry V. Levin | 20eca8a | 2015-03-05 22:10:15 +0000 | [diff] [blame] | 497 | linux/s390/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 498 | linux/s390/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 499 | linux/s390/get_error.c \ |
| 500 | linux/s390/get_scno.c \ |
| 501 | linux/s390/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 502 | linux/s390/ioctls_arch0.h \ |
| 503 | linux/s390/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 504 | linux/s390/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 505 | linux/s390/userent.h \ |
| 506 | linux/s390/userent0.h \ |
| 507 | linux/s390/userent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 508 | linux/s390x/arch_regs.c \ |
Dmitry V. Levin | 20eca8a | 2015-03-05 22:10:15 +0000 | [diff] [blame] | 509 | linux/s390x/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 510 | linux/s390x/arch_sigreturn.c \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 511 | linux/s390x/get_error.c \ |
| 512 | linux/s390x/get_scno.c \ |
| 513 | linux/s390x/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 514 | linux/s390x/ioctls_arch0.h \ |
| 515 | linux/s390x/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 516 | linux/s390x/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 517 | linux/s390x/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 518 | linux/sh/arch_getrval2.c \ |
| 519 | linux/sh/arch_regs.c \ |
| 520 | linux/sh/get_error.c \ |
| 521 | linux/sh/get_scno.c \ |
| 522 | linux/sh/get_syscall_args.c \ |
| 523 | linux/sh/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 524 | linux/sh/ioctls_arch0.h \ |
| 525 | linux/sh/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 526 | linux/sh/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 527 | linux/sh/userent.h \ |
| 528 | linux/sh/userent0.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 529 | linux/sh64/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 530 | linux/sh64/arch_regs.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 531 | linux/sh64/get_error.c \ |
| 532 | linux/sh64/get_scno.c \ |
| 533 | linux/sh64/get_syscall_args.c \ |
| 534 | linux/sh64/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 535 | linux/sh64/ioctls_arch0.h \ |
| 536 | linux/sh64/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 537 | linux/sh64/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 538 | linux/sh64/userent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 539 | linux/signalent.h \ |
Dmitry V. Levin | 2f6510c | 2014-08-21 03:17:48 +0000 | [diff] [blame] | 540 | linux/sock_diag.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 541 | linux/sparc/arch_getrval2.c \ |
| 542 | linux/sparc/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 543 | linux/sparc/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 544 | linux/sparc/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 545 | linux/sparc/errnoent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 546 | linux/sparc/gen.pl \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 547 | linux/sparc/get_error.c \ |
| 548 | linux/sparc/get_scno.c \ |
| 549 | linux/sparc/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 550 | linux/sparc/ioctls_arch0.h \ |
| 551 | linux/sparc/ioctls_inc0.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 552 | linux/sparc/signalent.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 553 | linux/sparc/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 554 | linux/sparc/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 555 | linux/sparc64/arch_getrval2.c \ |
| 556 | linux/sparc64/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 557 | linux/sparc64/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 558 | linux/sparc64/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 559 | linux/sparc64/errnoent.h \ |
Denys Vlasenko | 588a90f | 2015-03-25 15:11:36 +0100 | [diff] [blame] | 560 | linux/sparc64/errnoent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 561 | linux/sparc64/get_error.c \ |
| 562 | linux/sparc64/get_scno.c \ |
| 563 | linux/sparc64/get_syscall_args.c\ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 564 | linux/sparc64/ioctls_arch0.h \ |
Denys Vlasenko | 588a90f | 2015-03-25 15:11:36 +0100 | [diff] [blame] | 565 | linux/sparc64/ioctls_arch1.h \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 566 | linux/sparc64/ioctls_inc0.h \ |
Denys Vlasenko | 588a90f | 2015-03-25 15:11:36 +0100 | [diff] [blame] | 567 | linux/sparc64/ioctls_inc1.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 568 | linux/sparc64/signalent.h \ |
Denys Vlasenko | 588a90f | 2015-03-25 15:11:36 +0100 | [diff] [blame] | 569 | linux/sparc64/signalent1.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 570 | linux/sparc64/syscallent.h \ |
Denys Vlasenko | 588a90f | 2015-03-25 15:11:36 +0100 | [diff] [blame] | 571 | linux/sparc64/syscallent1.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 572 | linux/sparc64/userent.h \ |
Dmitry V. Levin | de462cf | 2013-05-07 18:38:01 +0400 | [diff] [blame] | 573 | linux/subcall.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 574 | linux/syscall.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 575 | linux/tile/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 576 | linux/tile/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 577 | linux/tile/arch_sigreturn.c \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 578 | linux/tile/errnoent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 579 | linux/tile/get_error.c \ |
| 580 | linux/tile/get_scno.c \ |
| 581 | linux/tile/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 582 | linux/tile/ioctls_arch0.h \ |
| 583 | linux/tile/ioctls_arch1.h \ |
| 584 | linux/tile/ioctls_inc0.h \ |
| 585 | linux/tile/ioctls_inc1.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 586 | linux/tile/signalent1.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 587 | linux/tile/syscallent.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 588 | linux/tile/syscallent1.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 589 | linux/tile/userent.h \ |
Dmitry V. Levin | 8e0b8be | 2013-06-02 18:09:44 +0000 | [diff] [blame] | 590 | linux/ubi-user.h \ |
Dmitry V. Levin | ce21ef0 | 2015-01-09 02:02:39 +0000 | [diff] [blame] | 591 | linux/unix_diag.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 592 | linux/userent.h \ |
| 593 | linux/userent0.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 594 | linux/x32/arch_regs.c \ |
Dmitry V. Levin | 19fcb27 | 2015-02-26 20:40:43 +0000 | [diff] [blame] | 595 | linux/x32/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 596 | linux/x32/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 597 | linux/x32/errnoent1.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 598 | linux/x32/get_error.c \ |
| 599 | linux/x32/get_scno.c \ |
| 600 | linux/x32/get_syscall_args.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 601 | linux/x32/ioctls_arch0.h \ |
| 602 | linux/x32/ioctls_arch1.h \ |
| 603 | linux/x32/ioctls_inc0.h \ |
| 604 | linux/x32/ioctls_inc1.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 605 | linux/x32/signalent1.h \ |
| 606 | linux/x32/syscallent.h \ |
| 607 | linux/x32/syscallent1.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 608 | linux/x32/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 609 | linux/x86_64/arch_regs.c \ |
Dmitry V. Levin | 5503dd2 | 2015-02-13 02:12:14 +0000 | [diff] [blame] | 610 | linux/x86_64/arch_regs.h \ |
Dmitry V. Levin | a3c4835 | 2015-03-23 21:16:07 +0000 | [diff] [blame] | 611 | linux/x86_64/arch_sigreturn.c \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 612 | linux/x86_64/errnoent1.h \ |
| 613 | linux/x86_64/errnoent2.h \ |
| 614 | linux/x86_64/gentab.pl \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 615 | linux/x86_64/get_error.c \ |
| 616 | linux/x86_64/get_scno.c \ |
| 617 | linux/x86_64/get_syscall_args.c \ |
| 618 | linux/x86_64/getregs_old.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 619 | linux/x86_64/ioctls_arch0.h \ |
| 620 | linux/x86_64/ioctls_arch1.h \ |
Dmitry V. Levin | 4341373 | 2015-03-02 02:38:50 +0000 | [diff] [blame] | 621 | linux/x86_64/ioctls_arch2.h \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 622 | linux/x86_64/ioctls_inc0.h \ |
| 623 | linux/x86_64/ioctls_inc1.h \ |
Dmitry V. Levin | 4341373 | 2015-03-02 02:38:50 +0000 | [diff] [blame] | 624 | linux/x86_64/ioctls_inc2.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 625 | linux/x86_64/signalent1.h \ |
| 626 | linux/x86_64/signalent2.h \ |
| 627 | linux/x86_64/syscallent.h \ |
| 628 | linux/x86_64/syscallent1.h \ |
| 629 | linux/x86_64/syscallent2.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 630 | linux/x86_64/userent.h \ |
Dmitry V. Levin | d70d1c4 | 2015-03-22 22:13:55 +0000 | [diff] [blame] | 631 | linux/xtensa/arch_regs.c \ |
| 632 | linux/xtensa/get_error.c \ |
| 633 | linux/xtensa/get_scno.c \ |
| 634 | linux/xtensa/get_syscall_args.c \ |
| 635 | linux/xtensa/get_syscall_result.c \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 636 | linux/xtensa/ioctls_arch0.h \ |
| 637 | linux/xtensa/ioctls_inc0.h \ |
Dmitry V. Levin | 0db34e7 | 2013-06-02 18:12:44 +0000 | [diff] [blame] | 638 | linux/xtensa/syscallent.h \ |
Dmitry V. Levin | fced7b0 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 639 | linux/xtensa/userent.h \ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 640 | maint/ioctls_gen.sh \ |
| 641 | maint/ioctls_hex.sh \ |
| 642 | maint/ioctls_sym.sh \ |
| 643 | maint/print_ioctlent.c \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 644 | mpers.awk \ |
| 645 | mpers.sh \ |
| 646 | mpers_test.sh \ |
Dmitry V. Levin | 5cb45b2 | 2015-11-20 01:43:12 +0000 | [diff] [blame] | 647 | mpers_xlat.h \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 648 | signalent.sh \ |
| 649 | strace-graph \ |
| 650 | strace-log-merge \ |
| 651 | strace.spec \ |
| 652 | syscallent.sh \ |
Mike Frysinger | 761ed9b | 2014-02-16 01:59:20 -0500 | [diff] [blame] | 653 | $(XLAT_INPUT_FILES) \ |
| 654 | $(XLAT_HEADER_FILES) \ |
| 655 | xlat/gen.sh \ |
Dmitry V. Levin | 7ae73a9 | 2013-04-30 23:34:51 +0000 | [diff] [blame] | 656 | xlate.el |
Roland McGrath | bc44e40 | 2004-07-12 05:45:08 +0000 | [diff] [blame] | 657 | |
Roland McGrath | 2b832df | 2009-10-06 17:46:56 -0700 | [diff] [blame] | 658 | .PHONY: srpm |
Dmitry V. Levin | 525a39a | 2011-02-27 14:05:58 +0000 | [diff] [blame] | 659 | srpm: dist-xz |
| 660 | rpmbuild --define '%_srcrpmdir .' -ts $(distdir).tar.xz |
Roland McGrath | 2b832df | 2009-10-06 17:46:56 -0700 | [diff] [blame] | 661 | |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 662 | $(srcdir)/.version: |
| 663 | $(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@ |
| 664 | |
Dmitry V. Levin | a7501f6 | 2016-04-22 04:17:06 +0000 | [diff] [blame] | 665 | strace_SOURCES_c = \ |
| 666 | $(filter %.c,$(strace_SOURCES)) $(filter %.c,$(libstrace_a_SOURCES)) |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 667 | |
| 668 | sys_func.h: $(patsubst %,$(srcdir)/%,$(strace_SOURCES_c)) |
| 669 | for f in $^; do \ |
| 670 | sed -n 's/^SYS_FUNC(.*/extern &;/p' $$f; \ |
| 671 | done | sort -u > $@ |
| 672 | |
Elvira Khabirova | 28e32df | 2015-07-10 22:24:54 +0300 | [diff] [blame] | 673 | syscallent_names = subcall.h syscallent.h syscallent1.h \ |
| 674 | syscallent-n32.h syscallent-n64.h syscallent-o32.h |
| 675 | syscallent_patterns = $(patsubst %,\%/%,$(syscallent_names)) |
| 676 | syscallent_files = $(filter $(syscallent_patterns),$(EXTRA_DIST)) |
| 677 | |
| 678 | sen.h: $(patsubst %,$(srcdir)/%,$(syscallent_files)) |
| 679 | for f in $^; do cat -- $$f; done | \ |
| 680 | $(srcdir)/generate_sen.sh > $@ |
| 681 | |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 682 | dist-hook: |
| 683 | $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version |
| 684 | |
| 685 | today = $(shell date +%Y-%m-%d) |
| 686 | version_regexp = $(subst .,\.,$(VERSION)) |
| 687 | news_check_regexp = 'Noteworthy changes in release $(version_regexp) ($(today))' |
| 688 | |
| 689 | news-check: NEWS |
| 690 | $(AM_V_GEN)if head -1 $< | \ |
| 691 | grep -x $(news_check_regexp) >/dev/null; then \ |
| 692 | :; \ |
| 693 | else \ |
| 694 | echo >&2 '$<: check failed'; \ |
| 695 | exit 1; \ |
| 696 | fi |
Mike Frysinger | 9004e12 | 2011-02-20 23:24:22 -0500 | [diff] [blame] | 697 | |
Mike Frysinger | 58c7fe9 | 2015-02-26 22:22:36 -0500 | [diff] [blame] | 698 | ioctlsort_CC = $(CC_FOR_BUILD) |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 699 | ioctlsort_DEFS = $(DEFS) |
| 700 | ioctlsort_INCLUDES = $(DEFAULT_INCLUDES) $(INCLUDES) |
Mike Frysinger | 58c7fe9 | 2015-02-26 22:22:36 -0500 | [diff] [blame] | 701 | ioctlsort_CPPFLAGS = $(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD) |
| 702 | ioctlsort_CFLAGS = $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) |
| 703 | ioctlsort_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_FOR_BUILD) |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 704 | |
| 705 | ioctls_inc_h = $(wildcard $(srcdir)/$(OS)/$(ARCH)/ioctls_inc*.h) |
| 706 | ioctlent_h = $(patsubst $(srcdir)/$(OS)/$(ARCH)/ioctls_inc%,ioctlent%,$(ioctls_inc_h)) |
Dmitry V. Levin | 1822546 | 2016-05-02 22:06:56 +0000 | [diff] [blame] | 707 | ioctl_redefs_h = $(filter-out ioctl_redefs0.h,$(subst ioctlent,ioctl_redefs,$(ioctlent_h))) |
| 708 | |
| 709 | ioctl_redefs%.h: ioctlent%.h ioctlent0.h |
| 710 | sort $< > $<-t |
| 711 | sort ioctlent0.h | comm -23 $<-t - | \ |
| 712 | sed -n 's/^{ "\([^"]\+\)", \(0x[[:xdigit:]]\+\) },$$/#ifdef \1\n# undef \1\n# define \1 \2\n#endif/p' \ |
| 713 | > $@-t |
| 714 | rm -f $<-t |
| 715 | mv $@-t $@ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 716 | |
| 717 | ioctlent%.h: ioctlsort% |
| 718 | ./$< > $@ |
| 719 | |
Mike Frysinger | 58c7fe9 | 2015-02-26 22:22:36 -0500 | [diff] [blame] | 720 | ioctlsort%$(BUILD_EXEEXT): ioctlsort%.o |
| 721 | $(ioctlsort_CC) $(ioctlsort_CFLAGS) $(ioctlsort_LDFLAGS) $< -o $@ |
Dmitry V. Levin | df7aa2b | 2015-01-19 17:02:16 +0000 | [diff] [blame] | 722 | |
| 723 | ioctlsort%.o: ioctls_all%.h $(srcdir)/ioctlsort.c |
| 724 | $(ioctlsort_CC) $(ioctlsort_DEFS) $(ioctlsort_INCLUDES) $(ioctlsort_CPPFLAGS) $(ioctlsort_CFLAGS) -DIOCTLSORT_INC=\"$<\" -c -o $@ $(srcdir)/ioctlsort.c |
| 725 | |
| 726 | ioctls_all%.h: $(srcdir)/$(OS)/$(ARCH)/ioctls_inc%.h $(srcdir)/$(OS)/$(ARCH)/ioctls_arch%.h |
| 727 | cat $^ > $@ |
Dmitry V. Levin | 00119f6 | 2014-11-04 01:40:42 +0000 | [diff] [blame] | 728 | |
Dmitry V. Levin | 1822546 | 2016-05-02 22:06:56 +0000 | [diff] [blame] | 729 | BUILT_SOURCES = $(ioctl_redefs_h) $(ioctlent_h) \ |
| 730 | native_printer_decls.h native_printer_defs.h printers.h sen.h sys_func.h .version |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 731 | CLEANFILES = $(ioctl_redefs_h) $(ioctlent_h) $(mpers_preproc_files) \ |
Dmitry V. Levin | 1822546 | 2016-05-02 22:06:56 +0000 | [diff] [blame] | 732 | native_printer_decls.h native_printer_defs.h printers.h sen.h sys_func.h |
Dmitry V. Levin | e2a3370 | 2015-08-27 19:51:05 +0000 | [diff] [blame] | 733 | DISTCLEANFILES = gnu/stubs-32.h gnu/stubs-x32.h |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 734 | |
| 735 | # defines mpers_source_files |
| 736 | include mpers.am |
| 737 | srcdir_mpers_source_files = $(patsubst %,$(srcdir)/%,$(mpers_source_files)) |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 738 | mpers_preproc_files = $(mpers_source_files:.c=.c.mpers.i) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 739 | |
| 740 | mpers_NAME = |
| 741 | mpers_PREFIX = $(mpers_NAME)_ |
| 742 | mpers_DEFS = $(DEFS) |
| 743 | mpers_INCLUDES = $(DEFAULT_INCLUDES) $(INCLUDES) |
| 744 | mpers_CPPFLAGS = $(strace_CPPFLAGS) $(CPPFLAGS) |
| 745 | mpers_sh_opts = $(mpers_DEFS) $(mpers_INCLUDES) $(mpers_CPPFLAGS) |
Dmitry V. Levin | fafa7dc | 2016-02-03 19:18:28 +0000 | [diff] [blame] | 746 | libmpers_CPPFLAGS = $(strace_CPPFLAGS) -DIN_MPERS |
Dmitry V. Levin | 71d3aa0 | 2016-02-03 19:19:48 +0000 | [diff] [blame] | 747 | libmpers_CFLAGS = $(strace_CFLAGS) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 748 | |
| 749 | # mpers targets |
| 750 | |
Gabriel Laskar | ad25c74 | 2015-10-01 14:49:25 +0200 | [diff] [blame] | 751 | mpers-m%.stamp: $(srcdir_mpers_source_files) | printers.h |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 752 | for f in $^; do \ |
| 753 | CC="$(CC)" CFLAGS="$(mpers_sh_opts)" \ |
Dmitry V. Levin | 35bd0b8 | 2015-11-16 01:12:18 +0000 | [diff] [blame] | 754 | CPP="$(CPP)" CPPFLAGS="$(mpers_sh_opts) -DIN_MPERS -DMPERS_IS_$(mpers_NAME)" \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 755 | $(srcdir)/mpers.sh -$(mpers_NAME) $$f || exit; \ |
| 756 | done |
| 757 | > $@ |
| 758 | |
Dmitry V. Levin | 370eb16 | 2015-11-07 23:22:24 +0000 | [diff] [blame] | 759 | m%_type_defs.h: $(srcdir_mpers_source_files) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 760 | for f in $^; do \ |
| 761 | sed -n 's/^#include DEF_MPERS_TYPE(\([^)]\+\))/#ifdef MPERS_$(mpers_PREFIX)\1\n# define \1 MPERS_$(mpers_PREFIX)\1\n#endif/p' $$f || exit; \ |
| 762 | done > $@-t |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 763 | echo '#undef MPERS_PRINTER_NAME' >> $@-t |
| 764 | echo '#define MPERS_PRINTER_NAME(printer_name) printer_name' >> $@-t |
| 765 | echo '#include "$(mpers_PREFIX)printer_decls.h"' >> $@-t |
Dmitry V. Levin | 1822546 | 2016-05-02 22:06:56 +0000 | [diff] [blame] | 766 | echo '#include MPERS_$(mpers_PREFIX)IOCTL_MACROS' >> $@-t |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 767 | mv $@-t $@ |
| 768 | |
| 769 | m%_funcs.h: $(srcdir_mpers_source_files) |
| 770 | for f in $^; do \ |
| 771 | sed -n 's/^SYS_FUNC(\([^)]\+\))/#undef sys_\1\n#define sys_\1 $(mpers_PREFIX)sys_\1/p' $$f || exit; \ |
| 772 | done > $@-t && \ |
| 773 | echo '#include "sys_func.h"' >> $@-t |
| 774 | mv $@-t $@ |
| 775 | |
| 776 | # printers |
| 777 | |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 778 | %.c.mpers.i: $(srcdir)/%.c |
| 779 | $(CPP) -P $(mpers_sh_opts) -DIN_MPERS_BOOTSTRAP $< -o $@ |
| 780 | |
| 781 | mpers_printer_decl_pattern = ^MPERS_PRINTER_DECL(\([^,)]\+\),[[:space:]]*\([^,)]\+\),[[:space:]]*\([^)]\+\))$$ |
| 782 | |
| 783 | printers.h: $(mpers_preproc_files) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 784 | echo '/* Generated by Makefile from $^; do not edit. */' > $@-t |
| 785 | echo 'typedef struct {' >> $@-t |
| 786 | for f in $^; do \ |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 787 | sed -n 's/$(mpers_printer_decl_pattern)/ \1 (*\2)(\3);\n#define \2 MPERS_PRINTER_NAME(\2)\n/p' $$f \ |
| 788 | || exit; \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 789 | done >> $@-t |
| 790 | echo '} struct_printers;' >> $@-t |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 791 | echo 'extern const struct_printers *printers;' >> $@-t |
| 792 | echo '#define MPERS_PRINTER_NAME(printer_name) printers->printer_name' >> $@-t |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 793 | mv $@-t $@ |
| 794 | |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 795 | %_printer_decls.h: $(mpers_preproc_files) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 796 | echo '/* Generated by Makefile from $^; do not edit. */' > $@-t |
| 797 | for f in $^; do \ |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 798 | sed -n 's/$(mpers_printer_decl_pattern)/extern \1 $(mpers_PREFIX)\2(\3);/p' $$f \ |
| 799 | || exit; \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 800 | done >> $@-t |
| 801 | mv $@-t $@ |
| 802 | |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 803 | %_printer_defs.h: $(mpers_preproc_files) |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 804 | echo '/* Generated by Makefile from $^; do not edit. */' > $@-t |
| 805 | for f in $^; do \ |
Dmitry V. Levin | a8fce09 | 2016-05-21 22:53:06 +0000 | [diff] [blame] | 806 | sed -n 's/$(mpers_printer_decl_pattern)/\.\2 = $(mpers_PREFIX)\2,/p' $$f \ |
| 807 | || exit; \ |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 808 | done >> $@-t |
| 809 | mv $@-t $@ |
| 810 | |
| 811 | native_printer_decls.h native_printer_defs.h: mpers_PREFIX = |
| 812 | |
| 813 | if HAVE_M32_MPERS |
| 814 | |
| 815 | strace_LDADD += libmpers-m32.a |
| 816 | noinst_LIBRARIES += libmpers-m32.a |
| 817 | libmpers_m32_a_SOURCES = $(mpers_source_files) |
| 818 | libmpers_m32_a_CPPFLAGS = $(libmpers_CPPFLAGS) -DMPERS_IS_m32 -I$(builddir)/mpers-m32 |
Dmitry V. Levin | 71d3aa0 | 2016-02-03 19:19:48 +0000 | [diff] [blame] | 819 | libmpers_m32_a_CFLAGS = $(libmpers_CFLAGS) |
Dmitry V. Levin | 370eb16 | 2015-11-07 23:22:24 +0000 | [diff] [blame] | 820 | mpers_m32_targets = mpers-m32.stamp m32_type_defs.h m32_funcs.h m32_printer_decls.h m32_printer_defs.h |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 821 | |
| 822 | BUILT_SOURCES += $(mpers_m32_targets) |
| 823 | CLEANFILES += $(mpers_m32_targets) |
| 824 | |
| 825 | $(mpers_m32_targets): mpers_NAME = m32 |
| 826 | |
| 827 | endif # HAVE_M32_MPERS |
| 828 | |
| 829 | if HAVE_MX32_MPERS |
| 830 | |
| 831 | strace_LDADD += libmpers-mx32.a |
| 832 | noinst_LIBRARIES += libmpers-mx32.a |
| 833 | libmpers_mx32_a_SOURCES = $(mpers_source_files) |
| 834 | libmpers_mx32_a_CPPFLAGS = $(libmpers_CPPFLAGS) -DMPERS_IS_mx32 -I$(builddir)/mpers-mx32 |
Dmitry V. Levin | 71d3aa0 | 2016-02-03 19:19:48 +0000 | [diff] [blame] | 835 | libmpers_mx32_a_CFLAGS = $(libmpers_CFLAGS) |
Dmitry V. Levin | 370eb16 | 2015-11-07 23:22:24 +0000 | [diff] [blame] | 836 | mpers_mx32_targets = mpers-mx32.stamp mx32_type_defs.h mx32_funcs.h mx32_printer_decls.h mx32_printer_defs.h |
Elvira Khabirova | 0929422 | 2015-08-04 01:47:02 +0300 | [diff] [blame] | 837 | |
| 838 | BUILT_SOURCES += $(mpers_mx32_targets) |
| 839 | CLEANFILES += $(mpers_mx32_targets) |
| 840 | |
| 841 | $(mpers_mx32_targets): mpers_NAME = mx32 |
| 842 | |
| 843 | endif # HAVE_MX32_MPERS |
| 844 | |
| 845 | clean-local: |
| 846 | -rm -rf mpers-m32 mpers-mx32 |
| 847 | |
Roland McGrath | bc44e40 | 2004-07-12 05:45:08 +0000 | [diff] [blame] | 848 | if MAINTAINER_MODE |
Roland McGrath | a478d74 | 2009-10-06 17:41:02 -0700 | [diff] [blame] | 849 | |
| 850 | gen_changelog_start_date = 2009-07-08 20:00 |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 851 | $(srcdir)/ChangeLog: $(srcdir)/gitlog-to-changelog $(srcdir)/Makefile.in \ |
| 852 | $(srcdir)/.version |
Roland McGrath | a478d74 | 2009-10-06 17:41:02 -0700 | [diff] [blame] | 853 | @rm -f $@.new |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 854 | (cd $(srcdir); \ |
Dmitry V. Levin | 594399d | 2011-11-05 13:32:27 +0000 | [diff] [blame] | 855 | ./gitlog-to-changelog --append-dot \ |
| 856 | --since='$(gen_changelog_start_date)'; \ |
Roland McGrath | a478d74 | 2009-10-06 17:41:02 -0700 | [diff] [blame] | 857 | echo; echo; echo 'See ChangeLog-CVS for older changes.' \ |
| 858 | ) > $@.new |
| 859 | chmod 444 $@.new |
| 860 | mv -f $@.new $@ |
| 861 | |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 862 | $(srcdir)/CREDITS: $(srcdir)/CREDITS.in $(srcdir)/.mailmap \ |
| 863 | $(srcdir)/Makefile.in $(srcdir)/.version |
Dmitry V. Levin | 59138a2 | 2011-02-24 01:51:15 +0000 | [diff] [blame] | 864 | $(AM_V_GEN) \ |
Mike Frysinger | 67c4d43 | 2014-08-14 04:05:37 -0400 | [diff] [blame] | 865 | ( \ |
Dmitry V. Levin | dce7593 | 2013-04-30 23:52:12 +0000 | [diff] [blame] | 866 | cd $(srcdir); \ |
Dmitry V. Levin | 59138a2 | 2011-02-24 01:51:15 +0000 | [diff] [blame] | 867 | sed '/^##/,$$d' CREDITS.in; \ |
| 868 | { sed -n '1,/^##>/d; s/ \+/\t/; s/^./&/p' CREDITS.in; \ |
| 869 | git log --pretty=format:'%aN %aE'; \ |
| 870 | } | LC_ALL=C sort -u \ |
| 871 | | awk -F'\t' '{printf("\t%s <%s>\n",$$1,$$2)}'; \ |
Mike Frysinger | 67c4d43 | 2014-08-14 04:05:37 -0400 | [diff] [blame] | 872 | ) > $@-t && mv $@-t $@ |
Dmitry V. Levin | 59138a2 | 2011-02-24 01:51:15 +0000 | [diff] [blame] | 873 | |
Dmitry V. Levin | 76ac37d | 2009-10-09 22:10:09 +0000 | [diff] [blame] | 874 | export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner --mode=go-w,go+rX |
| 875 | |
Dmitry V. Levin | 00119f6 | 2014-11-04 01:40:42 +0000 | [diff] [blame] | 876 | endif |