CFLAGS = -DREENTRANT
LDFLAGS = -lpthread

TARGETS = malloctest 

all: $(TARGETS)

clean:
	rm -f $(TARGETS) core
