# 
# MakeConsts
#
# x-kernel v3.1	12/10/90
#
# Copyright (C) 1990  Larry L. Peterson and Norman C. Hutchinson
#

MACHINE = sun
CPPFLAGS = -DMC68000 -DMC68010 -DMC68020 -DENET10MEG -DSUN2 -DSUN3 \
	-I. -I../share -I../mi -I../protocols

.SCCS_GET:;

ms_consts.h:	ms_consts.c
	cc -S $(CPPFLAGS) ms_consts.c
	sed -f ../etc/consts.sed ms_consts.s | awk -f ../etc/consts.awk > ms_consts.h
	rm -f ms_consts.s 

