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.mingw32
History | View | Annotate | Download (1.22 KB)
| 1 | 44:225201df055c | Chris | |
|---|---|---|---|
| 2 | 50:929b95cd25b1 | Chris | TOOLPREFIX ?= i686-w64-mingw32- |
| 3 | 44:225201df055c | Chris | CXX = $(TOOLPREFIX)g++ |
| 4 | CC = $(TOOLPREFIX)gcc |
||
| 5 | LD = $(TOOLPREFIX)g++ |
||
| 6 | AR = $(TOOLPREFIX)ar |
||
| 7 | RANLIB = $(TOOLPREFIX)ranlib |
||
| 8 | |||
| 9 | 67:fa66ee7dcf08 | Chris | LDFLAGS += -static -L../vamp-plugin-sdk -lvamp-hostsdk -std=gnu++98 |
| 10 | CXXFLAGS += -I../vamp-plugin-sdk -g -Wall -Wextra -std=gnu++98 |
||
| 11 | 44:225201df055c | Chris | |
| 12 | OBJECTS := vamp-plugin-tester.o Tester.o Test.o TestStaticData.o TestInputExtremes.o TestMultipleRuns.o TestOutputs.o TestDefaults.o TestInitialise.o |
||
| 13 | |||
| 14 | 45:56eabc22ccbf | Chris | vamp-plugin-tester.exe: $(OBJECTS) |
| 15 | 44:225201df055c | Chris | $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) |
| 16 | |||
| 17 | clean: |
||
| 18 | rm -f $(OBJECTS) |
||
| 19 | |||
| 20 | distclean: clean |
||
| 21 | 45:56eabc22ccbf | Chris | rm -f *~ vamp-plugin-tester.exe |
| 22 | 44:225201df055c | Chris | |
| 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 |