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