]>
Commit | Line | Data |
---|---|---|
b127f301 RR |
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=dialoged | |
11 | # define library sources | |
12 | BIN_SRC=dialoged.cpp dlghndlr.cpp edlist.cpp edtree.cpp \ | |
13 | reseditr.cpp reswrite.cpp symbtabl.cpp winprop.cpp winstyle.cpp | |
14 | ||
15 | #define library objects | |
16 | BIN_OBJ=dialoged.o dlghndlr.o edlist.o edtree.o \ | |
17 | reseditr.o reswrite.o symbtabl.o winprop.o winstyle.o | |
18 | ||
19 | # additional things needed to link | |
20 | BIN_LINK= \ | |
21 | -lwx_prop_gtk | |
22 | ||
23 | # additional things needed to compile | |
24 | ADD_COMPILE= \ | |
25 | -I../../../wxprop/src | |
26 | ||
27 | # include the definitions now | |
28 | include ../../../../template.mak |