head	4.2;
access
	hal
	ljg
	fred
	udo
	nigel;
symbols
	r12:4.2;
locks; strict;
comment	@# @;


4.2
date	94.05.02.20.55.15;	author rcsadmin;	state Exp;
branches;
next	;


desc
@@


4.2
log
@This is the baseline version
@
text
@# Default macro definitions for 'make'
# For the suffix-rules, the various extensions are:
#	.sh	Shell script source
#	.a	Object library
#	.o	Relocatable object code
#	.obj	Relocatable object code
#	.c	C-Language source code
#	.spc	"Space.c" device-driver source file
#	.y	'yacc' grammar specification
#	.l	'lex' scanner specification
#	.s	i386 assembly language
#	.m	8086/i286 assembly language
#	.man	Formatted manual page
#	.1	'nroff' source code

.SUFFIXES: .sh .a .o .obj .c .spc .y .l .s .m .man .1

AR=ar
ARFLAGS	=rs

AS=as
ASFLAGS	=-gx

CC=cc -a
CFLAGS=
LDFLAGS=
LIBFLAGS=

CPP=$(CC)
CPPFLAGS=-E

LEX=lex
LFLAGS= 

YACC=yacc
YFLAGS= 

NROFF=nroff
NRFLAGS=

@
