]>
Commit | Line | Data |
---|---|---|
63cafd27 JS |
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=forty | |
11 | # define library sources | |
12 | BIN_SRC=\ | |
13 | canvas.cpp \ | |
14 | card.cpp \ | |
15 | forty.cpp \ | |
16 | game.cpp \ | |
17 | pile.cpp \ | |
18 | playerdg.cpp \ | |
19 | scoredg.cpp \ | |
20 | scorefil.cpp | |
21 | ||
22 | #define library objects | |
23 | BIN_OBJ=\ | |
24 | canvas.o \ | |
25 | card.o \ | |
26 | forty.o \ | |
27 | game.o \ | |
28 | pile.o \ | |
29 | playerdg.o \ | |
30 | scoredg.o \ | |
31 | scorefil.o | |
32 | ||
33 | # additional things needed to link | |
34 | BIN_LINK= | |
35 | ||
36 | # additional things needed to compile | |
37 | ADD_COMPILE= | |
38 | ||
39 | # include the definitions now | |
40 | include ../../../template.mak |