LDPATH = -L../common/ -L../mono -L../ram -L. IDPATH = -I../common/ -I../mono -I../ram -I. FLAGS = -Wall all: CMul2L.o CMLayer.o CUserIF.o CMul2L.o: CMul2L.C CMul2L.h g++ ${FLAGS} ${IDPATH} ${LDPATH} -c -o CMul2L.o CMul2L.C CMLayer.o: CMLayer.C CMLayer.h g++ ${FLAGS} ${IDPATH} ${LDPATH} -c -o CMLayer.o CMLayer.C CUserIF.o: CUserIF.C CUserIF.h g++ ${FLAGS} ${IDPATH} ${LDPATH} -c -o CUserIF.o CUserIF.C clean: rm -f core rm -f CMLayer.o rm -f CMul2L.o rm -f CUserIF.o