📄 makefile
字号:
# Makefile,v 1.9 2003/08/19 15:08:26 schmidt Exp
#----------------------------------------------------------------------------
# Local macros
#----------------------------------------------------------------------------
BIN = client server
all clean realclean : #
$(MAKE) -f Makefile.client $@
$(MAKE) -f Makefile.server $@
client server : #
$(MAKE) -f Makefile.$@ all
Depend : #
$(MAKE) -f Makefile.client $@
HTML : #
[ -f hdr ] || $(MAKE) UNSHAR
perl ../combine *.pre
chmod +r *.html
SHAR : #
[ ! -f combine.shar ] || exit 1
shar -T hdr bodies *.pre *.pst > combine.shar && $(RM) hdr bodies *.pre *.pst
UNSHAR : #
sh combine.shar
CLEAN : realclean
$(RM) hdr bodies *.pre *.pst .depend*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -