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

Side by Side Diff: src/platform/metrics_collection/Makefile

Issue 465131: Changes to include metrics collection package in system and no-op script customizable by overlay (Closed)
Patch Set: Created 11 years 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 | « src/package_repo/package-list-prod.txt ('k') | src/platform/metrics_collection/debian/dirs » ('j') | 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 metrics client and library 1 # Makefile for metrics client and library
2 ####################################################### 2 #######################################################
3 CXX=/usr/bin/g++ 3 CXX=/usr/bin/g++
4 CC=/usr/bin/gcc 4 CC=/usr/bin/gcc
5 CFLAGS=-Wall -I/usr/include -I../../ 5 CFLAGS=-Wall -I/usr/include -I../../
6 CXXFLAGS=$(CFLAGS) 6 CXXFLAGS=$(CFLAGS)
7 ####################################################### 7 #######################################################
8 8
9 CLIENT=metrics_client 9 CLIENT=metrics_client
10 LIBRARY=metrics_library 10 LIBRARY=metrics_library
(...skipping 11 matching lines...) Expand all
22 $(CXX) $(LDFLAGS) $(CLIENT_OBJECTS) libmetrics.a -o $(CLIENT) 22 $(CXX) $(LDFLAGS) $(CLIENT_OBJECTS) libmetrics.a -o $(CLIENT)
23 23
24 metrics_library: $(LIBRARY_OBJECTS) 24 metrics_library: $(LIBRARY_OBJECTS)
25 ar rcs libmetrics.a $(LIBRARY_OBJECTS) 25 ar rcs libmetrics.a $(LIBRARY_OBJECTS)
26 26
27 .cc.o: 27 .cc.o:
28 $(CXX) $(CXXFLAGS) $(DEFINES) -c $< -o $@ 28 $(CXX) $(CXXFLAGS) $(DEFINES) -c $< -o $@
29 29
30 install: 30 install:
31 install $(CLIENT) $(DESTDIR)/usr/bin 31 install $(CLIENT) $(DESTDIR)/usr/bin
32 install omaha_tracker.sh $(DESTDIR)/usr/sbin
32 33
33 clean: 34 clean:
34 @rm -f $(CLIENT) *.o *.a 35 @rm -f $(CLIENT) *.o *.a
OLDNEW
« no previous file with comments | « src/package_repo/package-list-prod.txt ('k') | src/platform/metrics_collection/debian/dirs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698