📄 makefile
字号:
# @(#)Makefile 8.1 (Berkeley) 6/11/93# Makefile for vax link, tags file.include "../kern/Make.tags.inc"all: @echo "make links or tags only"DIRS= bi cassette conf consolerl datakit dist floppy if include mba \ mdec uba vaxlinks:: -for i in ${DIRS}; do \ (cd $$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) doneVAX= /sys/vax/bi/*.[ch] /sys/vax/if/*.[ch] /sys/vax/include/*.[ch] \ /sys/vax/mba/*.[ch] /sys/vax/uba/*.[ch] /sys/vax/vax/*.[ch]AVAX= /sys/vax/vax/*.stags:: -ctags -wdt ${COMM} ${VAX} egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AVAX} | \ sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ >> tags sort -o tags tags chown bin.wsrc tags chmod 444 tags
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -