makefile.am

来自「ANFY特效」· AM 代码 · 共 38 行

AM
38
字号
## Process this file with automake to produce Makefile.inSUBDIRS = intl po src Applet Tutorialpkgdata_DATA=anfyrcEXTRA_DIST=anfyrcinstall-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	chmod 777 $(DESTDIR)$(pkgdatadir)/Applet -R	chmod 777 $(DESTDIR)$(pkgdatadir)/Tutorial -R	@echo "======================================================="	@echo "Installation complete !"	@echo ""	@echo "Executable file is $(DESTDIR)$(bindir)/anfy"	@echo "Data files are in $(DESTDIR)$(pkgdatadir)"	@echo "======================================================="dist-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 + -
显示快捷键?