⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 linux进程跟踪的工具和源代码
💻 IN
字号:
# Makefile.in -- strace Makefile prototype                     -*- Makefile -*-## $Id: Makefile.in,v 1.7 2001/02/16 20:14:40 wichert Exp $#srcdir		= @srcdir@VPATH		= @srcdir@CC		= @CC@INSTALL		= @INSTALL@INSTALL_PROGRAM	= @INSTALL_PROGRAM@INSTALL_DATA	= @INSTALL_DATA@DEFS		= @DEFS@LDLIBS		= @LIBS@CFLAGS		= @CFLAGS@CPPFLAGS	= @CPPFLAGS@LDFLAGS		= @LDFLAGS@WARNFLAGS	= @WARNFLAGS@# OS is one of `linux', `sunos4', `svr4', or `freebsd'.OS		= @opsys@# ARCH is one of `i386', `m68k', `sparc', `arm', `mips' or `ia64'.ARCH		= @arch@# OSARCH is OS/ARCH if it exists, otherwise just OS.OSARCH		= @osarch@# You may define any of MAX_PROCS, DEFAULT_STRLEN, DEFAULT_ACOLUMN,# or DEFAULT_SORTBY here.EXTRA_DEFS	=# Where include files are located, useful for cross-compiling.includedir	= @includedir@# Where to install the program:# I recommend `/usr' for Linux, `/usr/local' for the others.prefix		= @prefix@exec_prefix	= @exec_prefix@bindir		= @bindir@mandir		= @mandir@man1dir		= $(mandir)/man1man1ext = .1SHELL		= /bin/shINCLUDES	= -I. -I$(OS)/$(ARCH) -I$(srcdir)/$(OS)/$(ARCH) -I$(OS) \			-I$(srcdir)/$(OS)SUBDIRS		= $(OSARCH)ALL_SUBDIRS	= test linux linux/alpha linux/powerpc sunos4 svr4 freebsd/i386OBJ		= strace.o version.o syscall.o util.o desc.o file.o ipc.o \			io.o ioctl.o mem.o net.o process.o bjm.o \			resource.o signal.o sock.o system.o term.o time.o \			proc.o stream.oall: stracestrace: $(OBJ)	$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS)install: all	$(INSTALL_PROGRAM) strace $(bindir)/strace	$(INSTALL_PROGRAM) $(srcdir)/strace-graph $(bindir)/strace-graph	$(INSTALL_DATA) $(srcdir)/strace.1 $(man1dir)/strace$(man1ext)clean: clean-local	for i in $(ALL_SUBDIRS); do \		(test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \	done; exit 0clean-local:	rm -f *.o a.out core strace make.outdistclean: distclean-local	for i in $(ALL_SUBDIRS); do \		(test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \	done; exit 0distclean-local: clean-local	rm -f machine	rm -f Makefile config.h config.status config.cache config.logmaintainer-clean: maintainter-clean-local	for i in $(ALL_SUBDIRS); do \		(test -f $$i/Makefile && cd ./$$i && $(MAKE) $@ || true); \	done; exit 0maintainer-clean-local: distclean-local.c.o:	$(CC) $(WARNFLAGS) $(DEFS) $(EXTRA_DEFS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) -c $<desc.o: desc.c defs.h config.hfile.o: file.c defs.h config.hio.o: io.c defs.h config.hioctl.o: ioctl.c defs.h config.hmem.o: mem.c defs.h config.hnet.o: net.c defs.h config.hprocess.o: process.c defs.h config.hresource.o: resource.c defs.h config.hsignal.o: signal.c defs.h config.hsocket.o: socket.c defs.h config.hstrace.o: strace.c defs.h config.hsyscall.o: syscall.c defs.h config.hsystem.o: system.c defs.h config.htime.o: time.c defs.h config.hutil.o: util.c defs.h config.h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -