File: unittest

package info (click to toggle)
mathic 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,192 kB
  • sloc: cpp: 8,631; sh: 4,662; makefile: 75
file content (14 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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