| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This Makefile is used by debhelper, which supplies the appropriate value of | 5 # This Makefile is used by debhelper, which supplies the appropriate value of |
| 6 # variables not defined here, such as DESTDIR. | 6 # variables not defined here, such as DESTDIR. |
| 7 | 7 |
| 8 SRC_DIR = ../../../.. | 8 SRC_DIR = ../../../.. |
| 9 BUILD_DIR = $(SRC_DIR)/out/Release | 9 ifndef BUILD_DIR |
| 10 BUILD_DIR = $(SRC_DIR)/out/Release |
| 11 endif |
| 10 | 12 |
| 11 CRON_DIR = $(DESTDIR)/etc/cron.daily | 13 CRON_DIR = $(DESTDIR)/etc/cron.daily |
| 12 DOC_DIR = $(DESTDIR)/usr/share/doc/chrome-remote-desktop | 14 DOC_DIR = $(DESTDIR)/usr/share/doc/chrome-remote-desktop |
| 13 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop | 15 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop |
| 14 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts | 16 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts |
| 15 | 17 |
| 16 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host | 18 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host |
| 17 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug | 19 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug |
| 18 START_PROGNAME = $(BUILD_DIR)/remoting_start_host | 20 START_PROGNAME = $(BUILD_DIR)/remoting_start_host |
| 19 START_DEBUGFILE = $(START_PROGNAME).debug | 21 START_DEBUGFILE = $(START_PROGNAME).debug |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \ | 67 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \ |
| 66 install "$(BUILD_DIR)/remoting_locales/$$locale" \ | 68 install "$(BUILD_DIR)/remoting_locales/$$locale" \ |
| 67 "$(INSTALL_DIR)/remoting_locales/$$locale"; \ | 69 "$(INSTALL_DIR)/remoting_locales/$$locale"; \ |
| 68 done | 70 done |
| 69 | 71 |
| 70 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \ | 72 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \ |
| 71 "$(CRON_DIR)/chrome-remote-desktop" | 73 "$(CRON_DIR)/chrome-remote-desktop" |
| 72 | 74 |
| 73 install -m 0644 \ | 75 install -m 0644 \ |
| 74 "$(BUILD_DIR)/gen/remoting/CREDITS.txt" "$(DOC_DIR)/CREDITS.txt" | 76 "$(BUILD_DIR)/gen/remoting/CREDITS.txt" "$(DOC_DIR)/CREDITS.txt" |
| OLD | NEW |