| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 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 | 3 # Use of this source code is governed by a BSD-style license that |
| 4 # found in the LICENSE file. | 4 # can be found in the LICENSE file. |
| 5 # | 5 # |
| 6 # GNU's Makefile Conventions | 6 # GNU's Makefile Conventions |
| 7 # | 7 # |
| 8 | 8 |
| 9 SHELL = /bin/sh | 9 SHELL = /bin/sh |
| 10 | 10 |
| 11 prefix = /usr/local | 11 prefix = /usr/local |
| 12 exec_prefix = $(prefix) | 12 exec_prefix = $(prefix) |
| 13 bindir = $(exec_prefix)/bin/ | 13 bindir = $(exec_prefix)/bin/ |
| 14 sbindir = $(exec_prefix)/sbin/ | 14 sbindir = $(exec_prefix)/sbin/ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 libdir = $(exec_prefix)/lib/ | 33 libdir = $(exec_prefix)/lib/ |
| 34 lispdir = $(datarootdir)/emacs/site-listp/ | 34 lispdir = $(datarootdir)/emacs/site-listp/ |
| 35 localdir = $(datarootdir)/locale/ | 35 localdir = $(datarootdir)/locale/ |
| 36 mandir = $(datarootdir)/man/ | 36 mandir = $(datarootdir)/man/ |
| 37 man1dir = $(datarootdir)/man1/ | 37 man1dir = $(datarootdir)/man1/ |
| 38 man2dir = $(datarootdir)/man2/ | 38 man2dir = $(datarootdir)/man2/ |
| 39 man3dir = $(datarootdir)/man3/ | 39 man3dir = $(datarootdir)/man3/ |
| 40 | 40 |
| 41 srcdir = $(PWD)/ | 41 srcdir = $(PWD)/ |
| OLD | NEW |