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

Side by Side Diff: gnu.mk

Issue 6850001: Changes to kplot for ebuild (Closed) Base URL: ssh://gitrw.chromium.org:9222/ktop.git@master
Patch Set: Changes preparing ktop for ebuild. Created 9 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Makefile ('k') | plot.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 #
6 # GNU's Makefile Conventions
7 #
8
9 SHELL = /bin/sh
10
11 prefix = /usr/local
12 exec_prefix = $(prefix)
13 bindir = $(exec_prefix)/bin/
14 sbindir = $(exec_prefix)/sbin/
15 libexecdir = $(exec_prefix)/libexec/
16
17 datarootdir = $(prefix)/share/
18 datadir = $(datarootdir)
19 sysconfdir = $(prefix)/etc/
20 sharedstartdir = $(prefix)/com/
21 localstatedir = $(prefix)/var/
22
23 includedir = $(prefix)/incluide/
24 oldincludedir = /usr/include/
25
26 docdir = $(datarootdir)/doc/$(package)/
27 infodir = $(datarootdir)/info/
28 htmldir = $(docdir)/
29 dvidir = $(docdir)/
30 pdfdir = $(docdir)/
31 psdir = $(docdir)/
32
33 libdir = $(exec_prefix)/lib/
34 lispdir = $(datarootdir)/emacs/site-listp/
35 localdir = $(datarootdir)/locale/
36 mandir = $(datarootdir)/man/
37 man1dir = $(datarootdir)/man1/
38 man2dir = $(datarootdir)/man2/
39 man3dir = $(datarootdir)/man3/
40
41 srcdir = $(PWD)/
OLDNEW
« no previous file with comments | « Makefile ('k') | plot.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698