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 # The number of jobs to pass to tools that can run in parallel (such as make | 10 # The number of jobs to pass to tools that can run in parallel (such as make |
(...skipping 11 matching lines...) Expand all Loading... |
22 dh_testroot | 22 dh_testroot |
23 rm -f build-stamp | 23 rm -f build-stamp |
24 scons -c | 24 scons -c |
25 dh_clean | 25 dh_clean |
26 | 26 |
27 install: build | 27 install: build |
28 dh_testdir | 28 dh_testdir |
29 dh_testroot | 29 dh_testroot |
30 dh_prep | 30 dh_prep |
31 dh_installdirs | 31 dh_installdirs |
32 » cp $(CURDIR)/libchromeos_microbenchmark_main.a $(CURDIR)/debian/chromeo
s-microbenchmark/usr/lib/libchromeos_microbenchmark_main.a | 32 » cp $(CURDIR)/libmicrobenchmark_main.a $(CURDIR)/debian/chromeos-microbe
nchmark/usr/lib/libmicrobenchmark_main.a |
33 cp $(CURDIR)/microbenchmark.h $(CURDIR)/debian/chromeos-microbenchmark/
usr/include/microbenchmark/microbenchmark.h | 33 cp $(CURDIR)/microbenchmark.h $(CURDIR)/debian/chromeos-microbenchmark/
usr/include/microbenchmark/microbenchmark.h |
34 | 34 |
35 # Build architecture-dependent files here. | 35 # Build architecture-dependent files here. |
36 binary-arch: install | 36 binary-arch: install |
37 dh_testdir | 37 dh_testdir |
38 dh_testroot | 38 dh_testroot |
39 dh_link | 39 dh_link |
40 dh_strip | 40 dh_strip |
41 dh_compress | 41 dh_compress |
42 dh_fixperms | 42 dh_fixperms |
43 dh_installdeb | 43 dh_installdeb |
44 dh_shlibdeps | 44 dh_shlibdeps |
45 dh_gencontrol | 45 dh_gencontrol |
46 dh_md5sums | 46 dh_md5sums |
47 dh_builddeb | 47 dh_builddeb |
48 | 48 |
49 binary: binary-arch | 49 binary: binary-arch |
50 | 50 |
51 .PHONY: build clean install binary-arch binary | 51 .PHONY: build clean install binary-arch binary |
OLD | NEW |