makefile.am

来自「linux下的FFT 频谱分析」· AM 代码 · 共 40 行

AM
40
字号
## Process this file with automake to produce Makefile.inSUBDIRS = src poEXTRA_DIST = \	autogen.sh \	fft-spectra.glade \	fft-spectra.gladep \    README-cz \    fft-spectra.confinstall-data-local:	@$(NORMAL_INSTALL)	if test -d $(srcdir)/pixmaps; then \	  $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \	  for pixmap in $(srcdir)/pixmaps/*; do \	    if test -f $$pixmap; then \	      $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \	    fi \	  done \	fi	if test -d $(HOME); then \	    cp fft-spectra.conf $(HOME)/.fft-spectra; \	else	    echo "The directory $(HOME) does not exist.";	    echo "Install the config file manually:";	    echo '     cp fft-spectra.conf $(HOME)/.fft-spectra'.;	fidist-hook:	if test -d pixmaps; then \	  mkdir $(distdir)/pixmaps; \	  for pixmap in pixmaps/*; do \	    if test -f $$pixmap; then \	      cp -p $$pixmap $(distdir)/pixmaps; \	    fi \	  done \	fi

⌨️ 快捷键说明

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