Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: client/tests/signaltest/src/Makefile

Issue 6539001: Merge remote branch 'cros/upstream' into master. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/rmaptest/rmaptest.py ('k') | client/tests/tiobench/tiobench.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/signaltest/src/Makefile
diff --git a/client/tests/signaltest/src/Makefile b/client/tests/signaltest/src/Makefile
index c91b72f1162c87ffa83345d845f0f1d253bdaf38..da81b33cacbd40604aad4e4dcf0bee52c86c4912 100644
--- a/client/tests/signaltest/src/Makefile
+++ b/client/tests/signaltest/src/Makefile
@@ -1,11 +1,10 @@
-
-TARGET=signaltest
-FLAGS= -Wall -O2
+CC ?= $(CROSS_COMPILE)gcc
+TARGET = signaltest
+FLAGS = -Wall -O2
LIBS = -lpthread -lrt
all: signaltest.c
- $(CROSS_COMPILE)gcc $(FLAGS) $^ -o $(TARGET) $(LIBS)
+ $(CC) $(FLAGS) $^ -o $(TARGET) $(LIBS)
clean:
rm -f $(TARGET) *.o .depend *.*~
-
« no previous file with comments | « client/tests/rmaptest/rmaptest.py ('k') | client/tests/tiobench/tiobench.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698