|
|
@@ -1,36 +1,28 @@
|
|
|
from building import *
|
|
|
-Import('rtconfig')
|
|
|
|
|
|
src = []
|
|
|
cwd = GetCurrentDir()
|
|
|
-group = []
|
|
|
-CPPPATH = []
|
|
|
+include_path = [cwd]
|
|
|
|
|
|
# add network samples.
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_TCP_CLIENT'):
|
|
|
- src += Glob('tcpclient/*.c')
|
|
|
- CPPPATH += [cwd + '/tcpclient']
|
|
|
+ src += ['tcpclient_sample.c']
|
|
|
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_TCP_SERVER'):
|
|
|
- src += Glob('tcpserver/*.c')
|
|
|
- CPPPATH += [cwd + '/tcpserver']
|
|
|
+ src += ['tcpserver_sample.c']
|
|
|
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_UDP_CLIENT'):
|
|
|
- src += Glob('udpclient/*.c')
|
|
|
- CPPPATH += [cwd + '/udpclient']
|
|
|
+ src += ['udpclient_sample.c']
|
|
|
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_UDP_SERVER'):
|
|
|
- src += Glob('udpserver/*.c')
|
|
|
- CPPPATH += [cwd + '/udpserver']
|
|
|
+ src += ['udpserver_sample.c']
|
|
|
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_TCP_CLIENT_SELECT'):
|
|
|
- src += Glob('tcpclient_select/*.c')
|
|
|
- CPPPATH += [cwd + '/tcpclient_select']
|
|
|
+ src += ['tcpclient_select_sample.c']
|
|
|
|
|
|
if GetDepend('NETWORK_SAMPLES_USING_HTTP_CLIENT'):
|
|
|
- src += Glob('httpclient/*.c')
|
|
|
- CPPPATH += [cwd + '/httpclient']
|
|
|
+ src += ['httpclient_sample.c']
|
|
|
|
|
|
-group = DefineGroup('network-samples', src, depend = ['PKG_USING_NETWORK_SAMPLES'], CPPPATH = CPPPATH)
|
|
|
+group = DefineGroup('network-samples', src, depend = ['PKG_USING_NETWORK_SAMPLES'], CPPPATH = include_path)
|
|
|
|
|
|
Return('group')
|