#!/usr/bin/make -f

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

all: testMain
	./testMain

testMain: BitTriangle.o PairQueue.o DivFinder.o HashTable.o

clean:
	rm -f *.o testMain
