📄 makefile
字号:
## @(#)Makefile 1.1 7/30/92 SMI #.DEFAULT: sccs get -G$@ $@OS=SVR4#specify 'OS=' for 4.x builtINCDIR = ../includeINCLUDES = $(INCDIR)/libonline.hSRCS = online_util.c online_info.cOBJS = $(SRCS:.c=.o)UTILLIB = libutil.aDBX = -O# = -g for dbx versionBSDCFLAGS = $(DBX) -D`arch` -I$(INCDIR)SVR4CFLAGS = $(DBX) -Dsun4 -D$(OS) -I$(INCDIR).KEEP_STATE:##### beginning of dependency lines #####all: $(INCLUDES) $(UTILLIB) .c.o: @if [ $(OS) ]; then \ set -x ; \ cc -c $(SVR4CFLAGS) $< ; \ else \ set -x; \ cc -c $(BSDCFLAGS) $< ; \ fi$(UTILLIB): $(OBJS) ar cru $(UTILLIB) $(OBJS) @if [ $(OS) ] ; then set -x ; \ else set -x ; ranlib $@ ; fiinstall: allclean: FRC rm -f $(UTILLIB) $(OBJS)info: FRC sccs infoFRC:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -