Mercurial > hg > vamp-simple-cepstrum
view Makefile.inc @ 19:c9cac05ef9f2 track
Reap expired/rejected hypotheses from list; report an estimate as accepted only if the accepting hypothesis has been satisfied already (otherwise a different provisional hypothesis might become satisfied first)
| author | Chris Cannam |
|---|---|
| date | Sun, 01 Jul 2012 11:33:37 +0100 |
| parents | 10dfd77951bf |
| children | 59701cbc4b93 |
line wrap: on
line source
PLUGIN_EXT ?= .so PLUGIN ?= simple-cepstrum$(PLUGIN_EXT) CXX ?= g++ CC ?= gcc CFLAGS := $(CFLAGS) CXXFLAGS := $(CXXFLAGS) LDFLAGS := $(LDFLAGS) HEADERS := SimpleCepstrum.h \ CepstrumPitchTracker.h SOURCES := SimpleCepstrum.cpp \ CepstrumPitchTracker.cpp \ libmain.cpp OBJECTS := $(SOURCES:.cpp=.o) OBJECTS := $(OBJECTS:.c=.o) $(PLUGIN): $(OBJECTS) $(CXX) -o $@ $^ $(LDFLAGS) clean: rm $(OBJECTS) distclean: clean rm $(PLUGIN) libmain.o: $(HEADERS) $(SOURCES) SimpleCepstrum.o: $(HEADERS) $(SOURCES)
