blob: 77e0cc87937f7ad42a39e5385bfbc64bc5cb48a8 [file] [log] [blame]
Roland McGrath6d2b3492002-12-30 00:51:30 +00001# Automake input for strace.
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00002#
3# Copyright (c) 2002-2009 Roland McGrath <roland@redhat.com>
Dmitry V. Levine714b872016-01-12 01:13:48 +00004# Copyright (c) 2006-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00005# 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 McGrath6d2b3492002-12-30 00:51:30 +000030
Dmitry V. Levin679c47c2015-01-23 22:45:02 +000031if HAVE_M32_RUNTIME
32TESTS_M32 = tests-m32
33endif
34if HAVE_MX32_RUNTIME
35TESTS_MX32 = tests-mx32
36endif
37SUBDIRS = tests $(TESTS_M32) $(TESTS_MX32)
Dmitry V. Levin4e4b5ad2011-02-27 00:28:50 +000038
Roland McGrath6d2b3492002-12-30 00:51:30 +000039bin_PROGRAMS = strace
40man_MANS = strace.1
Denys Vlasenko796f6e82012-03-09 14:21:59 +010041bin_SCRIPTS = strace-graph strace-log-merge
Roland McGrath6d2b3492002-12-30 00:51:30 +000042
Dmitry V. Levinee245d82012-02-25 15:34:10 +010043OS = linux
Roland McGrath6d2b3492002-12-30 00:51:30 +000044# ARCH is `i386', `m68k', `sparc', etc.
45ARCH = @arch@
Roland McGrath6d2b3492002-12-30 00:51:30 +000046
Dmitry V. Levin916aded2010-09-09 17:36:36 +000047ACLOCAL_AMFLAGS = -I m4
Dmitry V. Levin918e49b2010-09-09 17:41:15 +000048AM_CFLAGS = $(WARN_CFLAGS)
Dmitry V. Levin579836c2015-01-13 06:12:16 +000049AM_CPPFLAGS = -I$(builddir)/$(OS)/$(ARCH) \
50 -I$(srcdir)/$(OS)/$(ARCH) \
51 -I$(builddir)/$(OS) \
Dmitry V. Levincf3ecbd2015-08-26 22:50:58 +000052 -I$(srcdir)/$(OS) \
53 -I$(builddir) \
54 -I$(srcdir)
Roland McGrath6d2b3492002-12-30 00:51:30 +000055
Mike Frysinger761ed9b2014-02-16 01:59:20 -050056include xlat/Makemodule.am
57
Elvira Khabirova09294222015-08-04 01:47:02 +030058strace_CPPFLAGS = $(AM_CPPFLAGS)
Dmitry V. Levin71d3aa02016-02-03 19:19:48 +000059strace_CFLAGS = $(AM_CFLAGS)
Elvira Khabirova09294222015-08-04 01:47:02 +030060strace_LDFLAGS =
Dmitry V. Levin6ca4c922016-02-04 02:49:01 +000061strace_LDADD = libstrace.a
62noinst_LIBRARIES = libstrace.a
63
64libstrace_a_CPPFLAGS = $(strace_CPPFLAGS)
65libstrace_a_CFLAGS = $(strace_CFLAGS)
66libstrace_a_SOURCES = \
Dmitry V. Levin67c2f672016-04-26 00:21:26 +000067 fstatfs.c \
68 fstatfs64.c \
69 statfs.c \
70 statfs64.c \
Dmitry V. Levina7501f62016-04-22 04:17:06 +000071 sync_file_range.c \
72 sync_file_range2.c \
Dmitry V. Levin6ca4c922016-02-04 02:49:01 +000073 upeek.c \
74 # end of libstrace_a_SOURCES
Elvira Khabirova09294222015-08-04 01:47:02 +030075
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +000076strace_SOURCES = \
Dmitry V. Levin304cd812014-12-06 03:53:16 +000077 access.c \
Dmitry V. Levinb94b9832014-12-11 19:25:02 +000078 affinity.c \
Dmitry V. Levin2b640342013-11-11 15:06:18 +000079 aio.c \
Dmitry V. Levin2720a612016-01-09 00:06:06 +000080 alpha.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +000081 bjm.c \
82 block.c \
Dmitry V. Levinddb53dd2015-07-25 23:55:51 +000083 bpf.c \
Jeff Mahoney8cc69622016-05-18 18:09:39 -040084 btrfs.c \
Dmitry V. Levin95edb8b2014-12-03 20:50:08 +000085 cacheflush.c \
Dmitry V. Levin5e7987b2014-12-03 20:30:15 +000086 capability.c \
Dmitry V. Levin2f0808b2015-02-18 23:59:50 +000087 caps0.h \
88 caps1.h \
Dmitry V. Levin9b2f6742014-12-06 03:53:16 +000089 chdir.c \
Dmitry V. Levinad5cf1e2014-12-06 03:53:16 +000090 chmod.c \
Dmitry V. Levin265903a2014-12-11 19:25:02 +000091 clone.c \
Dmitry V. Levinc1f99f52016-02-13 03:45:32 +000092 copy_file_range.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +000093 count.c \
Dmitry V. Levin72dc1b42015-12-31 14:15:59 +000094 defs.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +000095 desc.c \
Dmitry V. Levin2ed2cc72014-09-11 22:40:37 +000096 dirent.c \
Dmitry V. Levina367db82015-11-19 18:13:53 +000097 dirent64.c \
Elvira Khabirova09294222015-08-04 01:47:02 +030098 empty.h \
Dmitry V. Levinaba868c2015-08-01 22:58:17 +000099 epoll.c \
Etienne Gemsa4f750b92015-02-20 17:14:10 +0100100 evdev.c \
Dmitry V. Levin28471d12015-08-01 20:36:53 +0000101 eventfd.c \
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000102 execve.c \
Dmitry V. Levin91759092014-12-11 19:25:02 +0000103 exit.c \
Dmitry V. Levin63f28dd2014-12-06 03:53:16 +0000104 fadvise.c \
Dmitry V. Levin2795a5f2014-12-06 03:53:16 +0000105 fallocate.c \
Dmitry V. Levin99db95d2014-02-05 04:13:18 +0000106 fanotify.c \
Dmitry V. Levin2f7d0202014-12-13 16:20:44 +0000107 fchownat.c \
Dmitry V. Levin25120032015-10-01 12:24:01 +0000108 fcntl.c \
Dmitry V. Levin7a129742015-09-19 21:28:23 +0000109 fetch_seccomp_fprog.c \
Dmitry V. Levin1a713d92015-09-19 23:48:56 +0000110 fetch_struct_flock.c \
Dmitry V. Levin67c2f672016-04-26 00:21:26 +0000111 fetch_struct_statfs.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000112 file.c \
Dmitry V. Levin4b3a1702015-11-22 21:29:32 +0000113 file_handle.c \
Jeff Mahoney8cc69622016-05-18 18:09:39 -0400114 file_ioctl.c \
Dmitry V. Levin4dd9f3f2016-05-26 00:37:26 +0000115 fs_x_ioctl.c \
Dmitry V. Levin5d68f462015-10-01 12:20:11 +0000116 flock.c \
Dmitry V. Levin6250e6c2015-10-09 01:38:07 +0000117 flock.h \
Dmitry V. Levine314f802014-12-11 19:25:02 +0000118 futex.c \
Dmitry V. Levinf32126b2015-12-31 14:19:41 +0000119 gcc_compat.h \
Dmitry V. Levin83576382014-12-11 19:25:02 +0000120 get_robust_list.c \
Dmitry V. Levin665f10c2014-12-11 19:21:54 +0000121 getcpu.c \
Dmitry V. Levina8364302014-12-06 03:53:16 +0000122 getcwd.c \
Dmitry V. Levinfef09072015-02-04 16:38:09 +0000123 getrandom.c \
Dmitry V. Levinb3f00402016-05-26 00:07:17 +0000124 hdio.c \
Dmitry V. Levin03c06ea2014-12-11 19:25:02 +0000125 hostname.c \
Dmitry V. Levin2f332e92014-02-05 15:43:04 +0000126 inotify.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000127 io.c \
128 ioctl.c \
Dmitry V. Levin2aa180e2015-11-22 18:18:43 +0000129 ioperm.c \
Dmitry V. Levindcd00c32015-11-22 18:21:54 +0000130 iopl.c \
Dmitry V. Levinfc4727d2014-02-05 17:27:43 +0000131 ioprio.c \
Elvira Khabirovac01ad062015-08-19 05:06:26 +0300132 ipc_defs.h \
133 ipc_msg.c \
134 ipc_msgctl.c \
135 ipc_sem.c \
136 ipc_shm.c \
137 ipc_shmctl.c \
Dmitry V. Levin7aa9c0d2015-11-22 18:35:27 +0000138 kcmp.c \
Dmitry V. Levinbdb07e32015-11-27 01:51:22 +0000139 kernel_types.h \
Dmitry V. Levin90aa9f42014-02-05 13:48:26 +0000140 kexec.c \
Dmitry V. Levin3acf4032014-02-05 22:41:45 +0000141 keyctl.c \
Dmitry V. Levin99a05442014-04-10 14:10:17 +0000142 ldt.c \
Dmitry V. Levin231b19f2014-12-06 03:53:16 +0000143 link.c \
Dmitry V. Levinc31481f2015-12-04 14:37:02 +0000144 linux/asm_stat.h \
Dmitry V. Levincfde1e32015-12-04 15:00:37 +0000145 linux/x32/asm_stat.h \
Dmitry V. Levin60d75242015-11-22 19:28:17 +0000146 lookup_dcookie.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000147 loop.c \
Dmitry V. Levinb5d25ec2014-12-06 03:53:16 +0000148 lseek.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000149 mem.c \
Dmitry V. Levin2aec1e62015-11-15 02:29:29 +0000150 membarrier.c \
Dmitry V. Levin95b84ea2015-07-28 23:03:41 +0000151 memfd_create.c \
Dmitry V. Levindb23b342014-12-06 03:53:16 +0000152 mknod.c \
Dmitry V. Levin6da7ca32014-12-03 21:12:07 +0000153 mount.c \
Elvira Khabirova09294222015-08-04 01:47:02 +0300154 mpers_type.h \
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +0000155 mq.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000156 mtd.c \
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +0000157 native_defs.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000158 net.c \
Dmitry V. Levina4da0c82016-04-27 05:06:06 +0000159 numa.c \
Dmitry V. Levin964d80a2014-12-06 03:53:16 +0000160 open.c \
Dmitry V. Levinf6eb0d62014-12-03 20:00:42 +0000161 or1k_atomic.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000162 pathtrace.c \
Dmitry V. Levin0d60cf72015-08-01 20:28:21 +0000163 perf.c \
Dmitry V. Levind28b6a02014-12-03 21:06:11 +0000164 personality.c \
Dmitry V. Levin811bda62015-07-30 16:49:42 +0000165 poll.c \
Dmitry V. Levin53c993d2014-12-11 19:25:02 +0000166 prctl.c \
Elvira Khabirovac01ad062015-08-19 05:06:26 +0300167 print_mq_attr.c \
168 print_msgbuf.c \
Dmitry V. Levind6b05582015-09-16 18:05:43 +0000169 print_sigevent.c \
Dmitry V. Levin67c2f672016-04-26 00:21:26 +0000170 print_statfs.c \
Dmitry V. Levinb5a23ed2015-08-04 01:52:40 +0300171 print_time.c \
Dmitry V. Levindd6bf4b2015-09-16 21:47:48 +0000172 print_timex.c \
Dmitry V. Levin9514ac72014-12-06 03:53:16 +0000173 printmode.c \
Dmitry V. Levin1e08a162015-07-17 23:50:02 +0000174 printrusage.c \
Dmitry V. Levin537c9642015-03-27 23:28:15 +0000175 printsiginfo.c \
Dmitry V. Levin0e946ab2015-07-17 23:56:54 +0000176 printsiginfo.h \
Dmitry V. Levinab21a942014-12-28 18:15:25 +0000177 printstat.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000178 process.c \
Dmitry V. Levindb16c522014-12-11 19:21:54 +0000179 process_vm.c \
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100180 ptp.c \
Dmitry V. Levinfadf3792015-02-13 00:26:38 +0000181 ptrace.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000182 quota.c \
Dmitry V. Levin9e9ceab2014-12-06 03:53:16 +0000183 readahead.c \
Dmitry V. Levin46245b32014-12-06 03:53:16 +0000184 readlink.c \
Dmitry V. Levin9aaf88c2014-02-05 14:51:19 +0000185 reboot.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000186 regs.h \
Dmitry V. Levin6d20a0b2014-12-06 03:53:16 +0000187 renameat.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000188 resource.c \
Dmitry V. Levin746db062015-07-04 08:56:21 +0000189 rtc.c \
Dmitry V. Levinfff2f312014-12-11 19:25:02 +0000190 sched.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000191 scsi.c \
Dmitry V. Levin2af69032015-02-04 23:50:50 +0000192 seccomp.c \
Dmitry V. Levin7a129742015-09-19 21:28:23 +0000193 seccomp_fprog.h \
Dmitry V. Levinac2e7282015-08-18 22:09:30 +0000194 sendfile.c \
Dmitry V. Levin174bb2b2015-03-26 13:03:25 +0000195 sigaltstack.c \
Dmitry V. Levine714b872016-01-12 01:13:48 +0000196 sigevent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000197 signal.c \
Dmitry V. Levin2307d5c2015-08-03 09:12:26 +0000198 signalfd.c \
Dmitry V. Levin74219ea2015-03-06 01:47:18 +0000199 sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000200 sock.c \
Dmitry V. Levin2f6510c2014-08-21 03:17:48 +0000201 socketutils.c \
Dmitry V. Levine36c72c2014-12-03 20:56:36 +0000202 sram_alloc.c \
Dmitry V. Levin9a0dd742014-09-22 00:17:42 +0000203 statfs.c \
Dmitry V. Levin67c2f672016-04-26 00:21:26 +0000204 statfs.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000205 strace.c \
Dmitry V. Levin85a364a2014-12-06 03:53:16 +0000206 swapon.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000207 syscall.c \
Dmitry V. Levin172241b2014-12-03 20:20:52 +0000208 sysctl.c \
Dmitry V. Levin57d45a22014-09-29 23:13:05 +0000209 sysinfo.c \
Dmitry V. Levinb21e2fb2014-12-03 21:01:35 +0000210 syslog.c \
Dmitry V. Levin600e33c2014-12-03 20:08:44 +0000211 sysmips.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000212 term.c \
213 time.c \
Elvira Khabirova254ff1e2015-08-03 07:09:34 +0300214 times.c \
Dmitry V. Levin69341822014-12-06 03:53:16 +0000215 truncate.c \
Dmitry V. Levin5104db42016-05-28 10:29:30 +0000216 ubi.c \
Dmitry V. Levine93ef1e2014-12-11 19:25:02 +0000217 uid.c \
Dmitry V. Levin80f7db12014-12-13 21:49:01 +0000218 uid16.c \
Dmitry V. Levind590f3c2014-12-06 03:53:16 +0000219 umask.c \
Dmitry V. Levin542ca1e2014-12-03 21:09:26 +0000220 umount.c \
Dmitry V. Levin58dd2cf2014-12-11 19:25:02 +0000221 uname.c \
Dmitry V. Levina6ebdb12015-11-15 02:22:44 +0000222 userfaultfd.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000223 util.c \
Dmitry V. Levinfb470f32014-12-06 03:53:16 +0000224 utime.c \
Dmitry V. Levin481e0672014-12-06 03:53:16 +0000225 utimes.c \
Philippe De Muyter0cc96142014-11-03 21:27:40 +0100226 v4l2.c \
Dmitry V. Levin769ffe92014-12-06 03:53:16 +0000227 vsprintf.c \
Dmitry V. Levin7ccc1442014-12-11 19:25:02 +0000228 wait.c \
Dmitry V. Levin3e9d71f2015-05-25 20:41:02 +0000229 xattr.c \
Dmitry V. Levin0e097042016-04-26 00:08:16 +0000230 xlat.h \
Elvira Khabirova09294222015-08-04 01:47:02 +0300231 xmalloc.c \
232 # end of strace_SOURCES
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000233
Luca Clementi327064b2013-07-23 00:11:35 -0700234if USE_LIBUNWIND
235strace_SOURCES += unwind.c
Elvira Khabirova09294222015-08-04 01:47:02 +0300236strace_CPPFLAGS += $(libunwind_CPPFLAGS)
237strace_LDFLAGS += $(libunwind_LDFLAGS)
238strace_LDADD += $(libunwind_LIBS)
Luca Clementi327064b2013-07-23 00:11:35 -0700239endif
240
Gabriel Laskarcba67102016-02-01 18:15:39 +0100241@CODE_COVERAGE_RULES@
Dmitry V. Levinc4153872016-05-10 02:08:56 +0000242CODE_COVERAGE_BRANCH_COVERAGE = 1
243CODE_COVERAGE_GENHTML_OPTIONS = $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) \
244 --prefix $(shell realpath -Ls $(abs_top_srcdir)/..)
Gabriel Laskarcba67102016-02-01 18:15:39 +0100245CODE_COVERAGE_IGNORE_PATTERN = '/usr/include/*'
246strace_CPPFLAGS += $(CODE_COVERAGE_CPPFLAGS)
247strace_CFLAGS += $(CODE_COVERAGE_CFLAGS)
248strace_LDADD += $(CODE_COVERAGE_LDFLAGS)
249
Denys Vlasenko76f61be2013-03-06 18:59:09 +0100250# Enable this to get link map generated
Dmitry V. Levin71d3aa02016-02-03 19:19:48 +0000251#strace_LDFLAGS += -Wl,-Map=strace.mapfile
Roland McGrath6d2b3492002-12-30 00:51:30 +0000252
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000253EXTRA_DIST = \
254 $(man_MANS) \
Dmitry V. Levindce75932013-04-30 23:52:12 +0000255 .version \
Mike Frysinger6c191362013-05-15 16:33:09 -0400256 COPYING \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000257 CREDITS \
258 ChangeLog \
259 ChangeLog-CVS \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000260 README-linux-ptrace \
261 debian/changelog \
262 debian/compat \
263 debian/control \
264 debian/copyright \
265 debian/rules \
266 debian/source/format \
267 debian/strace-udeb.install \
268 debian/strace.docs \
269 debian/strace.examples \
270 debian/strace.install \
271 debian/strace.manpages \
272 debian/strace64.install \
273 debian/strace64.manpages \
274 debian/watch \
275 errnoent.sh \
Elvira Khabirova28e32df2015-07-10 22:24:54 +0300276 generate_sen.sh \
Dmitry V. Levin00119f62014-11-04 01:40:42 +0000277 ioctlsort.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000278 linux/32/ioctls_inc.h \
Dmitry V. Levin8c20d892015-05-21 16:19:40 +0000279 linux/32/ioctls_inc_align32.h \
280 linux/32/ioctls_inc_align64.h \
Dmitry V. Levindee03a32015-01-11 04:04:54 +0300281 linux/32/syscallent.h \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000282 linux/64/ioctls_inc.h \
Dmitry V. Levin200c02c2015-01-10 20:51:37 +0300283 linux/64/syscallent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000284 linux/aarch64/arch_regs.c \
Andreas Schwab64fc9ce2015-03-12 11:54:08 +0100285 linux/aarch64/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000286 linux/aarch64/arch_sigreturn.c \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000287 linux/aarch64/errnoent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000288 linux/aarch64/get_error.c \
289 linux/aarch64/get_scno.c \
290 linux/aarch64/get_syscall_args.c\
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000291 linux/aarch64/ioctls_arch0.h \
292 linux/aarch64/ioctls_arch1.h \
293 linux/aarch64/ioctls_inc0.h \
294 linux/aarch64/ioctls_inc1.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000295 linux/aarch64/signalent1.h \
296 linux/aarch64/syscallent.h \
297 linux/aarch64/syscallent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000298 linux/alpha/arch_getrval2.c \
299 linux/alpha/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000300 linux/alpha/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000301 linux/alpha/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000302 linux/alpha/errnoent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000303 linux/alpha/get_error.c \
304 linux/alpha/get_scno.c \
305 linux/alpha/get_syscall_args.c \
306 linux/alpha/get_syscall_result.c\
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000307 linux/alpha/ioctls_arch0.h \
308 linux/alpha/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000309 linux/alpha/signalent.h \
310 linux/alpha/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000311 linux/alpha/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000312 linux/arc/arch_regs.c \
313 linux/arc/get_error.c \
314 linux/arc/get_scno.c \
315 linux/arc/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000316 linux/arc/ioctls_arch0.h \
317 linux/arc/ioctls_inc0.h \
Vineet Gupta7daacbb2013-08-16 12:47:06 +0530318 linux/arc/syscallent.h \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000319 linux/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000320 linux/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000321 linux/arm/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000322 linux/arm/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000323 linux/arm/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000324 linux/arm/get_error.c \
325 linux/arm/get_scno.c \
326 linux/arm/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000327 linux/arm/ioctls_arch0.h \
328 linux/arm/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000329 linux/arm/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000330 linux/arm/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000331 linux/avr32/arch_regs.c \
332 linux/avr32/get_error.c \
333 linux/avr32/get_scno.c \
334 linux/avr32/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000335 linux/avr32/ioctls_arch0.h \
336 linux/avr32/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000337 linux/avr32/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000338 linux/avr32/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000339 linux/bfin/arch_regs.c \
340 linux/bfin/get_error.c \
341 linux/bfin/get_scno.c \
342 linux/bfin/get_syscall_args.c \
343 linux/bfin/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000344 linux/bfin/ioctls_arch0.h \
345 linux/bfin/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000346 linux/bfin/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000347 linux/bfin/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000348 linux/crisv10/arch_regs.c \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000349 linux/crisv10/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000350 linux/crisv10/get_error.c \
351 linux/crisv10/get_scno.c \
352 linux/crisv10/get_syscall_args.c \
353 linux/crisv10/get_syscall_result.c \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000354 linux/crisv10/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000355 linux/crisv32/arch_regs.c \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000356 linux/crisv32/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000357 linux/crisv32/get_error.c \
358 linux/crisv32/get_scno.c \
359 linux/crisv32/get_syscall_args.c \
360 linux/crisv32/get_syscall_result.c \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000361 linux/crisv32/userent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000362 linux/dummy.h \
363 linux/errnoent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000364 linux/hppa/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000365 linux/hppa/arch_regs.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000366 linux/hppa/errnoent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000367 linux/hppa/get_error.c \
368 linux/hppa/get_scno.c \
369 linux/hppa/get_syscall_args.c \
370 linux/hppa/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000371 linux/hppa/ioctls_arch0.h \
372 linux/hppa/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000373 linux/hppa/signalent.h \
374 linux/hppa/syscallent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000375 linux/i386/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000376 linux/i386/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000377 linux/i386/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000378 linux/i386/get_error.c \
379 linux/i386/get_scno.c \
380 linux/i386/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000381 linux/i386/ioctls_arch0.h \
382 linux/i386/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000383 linux/i386/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000384 linux/i386/userent.h \
385 linux/i386/userent0.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000386 linux/ia64/arch_getrval2.c \
387 linux/ia64/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000388 linux/ia64/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000389 linux/ia64/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000390 linux/ia64/get_error.c \
391 linux/ia64/get_scno.c \
392 linux/ia64/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000393 linux/ia64/ioctls_arch0.h \
394 linux/ia64/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000395 linux/ia64/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000396 linux/ia64/userent.h \
Dmitry V. Levin2f6510c2014-08-21 03:17:48 +0000397 linux/inet_diag.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000398 linux/m68k/arch_regs.c \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000399 linux/m68k/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000400 linux/m68k/get_error.c \
401 linux/m68k/get_scno.c \
402 linux/m68k/get_syscall_args.c \
403 linux/m68k/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000404 linux/m68k/ioctls_arch0.h \
405 linux/m68k/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000406 linux/m68k/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000407 linux/m68k/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000408 linux/metag/arch_regs.c \
409 linux/metag/get_error.c \
410 linux/metag/get_scno.c \
411 linux/metag/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000412 linux/metag/ioctls_arch0.h \
413 linux/metag/ioctls_inc0.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000414 linux/metag/syscallent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000415 linux/microblaze/arch_regs.c \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000416 linux/microblaze/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000417 linux/microblaze/get_error.c \
418 linux/microblaze/get_scno.c \
419 linux/microblaze/get_syscall_args.c \
420 linux/microblaze/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000421 linux/microblaze/ioctls_arch0.h \
422 linux/microblaze/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000423 linux/microblaze/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000424 linux/microblaze/userent.h \
Dmitry V. Levin8e8d7d22015-03-23 23:14:08 +0000425 linux/mips/arch_getrval2.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000426 linux/mips/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000427 linux/mips/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000428 linux/mips/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000429 linux/mips/errnoent.h \
Dmitry V. Levind59287d2015-01-13 04:57:27 +0000430 linux/mips/genstub.sh \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000431 linux/mips/get_error.c \
432 linux/mips/get_scno.c \
433 linux/mips/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000434 linux/mips/ioctls_arch0.h \
435 linux/mips/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000436 linux/mips/signalent.h \
Dmitry V. Levin34c445b2013-05-07 02:46:46 +0000437 linux/mips/syscallent-compat.h \
438 linux/mips/syscallent-n32.h \
439 linux/mips/syscallent-n64.h \
440 linux/mips/syscallent-o32.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000441 linux/mips/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000442 linux/mips/userent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000443 linux/mtd-abi.h \
Fabien Siron814c0d52016-05-17 10:08:47 +0000444 linux/netlink_diag.h \
Ezequiel Garciabd8dd772015-04-18 17:33:27 -0300445 linux/nios2/arch_regs.c \
446 linux/nios2/get_error.c \
447 linux/nios2/get_scno.c \
448 linux/nios2/get_syscall_args.c \
449 linux/nios2/ioctls_arch0.h \
450 linux/nios2/ioctls_inc0.h \
Ezequiel Garciabd8dd772015-04-18 17:33:27 -0300451 linux/nios2/syscallent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000452 linux/or1k/arch_regs.c \
453 linux/or1k/get_error.c \
454 linux/or1k/get_scno.c \
455 linux/or1k/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000456 linux/or1k/ioctls_arch0.h \
457 linux/or1k/ioctls_inc0.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000458 linux/or1k/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000459 linux/or1k/userent.h \
Dmitry V. Levin2a32eaa2014-02-05 02:09:49 +0000460 linux/personality.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000461 linux/powerpc/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000462 linux/powerpc/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000463 linux/powerpc/arch_sigreturn.c \
Dmitry V. Levinb2f8c772015-02-23 03:10:25 +0000464 linux/powerpc/errnoent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000465 linux/powerpc/get_error.c \
466 linux/powerpc/get_scno.c \
467 linux/powerpc/get_syscall_args.c \
468 linux/powerpc/getregs_old.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000469 linux/powerpc/ioctls_arch0.h \
470 linux/powerpc/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000471 linux/powerpc/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000472 linux/powerpc/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000473 linux/powerpc64/arch_regs.c \
Dmitry V. Levin7226c3a2015-02-23 21:28:33 +0000474 linux/powerpc64/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000475 linux/powerpc64/arch_sigreturn.c \
Dmitry V. Levinb2f8c772015-02-23 03:10:25 +0000476 linux/powerpc64/errnoent.h \
Dmitry V. Levinaf3ab5b2015-01-21 17:04:31 +0000477 linux/powerpc64/errnoent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000478 linux/powerpc64/get_error.c \
479 linux/powerpc64/get_scno.c \
480 linux/powerpc64/get_syscall_args.c \
481 linux/powerpc64/getregs_old.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000482 linux/powerpc64/ioctls_arch0.h \
483 linux/powerpc64/ioctls_arch1.h \
484 linux/powerpc64/ioctls_inc0.h \
485 linux/powerpc64/ioctls_inc1.h \
Dmitry V. Levinaf3ab5b2015-01-21 17:04:31 +0000486 linux/powerpc64/signalent1.h \
487 linux/powerpc64/syscallent.h \
488 linux/powerpc64/syscallent1.h \
489 linux/powerpc64/userent.h \
Stefan Sørensenb88a6f82014-01-31 12:01:01 +0100490 linux/ptp_clock.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000491 linux/s390/arch_regs.c \
Dmitry V. Levin20eca8a2015-03-05 22:10:15 +0000492 linux/s390/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000493 linux/s390/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000494 linux/s390/get_error.c \
495 linux/s390/get_scno.c \
496 linux/s390/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000497 linux/s390/ioctls_arch0.h \
498 linux/s390/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000499 linux/s390/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000500 linux/s390/userent.h \
501 linux/s390/userent0.h \
502 linux/s390/userent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000503 linux/s390x/arch_regs.c \
Dmitry V. Levin20eca8a2015-03-05 22:10:15 +0000504 linux/s390x/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000505 linux/s390x/arch_sigreturn.c \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000506 linux/s390x/get_error.c \
507 linux/s390x/get_scno.c \
508 linux/s390x/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000509 linux/s390x/ioctls_arch0.h \
510 linux/s390x/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000511 linux/s390x/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000512 linux/s390x/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000513 linux/sh/arch_getrval2.c \
514 linux/sh/arch_regs.c \
515 linux/sh/get_error.c \
516 linux/sh/get_scno.c \
517 linux/sh/get_syscall_args.c \
518 linux/sh/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000519 linux/sh/ioctls_arch0.h \
520 linux/sh/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000521 linux/sh/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000522 linux/sh/userent.h \
523 linux/sh/userent0.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000524 linux/sh64/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000525 linux/sh64/arch_regs.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000526 linux/sh64/get_error.c \
527 linux/sh64/get_scno.c \
528 linux/sh64/get_syscall_args.c \
529 linux/sh64/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000530 linux/sh64/ioctls_arch0.h \
531 linux/sh64/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000532 linux/sh64/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000533 linux/sh64/userent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000534 linux/signalent.h \
Dmitry V. Levin2f6510c2014-08-21 03:17:48 +0000535 linux/sock_diag.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000536 linux/sparc/arch_getrval2.c \
537 linux/sparc/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000538 linux/sparc/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000539 linux/sparc/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000540 linux/sparc/errnoent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000541 linux/sparc/gen.pl \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000542 linux/sparc/get_error.c \
543 linux/sparc/get_scno.c \
544 linux/sparc/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000545 linux/sparc/ioctls_arch0.h \
546 linux/sparc/ioctls_inc0.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000547 linux/sparc/signalent.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000548 linux/sparc/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000549 linux/sparc/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000550 linux/sparc64/arch_getrval2.c \
551 linux/sparc64/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000552 linux/sparc64/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000553 linux/sparc64/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000554 linux/sparc64/errnoent.h \
Denys Vlasenko588a90f2015-03-25 15:11:36 +0100555 linux/sparc64/errnoent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000556 linux/sparc64/get_error.c \
557 linux/sparc64/get_scno.c \
558 linux/sparc64/get_syscall_args.c\
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000559 linux/sparc64/ioctls_arch0.h \
Denys Vlasenko588a90f2015-03-25 15:11:36 +0100560 linux/sparc64/ioctls_arch1.h \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000561 linux/sparc64/ioctls_inc0.h \
Denys Vlasenko588a90f2015-03-25 15:11:36 +0100562 linux/sparc64/ioctls_inc1.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000563 linux/sparc64/signalent.h \
Denys Vlasenko588a90f2015-03-25 15:11:36 +0100564 linux/sparc64/signalent1.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000565 linux/sparc64/syscallent.h \
Denys Vlasenko588a90f2015-03-25 15:11:36 +0100566 linux/sparc64/syscallent1.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000567 linux/sparc64/userent.h \
Dmitry V. Levinde462cf2013-05-07 18:38:01 +0400568 linux/subcall.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000569 linux/syscall.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000570 linux/tile/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000571 linux/tile/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000572 linux/tile/arch_sigreturn.c \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000573 linux/tile/errnoent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000574 linux/tile/get_error.c \
575 linux/tile/get_scno.c \
576 linux/tile/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000577 linux/tile/ioctls_arch0.h \
578 linux/tile/ioctls_arch1.h \
579 linux/tile/ioctls_inc0.h \
580 linux/tile/ioctls_inc1.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000581 linux/tile/signalent1.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000582 linux/tile/syscallent.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000583 linux/tile/syscallent1.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000584 linux/tile/userent.h \
Dmitry V. Levin8e0b8be2013-06-02 18:09:44 +0000585 linux/ubi-user.h \
Dmitry V. Levince21ef02015-01-09 02:02:39 +0000586 linux/unix_diag.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000587 linux/userent.h \
588 linux/userent0.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000589 linux/x32/arch_regs.c \
Dmitry V. Levin19fcb272015-02-26 20:40:43 +0000590 linux/x32/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000591 linux/x32/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000592 linux/x32/errnoent1.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000593 linux/x32/get_error.c \
594 linux/x32/get_scno.c \
595 linux/x32/get_syscall_args.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000596 linux/x32/ioctls_arch0.h \
597 linux/x32/ioctls_arch1.h \
598 linux/x32/ioctls_inc0.h \
599 linux/x32/ioctls_inc1.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000600 linux/x32/signalent1.h \
601 linux/x32/syscallent.h \
602 linux/x32/syscallent1.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000603 linux/x32/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000604 linux/x86_64/arch_regs.c \
Dmitry V. Levin5503dd22015-02-13 02:12:14 +0000605 linux/x86_64/arch_regs.h \
Dmitry V. Levina3c48352015-03-23 21:16:07 +0000606 linux/x86_64/arch_sigreturn.c \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000607 linux/x86_64/errnoent1.h \
608 linux/x86_64/errnoent2.h \
609 linux/x86_64/gentab.pl \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000610 linux/x86_64/get_error.c \
611 linux/x86_64/get_scno.c \
612 linux/x86_64/get_syscall_args.c \
613 linux/x86_64/getregs_old.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000614 linux/x86_64/ioctls_arch0.h \
615 linux/x86_64/ioctls_arch1.h \
Dmitry V. Levin43413732015-03-02 02:38:50 +0000616 linux/x86_64/ioctls_arch2.h \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000617 linux/x86_64/ioctls_inc0.h \
618 linux/x86_64/ioctls_inc1.h \
Dmitry V. Levin43413732015-03-02 02:38:50 +0000619 linux/x86_64/ioctls_inc2.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000620 linux/x86_64/signalent1.h \
621 linux/x86_64/signalent2.h \
622 linux/x86_64/syscallent.h \
623 linux/x86_64/syscallent1.h \
624 linux/x86_64/syscallent2.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000625 linux/x86_64/userent.h \
Dmitry V. Levind70d1c42015-03-22 22:13:55 +0000626 linux/xtensa/arch_regs.c \
627 linux/xtensa/get_error.c \
628 linux/xtensa/get_scno.c \
629 linux/xtensa/get_syscall_args.c \
630 linux/xtensa/get_syscall_result.c \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000631 linux/xtensa/ioctls_arch0.h \
632 linux/xtensa/ioctls_inc0.h \
Dmitry V. Levin0db34e72013-06-02 18:12:44 +0000633 linux/xtensa/syscallent.h \
Dmitry V. Levinfced7b02014-12-11 19:25:02 +0000634 linux/xtensa/userent.h \
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000635 maint/ioctls_gen.sh \
636 maint/ioctls_hex.sh \
637 maint/ioctls_sym.sh \
638 maint/print_ioctlent.c \
Elvira Khabirova09294222015-08-04 01:47:02 +0300639 mpers.awk \
640 mpers.sh \
641 mpers_test.sh \
Dmitry V. Levin5cb45b22015-11-20 01:43:12 +0000642 mpers_xlat.h \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000643 signalent.sh \
644 strace-graph \
645 strace-log-merge \
646 strace.spec \
647 syscallent.sh \
Mike Frysinger761ed9b2014-02-16 01:59:20 -0500648 $(XLAT_INPUT_FILES) \
649 $(XLAT_HEADER_FILES) \
650 xlat/gen.sh \
Dmitry V. Levin7ae73a92013-04-30 23:34:51 +0000651 xlate.el
Roland McGrathbc44e402004-07-12 05:45:08 +0000652
Roland McGrath2b832df2009-10-06 17:46:56 -0700653.PHONY: srpm
Dmitry V. Levin525a39a2011-02-27 14:05:58 +0000654srpm: dist-xz
655 rpmbuild --define '%_srcrpmdir .' -ts $(distdir).tar.xz
Roland McGrath2b832df2009-10-06 17:46:56 -0700656
Dmitry V. Levindce75932013-04-30 23:52:12 +0000657$(srcdir)/.version:
658 $(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
659
Dmitry V. Levina7501f62016-04-22 04:17:06 +0000660strace_SOURCES_c = \
661 $(filter %.c,$(strace_SOURCES)) $(filter %.c,$(libstrace_a_SOURCES))
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000662
663sys_func.h: $(patsubst %,$(srcdir)/%,$(strace_SOURCES_c))
664 for f in $^; do \
665 sed -n 's/^SYS_FUNC(.*/extern &;/p' $$f; \
666 done | sort -u > $@
667
Elvira Khabirova28e32df2015-07-10 22:24:54 +0300668syscallent_names = subcall.h syscallent.h syscallent1.h \
669 syscallent-n32.h syscallent-n64.h syscallent-o32.h
670syscallent_patterns = $(patsubst %,\%/%,$(syscallent_names))
671syscallent_files = $(filter $(syscallent_patterns),$(EXTRA_DIST))
672
673sen.h: $(patsubst %,$(srcdir)/%,$(syscallent_files))
674 for f in $^; do cat -- $$f; done | \
675 $(srcdir)/generate_sen.sh > $@
676
Dmitry V. Levindce75932013-04-30 23:52:12 +0000677dist-hook:
678 $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
679
680today = $(shell date +%Y-%m-%d)
681version_regexp = $(subst .,\.,$(VERSION))
682news_check_regexp = 'Noteworthy changes in release $(version_regexp) ($(today))'
683
684news-check: NEWS
685 $(AM_V_GEN)if head -1 $< | \
686 grep -x $(news_check_regexp) >/dev/null; then \
687 :; \
688 else \
689 echo >&2 '$<: check failed'; \
690 exit 1; \
691 fi
Mike Frysinger9004e122011-02-20 23:24:22 -0500692
Mike Frysinger58c7fe92015-02-26 22:22:36 -0500693ioctlsort_CC = $(CC_FOR_BUILD)
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000694ioctlsort_DEFS = $(DEFS)
695ioctlsort_INCLUDES = $(DEFAULT_INCLUDES) $(INCLUDES)
Mike Frysinger58c7fe92015-02-26 22:22:36 -0500696ioctlsort_CPPFLAGS = $(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD)
697ioctlsort_CFLAGS = $(AM_CFLAGS) $(CFLAGS_FOR_BUILD)
698ioctlsort_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_FOR_BUILD)
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000699
700ioctls_inc_h = $(wildcard $(srcdir)/$(OS)/$(ARCH)/ioctls_inc*.h)
701ioctlent_h = $(patsubst $(srcdir)/$(OS)/$(ARCH)/ioctls_inc%,ioctlent%,$(ioctls_inc_h))
Dmitry V. Levin18225462016-05-02 22:06:56 +0000702ioctl_redefs_h = $(filter-out ioctl_redefs0.h,$(subst ioctlent,ioctl_redefs,$(ioctlent_h)))
703
704ioctl_redefs%.h: ioctlent%.h ioctlent0.h
705 sort $< > $<-t
706 sort ioctlent0.h | comm -23 $<-t - | \
707 sed -n 's/^{ "\([^"]\+\)", \(0x[[:xdigit:]]\+\) },$$/#ifdef \1\n# undef \1\n# define \1 \2\n#endif/p' \
708 > $@-t
709 rm -f $<-t
710 mv $@-t $@
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000711
712ioctlent%.h: ioctlsort%
713 ./$< > $@
714
Mike Frysinger58c7fe92015-02-26 22:22:36 -0500715ioctlsort%$(BUILD_EXEEXT): ioctlsort%.o
716 $(ioctlsort_CC) $(ioctlsort_CFLAGS) $(ioctlsort_LDFLAGS) $< -o $@
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000717
718ioctlsort%.o: ioctls_all%.h $(srcdir)/ioctlsort.c
719 $(ioctlsort_CC) $(ioctlsort_DEFS) $(ioctlsort_INCLUDES) $(ioctlsort_CPPFLAGS) $(ioctlsort_CFLAGS) -DIOCTLSORT_INC=\"$<\" -c -o $@ $(srcdir)/ioctlsort.c
720
721ioctls_all%.h: $(srcdir)/$(OS)/$(ARCH)/ioctls_inc%.h $(srcdir)/$(OS)/$(ARCH)/ioctls_arch%.h
722 cat $^ > $@
Dmitry V. Levin00119f62014-11-04 01:40:42 +0000723
Dmitry V. Levin18225462016-05-02 22:06:56 +0000724BUILT_SOURCES = $(ioctl_redefs_h) $(ioctlent_h) \
725 native_printer_decls.h native_printer_defs.h printers.h sen.h sys_func.h .version
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000726CLEANFILES = $(ioctl_redefs_h) $(ioctlent_h) $(mpers_preproc_files) \
Dmitry V. Levin18225462016-05-02 22:06:56 +0000727 native_printer_decls.h native_printer_defs.h printers.h sen.h sys_func.h
Dmitry V. Levine2a33702015-08-27 19:51:05 +0000728DISTCLEANFILES = gnu/stubs-32.h gnu/stubs-x32.h
Elvira Khabirova09294222015-08-04 01:47:02 +0300729
730# defines mpers_source_files
731include mpers.am
732srcdir_mpers_source_files = $(patsubst %,$(srcdir)/%,$(mpers_source_files))
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000733mpers_preproc_files = $(mpers_source_files:.c=.c.mpers.i)
Elvira Khabirova09294222015-08-04 01:47:02 +0300734
735mpers_NAME =
736mpers_PREFIX = $(mpers_NAME)_
737mpers_DEFS = $(DEFS)
738mpers_INCLUDES = $(DEFAULT_INCLUDES) $(INCLUDES)
739mpers_CPPFLAGS = $(strace_CPPFLAGS) $(CPPFLAGS)
740mpers_sh_opts = $(mpers_DEFS) $(mpers_INCLUDES) $(mpers_CPPFLAGS)
Dmitry V. Levinfafa7dc2016-02-03 19:18:28 +0000741libmpers_CPPFLAGS = $(strace_CPPFLAGS) -DIN_MPERS
Dmitry V. Levin71d3aa02016-02-03 19:19:48 +0000742libmpers_CFLAGS = $(strace_CFLAGS)
Elvira Khabirova09294222015-08-04 01:47:02 +0300743
744# mpers targets
745
Gabriel Laskarad25c742015-10-01 14:49:25 +0200746mpers-m%.stamp: $(srcdir_mpers_source_files) | printers.h
Elvira Khabirova09294222015-08-04 01:47:02 +0300747 for f in $^; do \
748 CC="$(CC)" CFLAGS="$(mpers_sh_opts)" \
Dmitry V. Levin35bd0b82015-11-16 01:12:18 +0000749 CPP="$(CPP)" CPPFLAGS="$(mpers_sh_opts) -DIN_MPERS -DMPERS_IS_$(mpers_NAME)" \
Elvira Khabirova09294222015-08-04 01:47:02 +0300750 $(srcdir)/mpers.sh -$(mpers_NAME) $$f || exit; \
751 done
752 > $@
753
Dmitry V. Levin370eb162015-11-07 23:22:24 +0000754m%_type_defs.h: $(srcdir_mpers_source_files)
Elvira Khabirova09294222015-08-04 01:47:02 +0300755 for f in $^; do \
756 sed -n 's/^#include DEF_MPERS_TYPE(\([^)]\+\))/#ifdef MPERS_$(mpers_PREFIX)\1\n# define \1 MPERS_$(mpers_PREFIX)\1\n#endif/p' $$f || exit; \
757 done > $@-t
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +0000758 echo '#undef MPERS_PRINTER_NAME' >> $@-t
759 echo '#define MPERS_PRINTER_NAME(printer_name) printer_name' >> $@-t
760 echo '#include "$(mpers_PREFIX)printer_decls.h"' >> $@-t
Dmitry V. Levin18225462016-05-02 22:06:56 +0000761 echo '#include MPERS_$(mpers_PREFIX)IOCTL_MACROS' >> $@-t
Elvira Khabirova09294222015-08-04 01:47:02 +0300762 mv $@-t $@
763
764m%_funcs.h: $(srcdir_mpers_source_files)
765 for f in $^; do \
766 sed -n 's/^SYS_FUNC(\([^)]\+\))/#undef sys_\1\n#define sys_\1 $(mpers_PREFIX)sys_\1/p' $$f || exit; \
767 done > $@-t && \
768 echo '#include "sys_func.h"' >> $@-t
769 mv $@-t $@
770
771# printers
772
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000773%.c.mpers.i: $(srcdir)/%.c
774 $(CPP) -P $(mpers_sh_opts) -DIN_MPERS_BOOTSTRAP $< -o $@
775
776mpers_printer_decl_pattern = ^MPERS_PRINTER_DECL(\([^,)]\+\),[[:space:]]*\([^,)]\+\),[[:space:]]*\([^)]\+\))$$
777
778printers.h: $(mpers_preproc_files)
Elvira Khabirova09294222015-08-04 01:47:02 +0300779 echo '/* Generated by Makefile from $^; do not edit. */' > $@-t
780 echo 'typedef struct {' >> $@-t
781 for f in $^; do \
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000782 sed -n 's/$(mpers_printer_decl_pattern)/ \1 (*\2)(\3);\n#define \2 MPERS_PRINTER_NAME(\2)\n/p' $$f \
783 || exit; \
Elvira Khabirova09294222015-08-04 01:47:02 +0300784 done >> $@-t
785 echo '} struct_printers;' >> $@-t
Dmitry V. Levine2fb0bb2015-09-15 21:51:15 +0000786 echo 'extern const struct_printers *printers;' >> $@-t
787 echo '#define MPERS_PRINTER_NAME(printer_name) printers->printer_name' >> $@-t
Elvira Khabirova09294222015-08-04 01:47:02 +0300788 mv $@-t $@
789
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000790%_printer_decls.h: $(mpers_preproc_files)
Elvira Khabirova09294222015-08-04 01:47:02 +0300791 echo '/* Generated by Makefile from $^; do not edit. */' > $@-t
792 for f in $^; do \
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000793 sed -n 's/$(mpers_printer_decl_pattern)/extern \1 $(mpers_PREFIX)\2(\3);/p' $$f \
794 || exit; \
Elvira Khabirova09294222015-08-04 01:47:02 +0300795 done >> $@-t
796 mv $@-t $@
797
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000798%_printer_defs.h: $(mpers_preproc_files)
Elvira Khabirova09294222015-08-04 01:47:02 +0300799 echo '/* Generated by Makefile from $^; do not edit. */' > $@-t
800 for f in $^; do \
Dmitry V. Levina8fce092016-05-21 22:53:06 +0000801 sed -n 's/$(mpers_printer_decl_pattern)/\.\2 = $(mpers_PREFIX)\2,/p' $$f \
802 || exit; \
Elvira Khabirova09294222015-08-04 01:47:02 +0300803 done >> $@-t
804 mv $@-t $@
805
806native_printer_decls.h native_printer_defs.h: mpers_PREFIX =
807
808if HAVE_M32_MPERS
809
810strace_LDADD += libmpers-m32.a
811noinst_LIBRARIES += libmpers-m32.a
812libmpers_m32_a_SOURCES = $(mpers_source_files)
813libmpers_m32_a_CPPFLAGS = $(libmpers_CPPFLAGS) -DMPERS_IS_m32 -I$(builddir)/mpers-m32
Dmitry V. Levin71d3aa02016-02-03 19:19:48 +0000814libmpers_m32_a_CFLAGS = $(libmpers_CFLAGS)
Dmitry V. Levin370eb162015-11-07 23:22:24 +0000815mpers_m32_targets = mpers-m32.stamp m32_type_defs.h m32_funcs.h m32_printer_decls.h m32_printer_defs.h
Elvira Khabirova09294222015-08-04 01:47:02 +0300816
817BUILT_SOURCES += $(mpers_m32_targets)
818CLEANFILES += $(mpers_m32_targets)
819
820$(mpers_m32_targets): mpers_NAME = m32
821
822endif # HAVE_M32_MPERS
823
824if HAVE_MX32_MPERS
825
826strace_LDADD += libmpers-mx32.a
827noinst_LIBRARIES += libmpers-mx32.a
828libmpers_mx32_a_SOURCES = $(mpers_source_files)
829libmpers_mx32_a_CPPFLAGS = $(libmpers_CPPFLAGS) -DMPERS_IS_mx32 -I$(builddir)/mpers-mx32
Dmitry V. Levin71d3aa02016-02-03 19:19:48 +0000830libmpers_mx32_a_CFLAGS = $(libmpers_CFLAGS)
Dmitry V. Levin370eb162015-11-07 23:22:24 +0000831mpers_mx32_targets = mpers-mx32.stamp mx32_type_defs.h mx32_funcs.h mx32_printer_decls.h mx32_printer_defs.h
Elvira Khabirova09294222015-08-04 01:47:02 +0300832
833BUILT_SOURCES += $(mpers_mx32_targets)
834CLEANFILES += $(mpers_mx32_targets)
835
836$(mpers_mx32_targets): mpers_NAME = mx32
837
838endif # HAVE_MX32_MPERS
839
840clean-local:
841 -rm -rf mpers-m32 mpers-mx32
842
Roland McGrathbc44e402004-07-12 05:45:08 +0000843if MAINTAINER_MODE
Roland McGratha478d742009-10-06 17:41:02 -0700844
845gen_changelog_start_date = 2009-07-08 20:00
Dmitry V. Levindce75932013-04-30 23:52:12 +0000846$(srcdir)/ChangeLog: $(srcdir)/gitlog-to-changelog $(srcdir)/Makefile.in \
847 $(srcdir)/.version
Roland McGratha478d742009-10-06 17:41:02 -0700848 @rm -f $@.new
Dmitry V. Levindce75932013-04-30 23:52:12 +0000849 (cd $(srcdir); \
Dmitry V. Levin594399d2011-11-05 13:32:27 +0000850 ./gitlog-to-changelog --append-dot \
851 --since='$(gen_changelog_start_date)'; \
Roland McGratha478d742009-10-06 17:41:02 -0700852 echo; echo; echo 'See ChangeLog-CVS for older changes.' \
853 ) > $@.new
854 chmod 444 $@.new
855 mv -f $@.new $@
856
Dmitry V. Levindce75932013-04-30 23:52:12 +0000857$(srcdir)/CREDITS: $(srcdir)/CREDITS.in $(srcdir)/.mailmap \
858 $(srcdir)/Makefile.in $(srcdir)/.version
Dmitry V. Levin59138a22011-02-24 01:51:15 +0000859 $(AM_V_GEN) \
Mike Frysinger67c4d432014-08-14 04:05:37 -0400860 ( \
Dmitry V. Levindce75932013-04-30 23:52:12 +0000861 cd $(srcdir); \
Dmitry V. Levin59138a22011-02-24 01:51:15 +0000862 sed '/^##/,$$d' CREDITS.in; \
863 { sed -n '1,/^##>/d; s/ \+/\t/; s/^./&/p' CREDITS.in; \
864 git log --pretty=format:'%aN %aE'; \
865 } | LC_ALL=C sort -u \
866 | awk -F'\t' '{printf("\t%s <%s>\n",$$1,$$2)}'; \
Mike Frysinger67c4d432014-08-14 04:05:37 -0400867 ) > $@-t && mv $@-t $@
Dmitry V. Levin59138a22011-02-24 01:51:15 +0000868
Dmitry V. Levin76ac37d2009-10-09 22:10:09 +0000869export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner --mode=go-w,go+rX
870
Dmitry V. Levin00119f62014-11-04 01:40:42 +0000871endif