#
# Multiprocessor Simulator MAKEFILE
#
COMP = cc -O
MLIB = ../../libmp.a

all:
	$(COMP) -o tmx_hst tmx_hst.c $(MLIB)
	$(COMP) -o tmx_prc tmx_prc.c $(MLIB)

go:
	../../mpsim < go.file

prt:
	ptroff -ms -h README

clean:
	rm tmx_hst tmx_prc MPSYSLOG
