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.mingw64
History | View | Annotate | Download (1.2 KB)
| 1 | 50:929b95cd25b1 | Chris | |
|---|---|---|---|
| 2 | TOOLPREFIX ?= x86_64-w64-mingw32- |
||
| 3 | CXX = $(TOOLPREFIX)g++ |
||
| 4 | CC = $(TOOLPREFIX)gcc |
||
| 5 | LD = $(TOOLPREFIX)g++ |
||
| 6 | AR = $(TOOLPREFIX)ar |
||
| 7 | RANLIB = $(TOOLPREFIX)ranlib |
||
| 8 | |||
| 9 | LDFLAGS += -static -L../vamp-plugin-sdk -lvamp-hostsdk |
||
| 10 | CXXFLAGS += -I../vamp-plugin-sdk -g -Wall -Wextra |
||
| 11 | |||
| 12 | OBJECTS := vamp-plugin-tester.o Tester.o Test.o TestStaticData.o TestInputExtremes.o TestMultipleRuns.o TestOutputs.o TestDefaults.o TestInitialise.o |
||
| 13 | |||
| 14 | vamp-plugin-tester.exe: $(OBJECTS) |
||
| 15 | $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) |
||
| 16 | |||
| 17 | clean: |
||
| 18 | rm -f $(OBJECTS) |
||
| 19 | |||
| 20 | distclean: clean |
||
| 21 | rm -f *~ vamp-plugin-tester.exe |
||
| 22 | |||
| 23 | depend: |
||
| 24 | makedepend -Y *.cpp *.h |
||
| 25 | |||
| 26 | # DO NOT DELETE |
||
| 27 | |||
| 28 | Test.o: Test.h |
||
| 29 | TestDefaults.o: TestDefaults.h Test.h Tester.h |
||
| 30 | TestInitialise.o: TestInitialise.h Test.h Tester.h |
||
| 31 | TestInputExtremes.o: TestInputExtremes.h Test.h Tester.h |
||
| 32 | TestMultipleRuns.o: TestMultipleRuns.h Test.h Tester.h |
||
| 33 | TestOutputs.o: TestOutputs.h Test.h Tester.h |
||
| 34 | TestStaticData.o: TestStaticData.h Test.h Tester.h |
||
| 35 | Tester.o: Tester.h Test.h |
||
| 36 | vamp-plugin-tester.o: Tester.h Test.h |
||
| 37 | TestDefaults.o: Test.h Tester.h |
||
| 38 | TestInitialise.o: Test.h Tester.h |
||
| 39 | TestInputExtremes.o: Test.h Tester.h |
||
| 40 | TestMultipleRuns.o: Test.h Tester.h |
||
| 41 | TestOutputs.o: Test.h Tester.h |
||
| 42 | TestStaticData.o: Test.h Tester.h |
||
| 43 | Tester.o: Test.h |