To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / Makefile.mingw32 @ 63:686ef2976366
History | View | Annotate | Download (426 Bytes)
| 1 | 63:686ef2976366 | Chris | |
|---|---|---|---|
| 2 | CXX = i486-mingw32-c++ |
||
| 3 | CC = i486-mingw32-gcc |
||
| 4 | LD = i486-mingw32-c++ |
||
| 5 | AR = i486-mingw32-ar |
||
| 6 | RANLIB = i486-mingw32-ranlib |
||
| 7 | |||
| 8 | TESTS = test/null |
||
| 9 | |||
| 10 | CFLAGS := -Wall -O2 -I../include |
||
| 11 | CXXFLAGS := $(CFLAGS) |
||
| 12 | |||
| 13 | LDFLAGS := -L../lib |
||
| 14 | PLUGIN_LDFLAGS := -shared -Wl,-Bstatic -static-libgcc -Wl,--version-script=vamp-plugin.map |
||
| 15 | |||
| 16 | PLUGIN_EXT := .dll |
||
| 17 | |||
| 18 | include Makefile.inc |
||
| 19 | |||
| 20 | test/null: |
||
| 21 | ln -s /bin/true test/null |