|
Revision 10661, 0.9 kB
(checked in by ecanuto, 2 years ago)
|
Initial Mono bindings import
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
configure: configure-stamp |
|---|
| 10 |
configure-stamp: |
|---|
| 11 |
dh_testdir |
|---|
| 12 |
./configure --prefix=/usr |
|---|
| 13 |
touch configure-stamp |
|---|
| 14 |
|
|---|
| 15 |
build: build-stamp |
|---|
| 16 |
build-stamp: configure-stamp |
|---|
| 17 |
dh_testdir |
|---|
| 18 |
$(MAKE) |
|---|
| 19 |
touch build-stamp |
|---|
| 20 |
|
|---|
| 21 |
clean: |
|---|
| 22 |
dh_testdir |
|---|
| 23 |
dh_testroot |
|---|
| 24 |
rm -f build-stamp configure-stamp |
|---|
| 25 |
-$(MAKE) clean |
|---|
| 26 |
dh_clean |
|---|
| 27 |
|
|---|
| 28 |
install: build |
|---|
| 29 |
dh_testdir |
|---|
| 30 |
dh_testroot |
|---|
| 31 |
dh_clean -k |
|---|
| 32 |
dh_installdirs |
|---|
| 33 |
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp |
|---|
| 34 |
|
|---|
| 35 |
binary-arch: build install |
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
binary-indep: build install |
|---|
| 39 |
dh_testdir |
|---|
| 40 |
dh_testroot |
|---|
| 41 |
dh_install |
|---|
| 42 |
dh_compress |
|---|
| 43 |
dh_fixperms |
|---|
| 44 |
dh_installdeb |
|---|
| 45 |
dh_shlibdeps |
|---|
| 46 |
dh_gencontrol |
|---|
| 47 |
dh_md5sums |
|---|
| 48 |
dh_builddeb |
|---|
| 49 |
|
|---|
| 50 |
binary: binary-indep binary-arch |
|---|
| 51 |
.PHONY: build clean binary-indep binary-arch binary install configure |
|---|