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

Unified Diff: src/platform/monitor_reconfig/Makefile

Issue 551164: ARM build: change monitor_reconfigure Makefile variable defs. (Closed)
Patch Set: Created 10 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/monitor_reconfig/Makefile
diff --git a/src/platform/monitor_reconfig/Makefile b/src/platform/monitor_reconfig/Makefile
index 29db9202f643acd0908959da9666eae38ee26f08..81bc3221b144657c338390ce3c0139ddb2db6953 100644
--- a/src/platform/monitor_reconfig/Makefile
+++ b/src/platform/monitor_reconfig/Makefile
@@ -1,11 +1,11 @@
# Makefile for monitor_reconfigure
#######################################################
-CXX=/usr/bin/g++
-CC=/usr/bin/gcc
-CPPFLAGS=-I../..
-CFLAGS=-Wall -g -O2
+CXX ?= /usr/bin/g++
+CC ?= /usr/bin/gcc
+CPPFLAGS += -I../..
+CFLAGS += -Wall -g -O2
CXXFLAGS=$(CFLAGS)
-LDFLAGS=-lX11 -lXrandr
+LDFLAGS += -lX11 -lXrandr
#######################################################
NAME=monitor_reconfigure
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698