To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / Makefile @ 38:944898c2e14e

History | View | Annotate | Download (247 Bytes)

1
CXX	?= g++
2
CC	?= gcc
3

    
4
CFLAGS		:= $(CFLAGS) 
5
CXXFLAGS	:= $(CXXFLAGS) -I..
6
LDFLAGS		:= $(LDFLAGS) -lvamp-sdk -lboost_unit_test_framework
7

    
8
SUPER_OBJECTS	:= ../NoteHypothesis.o
9

    
10
tests:	TestNoteHypothesis.o
11
	$(CXX) -o $@ $^ $(SUPER_OBJECTS) $(LDFLAGS)