📄 makefile
字号:
## Makefile # @(#) Makefile 1.1 92/07/30 Copyr 1987 Sun Micro#CFLAGS = -OAR= /bin/arRANLIB= /usr/bin/ranlibINSTALL= /usr/bin/installCC= /bin/ccd-mc68020=m68kd-mc68010=m68kd-sparc=sparcMACH= $(d$(TARGET_MACH))PIPEDIR= /usr/src/lib/libc/sys/common/$(MACH)ASSRC= $(PIPEDIR)/pipe.sLOPTS= -hbxnGREP= /bin/grepLTAIL= ${GREP} -v 'struct/union .* never defined' | \ ${GREP} -v 'syscall' | \ ${GREP} -v 'possible pointer alignment problem' ; truelibnbio.a: nb.o mpipe.o $(AR) cru libnbio.a $? $(RANLIB) $@install: FRC libnbio.a $(INSTALL) -c -m 644 libnbio.a $(DESTDIR)/usr/lib $(RANLIB) $(DESTDIR)/usr/lib/libnbio.anb.o: ../nb.c $(CC) $(CFLAGS) -c $?mpipe.o: $$(ASSRC) $(PIPEDIR)/SYS.h $(PIPEDIR)/PIC.h cp $(ASSRC) /tmp/tmppipe.s /lib/cpp -E -I$(PIPEDIR) /tmp/tmppipe.s > /tmp/cpptmppipe.s sed \ -e 's/pipe/mpipe/g' \ -e 's/SYS_mpipe/SYS_pipe/' \ /tmp/cpptmppipe.s > mpipe.s /bin/as -o $@ mpipe.s /bin/rm -f /tmp/cpptmppipe.s /tmp/tmppipe.stags: ../nb.c ctags -tw $?.IGNORE:lint: lint -vu $(LOPTS) ../nb.c -llwp | $(LTAIL) > lintedclean: rm -f libnbio.a linted made *.o tags *.sFRC:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -