📄 makefile
字号:
# Copyright (C) International Business Machines Corp., 2005# Author: Josh Triplett <josh@kernel.org># # This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; under version 2 of the License.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.XEN_ROOT=../../..include $(XEN_ROOT)/tools/Rules.mkifneq ($(XENSTAT_XENTOP),y).PHONY: all install xentopall install xentop:elseprefix=/usrmandir=$(prefix)/share/manman1dir=$(mandir)/man1sbindir=$(prefix)/sbinCFLAGS += -DGCC_PRINTF -Wall -Werror -I$(XEN_LIBXENSTAT)LDFLAGS += -L$(XEN_LIBXENSTAT)LDLIBS += -lxenstat $(CURSES_LIBS) $(SOCKET_LIBS)CFLAGS += -DHOST_$(XEN_OS).PHONY: allall: xentop.PHONY: installinstall: xentop xentop.1 $(INSTALL_PROG) xentop $(DESTDIR)$(sbindir)/xentop $(INSTALL_DIR) $(DESTDIR)$(man1dir) $(INSTALL_DATA) xentop.1 $(DESTDIR)$(man1dir)/xentop.1endif.PHONY: cleanclean: rm -f xentop xentop.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -