To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / build / Makefile.osx.32
History | View | Annotate | Download (1.16 KB)
| 1 | 30:ce9b2b9edfe2 | Chris | |
|---|---|---|---|
| 2 | ARCHFLAGS := -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch i386 -arch ppc |
||
| 3 | LDFLAGS += $(ARCHFLAGS) -L../vamp-plugin-sdk -lvamp-hostsdk -ldl |
||
| 4 | CXXFLAGS += $(ARCHFLAGS) -I../vamp-plugin-sdk -g -Wall -Wextra |
||
| 5 | |||
| 6 | OBJECTS := vamp-plugin-tester.o Tester.o Test.o TestStaticData.o TestInputExtremes.o TestMultipleRuns.o TestOutputs.o TestDefaults.o TestInitialise.o |
||
| 7 | |||
| 8 | vamp-plugin-tester: $(OBJECTS) |
||
| 9 | $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) |
||
| 10 | |||
| 11 | clean: |
||
| 12 | rm -f $(OBJECTS) |
||
| 13 | |||
| 14 | distclean: clean |
||
| 15 | rm -f *~ vamp-plugin-tester |
||
| 16 | |||
| 17 | depend: |
||
| 18 | makedepend -Y *.cpp *.h |
||
| 19 | |||
| 20 | # DO NOT DELETE |
||
| 21 | |||
| 22 | Test.o: Test.h |
||
| 23 | TestDefaults.o: TestDefaults.h Test.h Tester.h |
||
| 24 | TestInitialise.o: TestInitialise.h Test.h Tester.h |
||
| 25 | TestInputExtremes.o: TestInputExtremes.h Test.h Tester.h |
||
| 26 | TestMultipleRuns.o: TestMultipleRuns.h Test.h Tester.h |
||
| 27 | TestOutputs.o: TestOutputs.h Test.h Tester.h |
||
| 28 | TestStaticData.o: TestStaticData.h Test.h Tester.h |
||
| 29 | Tester.o: Tester.h Test.h |
||
| 30 | vamp-plugin-tester.o: Tester.h Test.h |
||
| 31 | TestDefaults.o: Test.h Tester.h |
||
| 32 | TestInitialise.o: Test.h Tester.h |
||
| 33 | TestInputExtremes.o: Test.h Tester.h |
||
| 34 | TestMultipleRuns.o: Test.h Tester.h |
||
| 35 | TestOutputs.o: Test.h Tester.h |
||
| 36 | TestStaticData.o: Test.h Tester.h |
||
| 37 | Tester.o: Test.h |