blob: dce21a116234bba3ce11946efc25216f84f7cb8d [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001#!/usr/bin/make -f
2# MAde with the aid of dh_make, by Craig Small
3# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
4# Some lines taken from debmake, by Cristoph Lameter.
5
6# Uncomment this to turn on verbose mode.
7#export DH_VERBOSE=1
8
9# These are used for cross-compiling and for saving the configure script
10# from having to guess our platform (since we know it already)
11DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
12DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
13
14CC_NORMAL = -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
15CC_STRICT = $(CC_NORMAL) -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wwrite-strings -ansi -pedantic
16
17TARGET = i686-w64-mingw32
18MINGW_BIN = /usr/bin
19MINGW_TOP = /usr/$(TARGET)
20MINGW_TMP = $(CURDIR)/debian/mingw32-ncurses-examples
21
22CFLAGS = $(CC_NORMAL)
23
24ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
25 CFLAGS += -O0
26else
27 CFLAGS += -O2
28endif
29ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
30 INSTALL_PROGRAM += -s
31endif
32
33
34configure: configure-stamp
35configure-stamp:
36 dh_testdir
37
38 CFLAGS="$(CFLAGS)" ./configure \
39 --host=$(TARGET) \
40 --target=$(TARGET) \
41 --prefix=$(MINGW_TOP) \
42 --with-screen=ncursesw6 \
43 --with-pkg-config-libdir=/usr/$(TARGET)/lib/pkgconfig
44
45 touch configure-stamp
46
47build: build-stamp
48build-stamp: configure-stamp
49 dh_testdir
50
51 $(MAKE)
52
53 touch build-stamp
54
55clean:
56 dh_testdir
57 dh_testroot
58
59 [ ! -f makefile ] || $(MAKE) distclean
60
61 rm -f configure-stamp build-stamp install-stamp
62
63 dh_clean
64
65install: install-stamp
66install-stamp: build-stamp
67 dh_testdir
68 dh_testroot
69 dh_clean -k
70 dh_installdirs
71
72 $(MAKE) install DESTDIR=$(MINGW_TMP)
73
74 touch install-stamp
75
76# Build architecture-independent files here.
77binary-indep: build install
78# No binary-indep target.
79
80# Build architecture-dependent files here.
81binary-arch: build install
82 dh_testdir
83 dh_testroot
84 dh_installdocs
85 dh_installexamples
86 dh_installchangelogs NEWS
87 dh_strip
88 dh_compress
89 dh_fixperms
90 dh_installdeb
91 dh_shlibdeps
92 dh_gencontrol
93 dh_md5sums
94 dh_builddeb
95
96binary: binary-indep binary-arch
97.PHONY: build clean binary-indep binary-arch binary install install-stamp