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

📄 makefile.in

📁 rxvt经典的linux下的终端.小巧实用
💻 IN
字号:
#make src/test/Makefile.in	-*- Makefile -*-@MCOMMON@srcdir =	@srcdir@VPATH =		@srcdir@.PATH:		@srcdir@basedir = ../..thisdir = src/testfirst_rule: dummy:SRCS = gettty.c	strings-memmove.cOBJS = gettty.o	strings-memmove.oHDRS =## Distribution variables#DEBUG= -DDEBUG_TTYDIST = $(HDRS) $(SRCS) Makefile.in# inference rules.c.o:	$(CC) -c $(CPPFLAGS) $(XINC) -I. -I$(basedir) -I$(srcdir) $(DEFS) $(CFLAGS) $<#-------------------------------------------------------------------------all:tests:	@(cd $(srcdir)/..; ${MAKE} .protos)	@${MAKE} tests-bin run-teststests-bin: gettty gettty-debug strings-memmoverun-tests:	@echo ""	@echo "RUNNING TESTS ----"	@echo "Testing open of (pty/tty) pseudo-tty pairs"	@./gettty concise || ./gettty-debug	@echo "Testing possible replacement for memmove() with --enable-strings"	@./strings-memmovegettty: gettty.o ptytty.o	$(CC) $(LDFLAGS) -o $@ gettty.o ptytty.o $(LIBS)gettty-debug: gettty.o ptytty-debug.o	$(CC) $(LDFLAGS) -o $@ gettty.o ptytty-debug.o $(LIBS)ptytty.o: $(srcdir)/../ptytty.c	$(CC) -o ptytty.o $(CPPFLAGS) $(CFLAGS) -c $(srcdir)/../ptytty.cptytty-debug.o: $(srcdir)/../ptytty.c	$(CC) -o ptytty-debug.o $(CPPFLAGS) $(CFLAGS) $(DEBUG) -c $(srcdir)/../ptytty.cstrings-memmove: strings-memmove.o	$(CC) $(LDFLAGS) -o $@ strings-memmove.o $(LIBS)$(srcdir)/../strings.intpro: $(srcdir)/../strings.c	(cd $(srcdir)/..; ${MAKE} strings.intpro)tags: $(SRCS)	ctags $(SRCS)allbin:alldoc:clean:	$(RMF) gettty strings-memmove core a.out *.o *.bak *~realclean: clean	$(RMF) tagscleandir: realcleandistclean:	(cd $(srcdir); $(RMF) strings-memmove *~ *.o core a.out)	if test $(srcdir) = .; then $(MAKE) realclean; fi	(cd $(srcdir); $(RMF) Makefile)install:uninstall:distdirs:	mkdir $(basedir)/../$(VERNAME)/$(thisdir)distcopy:	$(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir)# -----------------------------------------------------------------------# DO NOT DELETE: ugly dependency list followsstrings-memmove.o:	strings-memmove.c $(srcdir)/../strings.c $(srcdir)/../strings.intpro

⌨️ 快捷键说明

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