# Copyright (C) 1997 Itoh Hidenori
#
#	Parallel FOIL for AP1000 Makefile
#


PFOIL: host cell Makefile

host: ./HOST/host.c ./HOST/input.c ./HOST/init.c ./HOST/comm.c ./HOST/cand.c ./HOST/struct.c ./HOST/devide.c ./HOST/determinate.c ./HOST/remain.c
	cd HOST; cc.hc7 -DHOST -g -o ../host pmalloc.c buffer.c remain.c determinate.c devide.c struct.c cand.c comm.c init.c input.c host.c -lm

cell: ./CELL/cell.c ./CELL/init.c ./CELL/comm.c ./CELL/struct.c ./CELL/determinate.c ./CELL/learn.c
	cd CELL; cc.cc7 -stack 8192 -DCELL -g -o ../cell pmalloc.c buffer.c learn.c determinate.c struct.c comm.c init.c cell.c -lm

