# cross version of the optimizer makefile

.SUFFIXES:	.c .o

CFLAGS =	-c -O -DBOOTSTRAP

OFILES =	o0.o o1.o

c268:		$(OFILES)
		cc -o c268 $(OFILES)

.c.o:		o.h
		cc $(CFLAGS) $*.c

install: c268
	cp c268 /usr/sun/bin

