#	Makefile for general support routines for c68
#
#	(Ensure correct version of alloca used for sizeof(int)
#	that the compiler is built to use).

OBJ =  alloca_16.o divs.o divu.o muls.o mulu.o

XOBJ = alloca_32.o

AS = cc -c
AR = ar
LIB = /usr/lib

all : ${OBJ}

install:	${OBJ}
	ar crv ${LIB}/libc.a ${OBJ}

