📄 makefile.in
字号:
# This is a dummy io directory, with nothing to build.# This is used by setting IO_DIR=no=stream when building libg++.# The effect is that iostream does not get built, installed, or used.# This is useful when:# a) You're using some other C++ compiler that comes with its own iostreams.# b) You're using iostream/stdio in your C-library. In that case,# you will install iostream as part of your C-library, not as part of libg++.SHELL = /bin/sh.PHONY: all check install clean distclean realclean info clean-info \ install-infoall: echo "(Dummy iostreams - Nothing to do)"install:check: echo "(Dummy iostreams - Nothing to do)"info:clean-info:install-info:clean:distclean: rm -f *.o *~ core *.tar.Z *.a config.status Makefilerealclean: distclean# with the gnu make, this is done automatically.Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -