Index: native_client_sdk/src/examples/trace_events/Makefile |
diff --git a/native_client_sdk/src/examples/hello_world_interactive/Makefile b/native_client_sdk/src/examples/trace_events/Makefile |
similarity index 90% |
copy from native_client_sdk/src/examples/hello_world_interactive/Makefile |
copy to native_client_sdk/src/examples/trace_events/Makefile |
index cbf342e548252c22fd897ada289e9e50b81bb693..ec8883e0fb77a4c37220c4c59f0933c374b7982e 100644 |
--- a/native_client_sdk/src/examples/hello_world_interactive/Makefile |
+++ b/native_client_sdk/src/examples/trace_events/Makefile |
@@ -1,4 +1,4 @@ |
-# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+# Copyright (c) 2013 The Chromium Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
@@ -35,12 +35,12 @@ include $(NACL_SDK_ROOT)/tools/common.mk |
# The base name of the final NEXE, also the name of the NMF file containing |
# the mapping between architecture and actual NEXE. |
# |
-TARGET=hello_world_interactive |
+TARGET=trace_events |
# |
# List of sources to compile |
# |
-SOURCES=hello_world.cc helper_functions.cc |
+SOURCES=trace_events.cc |
# |
@@ -48,7 +48,7 @@ SOURCES=hello_world.cc helper_functions.cc |
# based tools require libraries to be specified in the correct order. The |
# order should be symbol reference followed by symbol definition, with direct |
# sources to the link (object files) are left most. In this case: |
-# hello_world -> ppapi_main -> ppapi_cpp -> ppapi -> pthread -> libc |
+# trace_events -> ppapi_main -> ppapi_cpp -> ppapi -> pthread -> libc |
# Notice that libc is implied and come last through standard compiler/link |
# switches. |
# |