makefile.in

来自「Network Administration Visualized 网络管理可」· IN 代码 · 共 81 行

IN
81
字号
SHELL = @SHELL@INSTALL = @INSTALL@CHEETAH = @CHEETAH@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@libdir = @libdir@sysconfdir = @sysconfdir@pythonlibdir = @pythonlibdir@webroot = @webroot@tooldir = @tooldir@tools = useradmin.tooltop_srcdir = @top_srcdir@config = contact-information.txt  nav-links.conf  welcome-anonymous.txt external-links.txt webfront.conf welcome-registered.txt.PHONY: all install install-lib install-bin install-web install-images clean distclean install-confall: config/webfront.conf	$(MAKE) -C templates $@config/webfront.conf: config/webfront.conf.source	$(top_srcdir)/tools/expand.pl config/webfront.conf.source > config/webfront.confinstall: install-lib install-bin install-web install-conf	$(MAKE) -C templates $@install-lib:	@cd lib; \	for file in nav/web/*.py; do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)/$(pythonlibdir)/$$file || exit 1; \	doneinstall-bin:	@cd bin; \	for file in *.py; do \	  $(INSTALL) -v -D -m 755 $$file $(DESTDIR)$(bindir)/$$file || exit 1; \	doneinstall-web: install-images	@cd src; \	installable=`find . -name '*.py' -or -name '.htaccess' -or -name '*.html' -or -name '*.css' -or -name '*.js'`; \	for file in $$installable; do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(webroot)/$$file || exit 1; \	done	for file in $(tools); do \	  $(INSTALL) -D -v -m 644 $$file $(DESTDIR)$(tooldir)/$$file || exit 1; \	doneinstall-images:	@cd graphics; \	installable=`find . -name '.htaccess' -or -name '*.png' -or -name '*.gif' -or -name '*.jpg'`; \	for file in $$installable; do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(webroot)/$$file || exit 1; \	doneinstall-conf:	cd config;                                             \	for file in $(config); do                              \	  target=$(DESTDIR)$(sysconfdir)/webfront/$$file;      \	  if [ -f "$$target" ]; then                           \	    echo Skipping installation of config file $$file;  \	  else                                                 \	    $(INSTALL) -v -D -m 644 $$file $$target;           \	  fi                                                   \	doneclean:	@backups=`find lib bin src -name '*~'`; \	rm -f $$backups	rm -f *~	$(MAKE) -C templates $@distclean: clean	rm -f Makefile	$(MAKE) -C templates $@

⌨️ 快捷键说明

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