makefile.in

来自「linux进程跟踪的工具和源代码」· IN 代码 · 共 56 行

IN
56
字号
## $Id: Makefile.in,v 1.3 2001/03/17 17:26:34 wichert Exp $#srcdir = @srcdir@VPATH = @srcdir@CC = @CC@CPP = @CPP@SHELL = /bin/shDEFS = @DEFS@LDLIBS = @LIBS@CFLAGS = -gLDFLAGS = -gWARNFLAGS = @WARNFLAGS@CPPFLAGS =INCLUDES = -I. -I.. -I$(srcdir)includedir = @includedir@all: ioctlent.h errnoent.h signalent.h syscallent.hioctlent.h: ioctlsort	./ioctlsort >$@ioctlsort: ioctlsort.o	$(CC) $(LDFLAGS) ioctlsort.o -o ioctlsortioctlsort.o: ioctlsort.c ioctdefs.h ioctls.h	$(CC) $(WARNFLAGS) $(DEFS) $(CPPFLAGS) $(INCLUDES) $(CFLAGS) -c $(srcdir)/../ioctlsort.cioctldefs.h ioctls.h: ioctlent.sh	sh ioctlent.sherrnoent.h: ../errnoent.sh $(includedir)/linux/errno.h	$(SHELL) $(srcdir)/../errnoent.sh $(includedir)/*/errno.h >$@signalent.h: ../signalent.sh $(includedir)/linux/signal.h	$(SHELL) $(srcdir)/../signalent.sh $(includedir)/*/signal.h >$@#syscallent.h: ../syscallent.sh $(includedir)/sys/syscall.hsyscallent.h:	$(SHELL) $(srcdir)/../syscallent.sh $(includedir)/sys/syscall.h >$@clean:	rm -f ioctlent.c *.raw *.tmp *.o ioctlsortdistclean: clean	rm -f Makefilemaintainer-clean: distclean	rm -f ioctlent.h errnoent.h signalent.h

⌨️ 快捷键说明

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