⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile,v

📁 TCP-IP红宝书源代码
💻
字号:
head	1.1;
access;
symbols;
locks
	dls:1.1; strict;
comment	@# @;


1.1
date	97.09.21.19.31.19;	author dls;	state Dist;
branches;
next	;


desc
@@


1.1
log
@pre-3e code
@
text
@#
#  Make the Xinu version of the C run-time support library
#

DIR	=	/usr/Xinu
CFLAGS	=	-O -c -I../../h
SFLAGS	=	-I../../h
AR	=	/bin/ar
LIB	=	${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.c

OFILES	=	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.o

all:		libxc.a

libxc.a:	${OFILES}
		rm -f libxc.a
		ar cr libxc.a $(OFILES)
		ranlib libxc.a

install:	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 + -