makefile

来自「xen 3.2.2 源码」· 代码 · 共 45 行

TXT
45
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?