]> git.saurik.com Git - wxWidgets.git/blob - samples/wxsocket/Makefile.in
* Added wxsocket lib and sample (I hope I don't forget some file)
[wxWidgets.git] / samples / wxsocket / Makefile.in
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=bin2
8
9 # define library name
10 BIN_TARGET=client
11 BIN2_TARGET=server
12 # define library sources
13 BIN_SRC= client.cpp
14 BIN2_SRC= server.cpp
15
16 #define library objects
17 BIN_OBJ= client.o
18 BIN2_OBJ= server.o
19
20 # additional things needed to link
21 BIN_LINK=
22 BIN2_LINK=
23
24 # additional things needed to compile
25 ADD_COMPILE=
26
27 # include the definitions now
28 include ../../../template.mak