| Index: native_client_sdk/src/resources/Makefile.example.template
|
| diff --git a/native_client_sdk/src/resources/Makefile.example.template b/native_client_sdk/src/resources/Makefile.example.template
|
| index ca1605fd2e39915836f4489ee16326f3dfd33f05..3d6ceb02036addf00b757ebb875a51ebd3995474 100644
|
| --- a/native_client_sdk/src/resources/Makefile.example.template
|
| +++ b/native_client_sdk/src/resources/Makefile.example.template
|
| @@ -47,18 +47,8 @@ CHROME_ARGS += --allow-nacl-socket-api=localhost
|
| [[]]
|
|
|
| TARGET = {{targets[0]['NAME']}}
|
| -[[if sel_ldr and targets[0].get('SEL_LDR_LIBS'):]]
|
| -ifdef SEL_LDR
|
| -[[ ExpandDict('DEPS', targets[0].get('SEL_LDR_DEPS', []))]]
|
| -[[ ExpandDict('LIBS', targets[0].get('SEL_LDR_LIBS', []))]]
|
| -else
|
| -[[ ExpandDict('DEPS', targets[0].get('DEPS', []))]]
|
| -[[ ExpandDict('LIBS', targets[0].get('LIBS', []))]]
|
| -endif
|
| -[[else:]]
|
| -[[ ExpandDict('DEPS', targets[0].get('DEPS', []))]]
|
| -[[ ExpandDict('LIBS', targets[0].get('LIBS', []))]]
|
| -[[]]
|
| +[[ExpandDict('DEPS', targets[0].get('DEPS', []))]]
|
| +[[ExpandDict('LIBS', targets[0].get('LIBS', []))]]
|
|
|
| [[for target in targets:]]
|
| [[ source_list = (s for s in sorted(target['SOURCES']) if not s.endswith('.h'))]]
|
|
|