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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Makefile for monitor_reconfigure 1 # Makefile for monitor_reconfigure
2 ####################################################### 2 #######################################################
3 CXX=/usr/bin/g++ 3 CXX ?= /usr/bin/g++
4 CC=/usr/bin/gcc 4 CC ?= /usr/bin/gcc
5 CPPFLAGS=-I../.. 5 CPPFLAGS += -I../..
6 CFLAGS=-Wall -g -O2 6 CFLAGS += -Wall -g -O2
7 CXXFLAGS=$(CFLAGS) 7 CXXFLAGS=$(CFLAGS)
8 LDFLAGS=-lX11 -lXrandr 8 LDFLAGS += -lX11 -lXrandr
9 ####################################################### 9 #######################################################
10 10
11 NAME=monitor_reconfigure 11 NAME=monitor_reconfigure
12 VERSION=0.1 12 VERSION=0.1
13 13
14 CPPFLAGS+=-DPACKAGE=\"$(NAME)\" -DVERSION=\"$(VERSION)\" 14 CPPFLAGS+=-DPACKAGE=\"$(NAME)\" -DVERSION=\"$(VERSION)\"
15 15
16 OBJECTS=monitor_reconfigure_main.o 16 OBJECTS=monitor_reconfigure_main.o
17 17
18 all: monitor_reconfigure 18 all: monitor_reconfigure
19 19
20 monitor_reconfigure: $(OBJECTS) 20 monitor_reconfigure: $(OBJECTS)
21 $(CXX) $(LDFLAGS) $^ -o $@ 21 $(CXX) $(LDFLAGS) $^ -o $@
22 22
23 install: monitor_reconfigure 23 install: monitor_reconfigure
24 install -D -m 755 monitor_reconfigure $(DESTDIR)/usr/sbin/monitor_reconf igure 24 install -D -m 755 monitor_reconfigure $(DESTDIR)/usr/sbin/monitor_reconf igure
25 25
26 clean: 26 clean:
27 @rm -f monitor_reconfigure *.o 27 @rm -f monitor_reconfigure *.o
OLDNEW
« 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