📄 makefile,v
字号:
head 1.1;access;symbols;locks dls:1.1; strict;comment @# @;1.1date 97.09.21.19.31.19; author dls; state Dist;branches;next ;desc@@1.1log@pre-3e code@text@## Make the Xinu version of the C run-time support library#DIR = /usr/XinuCFLAGS = -O -c -I../../hSFLAGS = -I../../hAR = /bin/arLIB = ${DIR}/lib.s.o: $(AS) -o $@@ $(AFLAGS) $<.c.o: $(CC) $(CFLAGS) $<CFILES = abs.c atof.c atoi.c atol.c blkcopy.s bzero.c ctype_.c \ doprnt.c \ doscan.c ecvt.c fgets.c fprintf.c fputs.c gets.c \ index.c printf.c puts.c qsort.c rand.c rindex.c scanf.c \ sprintf.c strcat.c strcmp.c strcpy.c strlen.c strncat.c \ strncmp.c strncpy.c swab.cOFILES = abs.o atof.o atoi.o atol.o blkcopy.o bzero.o ctype_.o \ doprnt.o \ doscan.o ecvt.o fgets.o fprintf.o fputs.o gets.o \ index.o printf.o puts.o qsort.o rand.o rindex.o scanf.o \ sprintf.o strcat.o strcmp.o strcpy.o strlen.o strncat.o \ strncmp.o strncpy.o swab.oall: libxc.alibxc.a: ${OFILES} rm -f libxc.a ar cr libxc.a $(OFILES) ranlib libxc.ainstall: libxc.a cp libxc.a $(LIB)/libxc.a ranlib $(LIB)/libxc.a clean: rm -f ${OFILES}@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -