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
|