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

📄 makefile,v

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


1.2
date	97.09.21.19.31.18;	author dls;	state Dist;
branches;
next	1.1;

1.1
date	94.05.08.19.13.55;	author dls;	state Old;
branches;
next	;


desc
@@


1.2
log
@pre-3e code
@
text
@#
# Make the Xinu configuration program
#
DEFS=
CFLAGS = -g -traditional ${DEFS}
all:		config

config:		lex.yy.c y.tab.c
		cc ${CFLAGS} -o config y.tab.c -ll

lex.yy.c:	config.l
		lex config.l

y.tab.c:	config.y
		yacc config.y

install:	config
		cp config ../sys/config

clean:
		rm -f lex.yy.c y.tab.c core
@


1.1
log
@Initial revision
@
text
@d5 1
a5 1
CFLAGS = -g ${DEFS}
@

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -