# Makefile for ~CLU/code/sys/Opt

LIB_DIR	= ${CLUHOME}/lib
LIBS 	= misc lowlev useful
SYS_CLU = ~CLU/sys/clu

o_files: ${OBJS}

# This rule is not quite good enough: the new .c files end up in ${SYS_CLU}...

c_files:
	cd ${LIB_DIR}; make libs
	$(CLU)  -ext false -dir ${LIB_DIR} -me ${LIBS} 	\
		-spec _gprof.spc -dir ${SYS_CLU} 		\
		-opt time -co \*

