annotate Makefile.inc @ 5:05c558f1a23b

Change "relative to mean" to "relative to RMS", and add peak-to-RMS output. Add a mean-filter history. Remove essentially useless forward-power method (same as forward-magnitude with 2x factor). Refactor a bit
author Chris Cannam
date Mon, 25 Jun 2012 11:45:33 +0100
parents 02587f02ef41
children ffed34f519db
rev   line source
Chris@0 1
Chris@0 2 PLUGIN_EXT ?= .so
Chris@0 3 PLUGIN ?= simple-cepstrum$(PLUGIN_EXT)
Chris@0 4 CXX ?= g++
Chris@0 5 CC ?= gcc
Chris@0 6
Chris@0 7 CFLAGS := $(CFLAGS)
Chris@0 8 CXXFLAGS := $(CXXFLAGS)
Chris@0 9 LDFLAGS := $(LDFLAGS)
Chris@0 10
Chris@0 11 HEADERS := SimpleCepstrum.h
Chris@0 12
Chris@0 13 SOURCES := SimpleCepstrum.cpp \
Chris@0 14 libmain.cpp
Chris@0 15
Chris@0 16 OBJECTS := $(SOURCES:.cpp=.o)
Chris@0 17 OBJECTS := $(OBJECTS:.c=.o)
Chris@0 18
Chris@0 19 $(PLUGIN): $(OBJECTS)
Chris@0 20 $(CXX) -o $@ $^ $(LDFLAGS)
Chris@0 21
Chris@0 22 clean:
Chris@0 23 rm $(OBJECTS)
Chris@0 24
Chris@0 25 distclean: clean
Chris@0 26 rm $(PLUGIN)
Chris@5 27
Chris@5 28 libmain.cpp: $(HEADERS)
Chris@5 29 SimpleCepstrum.cpp: $(HEADERS)