Mercurial > hg > decimation
diff qm-dsp-decimate/Makefile @ 28:69ee50c19c0c tip
Add decimate-b
author | Chris Cannam |
---|---|
date | Tue, 22 Oct 2013 08:59:42 +0100 |
parents | 96e9b4e2ae86 |
children |
line wrap: on
line diff
--- a/qm-dsp-decimate/Makefile Mon Oct 21 17:41:43 2013 +0100 +++ b/qm-dsp-decimate/Makefile Tue Oct 22 08:59:42 2013 +0100 @@ -11,15 +11,21 @@ LDFLAGS := $(LDFLAGS) -PROGRAM := decimate +PROGRAMS := decimate decimate-b #VG := valgrind -all: $(PROGRAM) +all: $(PROGRAMS) decimate: decimate.o $(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) $(PROGRAM_LIBS) +decimate-b: decimate-b.o + $(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) $(PROGRAM_LIBS) + +decimate-b.o: decimate.cpp + $(CXX) -c -o $@ $^ $(CXXFLAGS) -DDECIMATE_B=1 + clean: rm -f *.o