# Myrinet Tools Makefile
#
# Author: Guto

include		$(EPOS)/makedefs

all		: route2def mcp2def

route2def	: route2def.c
		$(UNIX_CC) $(UNIX_CC_FLAGS) route2def.c
		$(UNIX_LD) $(UNIX_LD_FLAGS) -o route2def route2def.o

mcp2def		: mcp2def.c
		$(UNIX_CC) $(UNIX_CC_FLAGS) mcp2def.c
		$(UNIX_LD) $(UNIX_LD_FLAGS) -o mcp2def mcp2def.o

print		:
		$(PRINT1) route2def.c $(PRINT2)
		$(PRINT1) mcp2def.c $(PRINT2)

clean		:
		$(CLEAN) route2def mcp2def *.o
