| OLD | NEW |
| 1 #!/usr/bin/make -f | 1 #!/usr/bin/make -f |
| 2 # -*- makefile -*- | 2 # -*- makefile -*- |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # Uncomment this to turn on verbose mode. | 7 # Uncomment this to turn on verbose mode. |
| 8 #export DH_VERBOSE=1 | 8 #export DH_VERBOSE=1 |
| 9 | 9 |
| 10 build: build-stamp | 10 build: build-stamp |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 $(CURDIR)/ntp.conf \ | 40 $(CURDIR)/ntp.conf \ |
| 41 $(CURDIR)/preload-chrome.conf \ | 41 $(CURDIR)/preload-chrome.conf \ |
| 42 $(CURDIR)/procps.conf \ | 42 $(CURDIR)/procps.conf \ |
| 43 $(CURDIR)/reboot.conf \ | 43 $(CURDIR)/reboot.conf \ |
| 44 $(CURDIR)/software-update.conf \ | 44 $(CURDIR)/software-update.conf \ |
| 45 $(CURDIR)/startup.conf \ | 45 $(CURDIR)/startup.conf \ |
| 46 $(CURDIR)/syslog.conf \ | 46 $(CURDIR)/syslog.conf \ |
| 47 $(CURDIR)/udev.conf \ | 47 $(CURDIR)/udev.conf \ |
| 48 $(CURDIR)/ui.conf \ | 48 $(CURDIR)/ui.conf \ |
| 49 $(CURDIR)/wpasupplicant.conf \ | 49 $(CURDIR)/wpasupplicant.conf \ |
| 50 $(CURDIR)/metrics_daemon.conf \ |
| 50 $(CURDIR)/debian/chromeos-init/etc/init.chromeos/ | 51 $(CURDIR)/debian/chromeos-init/etc/init.chromeos/ |
| 51 | 52 |
| 52 # Build architecture-independent files here. | 53 # Build architecture-independent files here. |
| 53 binary-indep: install | 54 binary-indep: install |
| 54 dh_testdir | 55 dh_testdir |
| 55 dh_testroot | 56 dh_testroot |
| 56 dh_link | 57 dh_link |
| 57 dh_strip | 58 dh_strip |
| 58 dh_compress | 59 dh_compress |
| 59 dh_fixperms | 60 dh_fixperms |
| 60 dh_installdeb | 61 dh_installdeb |
| 61 dh_shlibdeps | 62 dh_shlibdeps |
| 62 dh_gencontrol | 63 dh_gencontrol |
| 63 dh_md5sums | 64 dh_md5sums |
| 64 dh_builddeb | 65 dh_builddeb |
| 65 | 66 |
| 66 binary: binary-indep | 67 binary: binary-indep |
| 67 | 68 |
| 68 .PHONY: build clean install binary-indep binary | 69 .PHONY: build clean install binary-indep binary |
| OLD | NEW |