]>
Commit | Line | Data |
---|---|---|
0be4095a VZ |
1 | # WXXT base directory |
2 | WXBASEDIR=@WXBASEDIR@ | |
3 | ||
4 | # set the OS type for compilation | |
5 | OS=@OS@ | |
6 | # compile a library only | |
7 | RULE=bin | |
8 | ||
9 | # define library name | |
10 | BIN_TARGET=conftest | |
11 | # define library sources | |
12 | BIN_SRC=conftest.cpp | |
13 | ||
14 | #define library objects | |
15 | BIN_OBJ=conftest.o | |
16 | ||
17 | # additional things needed to link | |
18 | BIN_LINK= | |
19 | ||
20 | # additional things needed to compile | |
21 | ADD_COMPILE= | |
22 | ||
23 | # include the definitions now | |
24 | include ../../../template.mak |