📄 makefile
字号:
CC = lcc -ACFLAGS = -g -I.INCLUDEDIR=/cmnusr/local/include/ciiLIBDIR = /usr/local/libOBJS = ap.o arena.o arith.o array.o assert.o atom.o bit.o chan.o except.o \ fmt.o list.o mem.o memmove.o mp.o ring.o seq.o set.o stack.o str.o \ table.o text.o xp.o thread.o swtch.oHEADERS = ap.h arena.h arith.h array.h arrayrep.h assert.h atom.h chan.h \ except.h fmt.h list.h mem.h mp.h seq.h set.h stack.h sem.h str.h \ table.h text.h thread.h xp.hlibcii.a: $(OBJS) ar r $@ $? ranlib $@install: installlib installheadersinstallheaders: $(HEADERS) if [ ! -d $(INCLUDEDIR) ]; then mkdir $(INCLUDEDIR); fi cp -p $(HEADERS) $(INCLUDEDIR)installlib: libcii.a memchk.o cp libcii.a $(LIBDIR) ranlib $(LIBDIR)/libcii.aswtch.o: swtch.s /lib/cpp -P swtch.s >swtch.i as -o $@ swtch.i && rm -f swtch.idepend: makedepend -w1000 -I/usr/local/include/ansi *.c sed -e '/^# DO NOT/,$$s/\/usr[a-z\/.]*\.h//g' \ -e '/^# DO NOT/,$$s/ [ ]*/ /g' <makefile >tmp mv tmp makefileclean: rm -f *.oclobber: clean rm -f libcii.a# DO NOT DELETE THIS LINE -- make depend depends on it.ap.o: assert.h except.h ap.h fmt.h xp.h mem.h arena.o: assert.h except.h arena.h arith.o: arith.harray.o: assert.h except.h array.h arrayrep.h mem.hassert.o: assert.h except.h atom.o: atom.h assert.h except.h mem.h bit.o: assert.h except.h bit.h mem.hchan.o: assert.h except.h chan.h sem.hexcept.o: except.h fmt.o: assert.h except.h fmt.h mem.h foo.o: mp.h except.h list.o: assert.h except.h mem.h list.hmem.o: assert.h except.h mem.h memchk.o: assert.h except.h mem.h mp.o: assert.h except.h fmt.h mem.h xp.h mp.hring.o: assert.h except.h ring.h mem.hseq.o: assert.h except.h seq.h array.h arrayrep.h mem.hset.o: mem.h except.h assert.h arith.h set.hstack.o: assert.h except.h mem.h stack.hstr.o: assert.h except.h str.h mem.h table.o: mem.h except.h assert.h table.htext.o: assert.h except.h text.h mem.h thread.o: assert.h except.h thread.h sem.hxp.o: assert.h except.h xp.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -