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

Unified Diff: client/tests/signaltest/Makefile

Issue 6551020: Merge remote branch 'autotest-upstream/master' into try-box1 (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/makefile.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/signaltest/Makefile
diff --git a/client/tests/signaltest/Makefile b/client/tests/signaltest/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..6431b25d34a280c32b112478d7ad9695dcdb2df5
--- /dev/null
+++ b/client/tests/signaltest/Makefile
@@ -0,0 +1,12 @@
+
+CC ?= $(CROSS_COMPILE)gcc
+TARGET=signaltest
+FLAGS= -Wall -O2
+LIBS = -lpthread -lrt
+
+all: signaltest.c
+ $(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/makefile.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698