git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1054 0109f412-320b-0410-ab79-c3e0c5ffbbe6
81 lines
1.7 KiB
Makefile
81 lines
1.7 KiB
Makefile
#!/usr/bin/make -f
|
|
|
|
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
OSTYPE ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)
|
|
HOSTTYPE ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU)
|
|
CFLAGS = -Wall -g
|
|
PLAT64BIT = no
|
|
|
|
ifeq (sparc,$(HOSTTYPE))
|
|
PLAT64BIT = yes
|
|
endif
|
|
|
|
ifeq (amd64,$(HOSTTYPE))
|
|
PLAT64BIT = yes
|
|
endif
|
|
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
CFLAGS += -O0
|
|
else
|
|
CFLAGS += -O2
|
|
endif
|
|
|
|
configure: configure-stamp
|
|
configure-stamp:
|
|
dh_testdir
|
|
touch configure-stamp
|
|
|
|
|
|
build: build-stamp
|
|
build-stamp: configure-stamp
|
|
dh_testdir
|
|
$(MAKE) OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
ifeq ($(PLAT64BIT),yes)
|
|
$(MAKE) 32bit OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
endif
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp configure-stamp
|
|
$(MAKE) clean OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
ifeq ($(PLAT64BIT),yes)
|
|
$(MAKE) 32bit clean OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
endif
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
ifeq ($(PLAT64BIT),yes)
|
|
$(MAKE) 32bit install DESTDIR=$(CURDIR)/debian/tmp OSTYPE=$(OSTYPE) HOSTTYPE=$(HOSTTYPE) -j 2
|
|
endif
|
|
|
|
binary-indep: build install
|
|
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
dh_installdocs
|
|
dh_installexamples
|
|
dh_install --sourcedir=$(CURDIR)/debian/tmp
|
|
dh_installman
|
|
dh_link
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|