f4ada56822
* Updated some wx data and makefiles * Updates on wxStream (reorganization) makefile for Windows will nearly follow wxSocket should work on wxGTK (I've tested it) * IPC over Network is included git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@684 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
480 B
Makefile
29 lines
480 B
Makefile
# WXXT base directory
|
|
WXBASEDIR=@WXBASEDIR@
|
|
|
|
# set the OS type for compilation
|
|
OS=@OS@
|
|
# compile a library only
|
|
RULE=bin2
|
|
|
|
# define library name
|
|
BIN_TARGET=client
|
|
BIN2_TARGET=server
|
|
# define library sources
|
|
BIN_SRC= client.cpp
|
|
BIN2_SRC= server.cpp
|
|
|
|
#define library objects
|
|
BIN_OBJ= client.o
|
|
BIN2_OBJ= server.o
|
|
|
|
# additional things needed to link
|
|
BIN_LINK=
|
|
BIN2_LINK=
|
|
|
|
# additional things needed to compile
|
|
ADD_COMPILE=
|
|
|
|
# include the definitions now
|
|
include ../../../template.mak
|