makefile
来自「abootLoader 固件源代码 HP内部珍贵资料!」· 代码 · 共 27 行
TXT
27 行
# eventually this should have rules for recreating the man pages from the # sgml source, but since this doesn't work on my machine right now i'm# leaving it out.# if this is a recursive make, and mandir was set in the top-level Makefile,# use that value. Otherwise default to /usr/man.ifeq ($(mandir),)MANDIR=/usr/manelseMANDIR=$(mandir)endifMAN5=$(MANDIR)/man5MAN8=$(MANDIR)/man8default: install: install -d $(MAN5) $(MAN8) install -c aboot.conf.5 $(MAN5) install -c aboot.8 abootconf.8 e2writeboot.8 swriteboot.8 $(MAN8) install-gz: install gzip -f9 $(MAN5)/aboot.conf.5 gzip -f9 $(MAN8)/aboot.8 $(MAN8)/abootconf.8 $(MAN8)/e2writeboot.8 \ $(MAN8)/swriteboot.8install-gzip: install-gz
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?