annotate Makefile @ 26:eff1772ba397 vamp-plugin-tester-v1.0-erroneous

* More doc corrections to match error reporting updates in SDK * Don't return success after failing to load a plugin!
author cannam
date Tue, 22 Sep 2009 11:24:31 +0000
parents ca6803a93bb7
children d6c13829a79a 0a44d3e43830
rev   line source
cannam@0 1
cannam@0 2 LDFLAGS += -lvamp-hostsdk -ldl
cannam@17 3 CXXFLAGS += -g -Wall -Wextra
cannam@0 4
cannam@10 5 OBJECTS := vamp-plugin-tester.o Tester.o Test.o TestStaticData.o TestInputExtremes.o TestMultipleRuns.o TestOutputs.o TestDefaults.o TestInitialise.o
cannam@0 6
cannam@0 7 vamp-plugin-tester: $(OBJECTS)
cannam@22 8 $(CXX) $(OBJECTS) -o $@ $(LDFLAGS)
cannam@0 9
cannam@0 10 clean:
cannam@0 11 rm -f $(OBJECTS)
cannam@0 12
cannam@0 13 distclean: clean
cannam@0 14 rm -f *~ vamp-plugin-tester
cannam@0 15
cannam@0 16 depend:
cannam@0 17 makedepend -Y *.cpp *.h
cannam@0 18
cannam@0 19 # DO NOT DELETE
cannam@0 20
cannam@0 21 Test.o: Test.h
cannam@10 22 TestDefaults.o: TestDefaults.h Test.h Tester.h
cannam@14 23 TestInitialise.o: TestInitialise.h Test.h Tester.h
cannam@3 24 TestInputExtremes.o: TestInputExtremes.h Test.h Tester.h
cannam@3 25 TestMultipleRuns.o: TestMultipleRuns.h Test.h Tester.h
cannam@3 26 TestOutputs.o: TestOutputs.h Test.h Tester.h
cannam@0 27 TestStaticData.o: TestStaticData.h Test.h Tester.h
cannam@0 28 Tester.o: Tester.h Test.h
cannam@0 29 vamp-plugin-tester.o: Tester.h Test.h
cannam@10 30 TestDefaults.o: Test.h Tester.h
cannam@10 31 TestInitialise.o: Test.h Tester.h
cannam@3 32 TestInputExtremes.o: Test.h Tester.h
cannam@3 33 TestMultipleRuns.o: Test.h Tester.h
cannam@3 34 TestOutputs.o: Test.h Tester.h
cannam@0 35 TestStaticData.o: Test.h Tester.h
cannam@0 36 Tester.o: Test.h