#!/usr/bin/make -f

CPPFLAGS = $(shell pkg-config memtailor --cflags)
LDLIBS = $(shell pkg-config memtailor --libs) -lgtest
CC = g++
VPATH=src/test

all: testMain
	./testMain

testMain: ArenaTest.o BufferPoolTest.o MemoryBlocksTest.o

clean:
	rm -f *.o testMain
