📄 makefile,v
字号:
head 1.1;access ;symbols ;locks ; strict;comment @# @;1.1date 86.06.25.12.51.33; author jqj; state Exp;branches ;next ;desc@@1.1log@Initial revision@text@# makefile for "except" - C exception handling## Jeffrey Mogul Stanford 4 March 1983##CFLAGS = -ODESTDIR = /usr/local/libINCLUDEDIR = /usr/includeall: libexcept.a libexcept_p.ainstall: install.lib install.maninstall.man: rm -f /us/man/man3/except.3 cp except.3 /usr/man/man3except.o except_p.o: except.c except.h ${CC} $(CFLAGS) -c -p except.c mv except.o except_p.o ${CC} $(CFLAGS) -c except.clibexcept.a: except.o ar cr libexcept.a except.o ranlib libexcept.alibexcept_p.a: except_p.o ar cr libexcept_p.a except_p.o ranlib libexcept_p.ainstall.lib: libexcept.a libexcept_p.a rm -f $(DESTDIR)/libexcept.a $(DESTDIR)/libexcept_p.a \ $(INCLUDEDIR)/except.h install libexcept.a $(DESTDIR) ranlib $(DESTDIR)/libexcept.a install libexcept_p.a $(DESTDIR) ranlib $(DESTDIR)/libexcept_p.a cp except.h $(INCLUDEDIR)clean: rm -f *.BAK *.CKP *.o *.a *.tar core a.out testdistrib: clean tar cf except.tar `ls|grep -v tar`test: test.o libexcept.a ${CC} -o test test.o libexcept.atest.o: test.c except.h ${CC} -c test.c -I.@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -