📄 makefile.in
字号:
SHELL = /bin/shprefix = @prefix@exec_prefix = @exec_prefix@BINDIR = ${exec_prefix}/@bindir@CC = @CC@FC = @FC@HAVE_NR = @HAVE_NR@all: @head -20 README -if test -n "${FC}"; then (cd source_f && $(MAKE) $@); fi -if test -n "${CC}"; then (cd source_c && $(MAKE) $@); fiinstall: do_install missing @echo "******************************************************************" @echo "the following programs have been installed in" ${BINDIR} @echo "type" @echo " $$ progname -h" @echo "for individual options" @echo "" @grep Usage install.log | sed "s/ *Usage./ /" @echo " (written to install.log)" @echo "" -@if test -s missing.log; then \ echo "the following programs could not be made/installed"; \ sed "s/^/ /" missing.log; \ echo " (written to missing.log)"; \ echo ""; \ fi @echo "browse index.html for documentation"do_install: @rm -f install.log @test -d ${BINDIR} || (echo "${BINDIR} does not exist") @test -d ${BINDIR} -a -n "${FC}" && (cd source_f && $(MAKE) install) @test -d ${BINDIR} -a -n "${CC}" && (cd source_c && $(MAKE) install)missing: @rm -f missing.log -if test -n "${FC}"; then (cd source_f && $(MAKE) $@); fi -if test -n "${CC}"; then (cd source_c && $(MAKE) $@); fiuninstall: -if test -n "${FC}"; then (cd source_f && $(MAKE) $@); fi -if test -n "${CC}"; then (cd source_c && $(MAKE) $@); ficlean: -(cd source_f && $(MAKE) $@) -(cd source_c && $(MAKE) $@) -@rm -f install.log missing.log config.* -find . \( -name "*~" -o -name "#*#" -o -name "*.o" \ -o -name "lib*.a" \) -exec rm -f {} \;mproper: clean -rm -f *.zip *.tar.gz *.tar.bz2 *.ZIP -find . \( -name "Makefile" -o -name "stdin_*" -o -name tr \ \) -exec rm -f {} \;package: zip gz bzip2zip: mproper -(file=`basename $$PWD`; \ cd `dirname $$PWD`; \ rm -f $$file.zip; \ zip -r $$file.zip $$file; \ cd $$file; \ ls -l `dirname $$PWD`/$$file.zip )gz: mproper -(file=`basename $$PWD`; \ cd `dirname $$PWD`; \ tar -vchf $$file.tar $$file; \ gzip -vf $$file.tar; \ cd $$file; \ ls -l `dirname $$PWD`/$$file.tar.gz )bzip2: mproper -(file=`basename $$PWD`; \ cd `dirname $$PWD`; \ tar -vchf $$file.tar $$file; \ bzip2 -vf $$file.tar; \ cd $$file; \ ls -l `dirname $$PWD`/$$file.tar.bz2 )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -