Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1 | # Automake input for strace. |
| 2 | |
| 3 | bin_PROGRAMS = strace |
| 4 | man_MANS = strace.1 |
| 5 | |
| 6 | # OS is one of `linux', `sunos4', `svr4', or `freebsd'. |
| 7 | OS = @opsys@ |
| 8 | # ARCH is `i386', `m68k', `sparc', etc. |
| 9 | ARCH = @arch@ |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 10 | |
| 11 | INCLUDES = -I$(OS)/$(ARCH) -I$(srcdir)/$(OS)/$(ARCH) -I$(OS) -I$(srcdir)/$(OS) |
| 12 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 13 | strace_SOURCES = strace.c version.c syscall.c util.c desc.c file.c ipc.c \ |
| 14 | io.c ioctl.c mem.c net.c process.c bjm.c \ |
| 15 | resource.c signal.c sock.c system.c term.c time.c \ |
| 16 | proc.c stream.c |
| 17 | |
Roland McGrath | 80964aa | 2002-12-30 01:11:08 +0000 | [diff] [blame^] | 18 | EXTRA_DIST = $(man_MANS) errnoent.sh signalent.sh syscallent.sh ioctlsort.c \ |
| 19 | linux/ioctlsort.c \ |
| 20 | linux/ioctlent.h linux/errnoent.h linux/signalent.h \ |
| 21 | linux/syscall.h linux/syscallent.h linux/dummy.h \ |
| 22 | linux/*/errnoent.h linux/*/ioctlent.h \ |
| 23 | linux/*/signalent.h linux/*/syscallent.h \ |
| 24 | freebsd/ioctlent.sh \ |
| 25 | freebsd/syscalls.cat freebsd/syscalls.pl freebsd/syscalls.print \ |
| 26 | freebsd/*/errnoent.h freebsd/*/ioctlent.h \ |
| 27 | freebsd/*/signalent.h freebsd/*/syscall.h freebsd/*/syscallent.h |
| 28 | sunos4/dummy.h sunos4/errnoent.h \ |
| 29 | sunos4/ioctlent.h sunos4/ioctlent.sh sunos4/signalent.h \ |
| 30 | sunos4/syscall.h sunos4/syscallent.h \ |
| 31 | svr4/dummy.h svr4/errnoent.h svr4/ioctlent.h svr4/ioctlent.sh \ |
| 32 | svr4/signalent.h svr4/syscall.h svr4/syscallent.h |