📄 makefile
字号:
# @(#)Makefile 2.4 (Berkeley) 6/7/93## all executables go in DEST_BIN# all man pages go in DEST_MAN# the bib libraries go in DEST_LIB# At UCB, the file structures have diverged, resulting in the following# choice:# UNIX on VAX machines:DEST_BASE=/usr/contribDEST_BIN=$(DEST_BASE)/binDEST_MAN=/usr/contrib/man# UNIX on Suns, etc#DEST_BASE=/usr/local#DEST_BIN=$(DEST_BASE)/bin#DEST_MAN=$(DEST_BASE)/man# the software expects the following to be trueDEST_LIB=$(DEST_BASE)/libDESTDIRS=DEST_BASE=$(DEST_BASE) DEST_BIN=$(DEST_BIN) \ DEST_MAN=$(DEST_MAN) DEST_LIB=$(DEST_LIB)all: cd src; make ${MFLAGS} $(DESTDIRS)install: all installsrc installmacs installmaninstallman: cd man; make ${MFLAGS} $(DESTDIRS) installinstallsrc: cd src; make ${MFLAGS} $(DESTDIRS) installinstallmacs: cd macs; make ${MFLAGS} $(DESTDIRS) installclean: cd src; make ${MFLAGS} $(DESTDIRS) clean
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -