# -*- Mode: Makefile; -*-
#
# See COPYRIGHT in top-level directory.
#

CC=cc
CFLAGS= -O0 -g -lmpi -Wall -Wno-stringop-overflow
BINS=simple deadlock split memory_debugging

all: $(BINS)

clean:
	rm -f $(BINS)
