]> granicus.if.org Git - strace/blob - Makefile.in
Add test for sys/reg.h and use that instead of asm/ptrace.h
[strace] / Makefile.in
1 # Makefile.in -- strace Makefile prototype                     -*- Makefile -*-
2 #
3 # $Id$
4 #
5
6 srcdir = @srcdir@
7 VPATH = @srcdir@
8
9 CC = @CC@
10
11 INSTALL = @INSTALL@
12 INSTALL_PROGRAM = @INSTALL_PROGRAM@
13 INSTALL_DATA = @INSTALL_DATA@
14
15 DEFS = @DEFS@
16 LDLIBS = @LIBS@
17
18 CFLAGS = @CFLAGS@
19 CPPFLAGS = @CPPFLAGS@
20 LDFLAGS = @LDFLAGS@
21 WARNFLAGS = @WARNFLAGS@
22
23 # OS is one of `linux', `sunos4', or `svr4'.
24 OS = @opsys@
25 # ARCH is one of `i386', `m68k', `sparc', or `mips'.
26 ARCH = @arch@
27 # OSARCH is OS/ARCH if it exists, otherwise just OS.
28 OSARCH = @osarch@
29
30 # You may define any of MAX_PROCS, DEFAULT_STRLEN, DEFAULT_ACOLUMN,
31 # or DEFAULT_SORTBY here.
32 EXTRA_DEFS =
33
34 # Where include files are located, useful for cross-compiling.
35 includedir = @includedir@
36
37 # Where to install the program:
38 # I recommend `/usr' for Linux, `/usr/local' for the others.
39 prefix = @prefix@
40 exec_prefix = @exec_prefix@
41
42 bindir = $(exec_prefix)/bin
43 man1dir = $(prefix)/man/man1
44 man1ext = .1
45
46 SHELL = /bin/sh
47
48 INCLUDES = -I. -I$(OS)/$(ARCH) -I$(srcdir)/$(OS)/$(ARCH) -I$(OS) -I$(srcdir)/$(OS)
49 SUBDIRS = $(OSARCH)
50 ALL_SUBDIRS = test linux linux/alpha linux/powerpc sunos4 svr4
51 OBJ = strace.o version.o syscall.o util.o \
52         desc.o file.o ipc.o io.o ioctl.o mem.o net.o process.o bjm.o \
53         resource.o signal.o sock.o system.o term.o time.o proc.o stream.o
54
55 all: strace
56
57 strace: $(OBJ)
58         $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS)
59
60 install: all
61         $(INSTALL_PROGRAM) strace $(bindir)/strace
62         $(INSTALL_DATA) $(srcdir)/strace.1 $(man1dir)/strace$(man1ext)
63
64 clean: clean-local
65         for i in $(ALL_SUBDIRS); do \
66                 (test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \
67         done; exit 0
68
69 clean-local:
70         rm -f *.o a.out core strace make.out
71
72 distclean: distclean-local
73         for i in $(ALL_SUBDIRS); do \
74                 (test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \
75         done; exit 0
76
77 distclean-local: clean-local
78         rm -f machine
79         rm -f Makefile config.h config.status config.cache config.log
80
81 maintainer-clean: maintainter-clean-local
82         for i in $(ALL_SUBDIRS); do \
83                 (test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \
84         done; exit 0
85
86 maintainer-clean-local: distclean-local
87
88 .c.o:
89         $(CC) $(WARNFLAGS) $(DEFS) $(EXTRA_DEFS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) -c $<
90
91 desc.o: desc.c defs.h config.h
92 file.o: file.c defs.h config.h
93 io.o: io.c defs.h config.h
94 ioctl.o: ioctl.c defs.h config.h
95 mem.o: mem.c defs.h config.h
96 net.o: net.c defs.h config.h
97 process.o: process.c defs.h config.h
98 resource.o: resource.c defs.h config.h
99 signal.o: signal.c defs.h config.h
100 socket.o: socket.c defs.h config.h
101 strace.o: strace.c defs.h config.h
102 syscall.o: syscall.c defs.h config.h
103 system.o: system.c defs.h config.h
104 time.o: time.c defs.h config.h
105 util.o: util.c defs.h config.h