#!/usr/bin/make -f
# -*- makefile -*-

include /usr/share/cdbs/1/class/octave-pkg.mk

export CFLAGS = $(shell dpkg-buildflags  --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS)

ifeq ($(dpkg-architecture -qDEB_BUILD_ARCH),mips64el)
DEB_BUILD_OPTIONS = nocheck
endif

# The following rule is needed because an empty lib/ directory is
# needed for building the package correctly.  Even though there is one
# in the tarball, it is not created by gbp-import-orig, hence the
# mkdir command below.
pre-build::
	mkdir -p lib

# Build the blockproc.jar file, which is deleted from the upstream
# tarball and clean up the generated *.class files
build/octave-ltfat-common::
	$(MAKE) -C inst/blockproc/java
	find inst/blockproc/java -name \*.class | xargs rm -f

# Clean the generated .jar file
clean::
	rm -f inst/blockproc/java/blockproc.jar

# Install the architecture independent files
octdir = debian/octave-ltfat-common/usr/share/
install/octave-ltfat-common:: install/octave-ltfat

install/octave-ltfat::
	mkdir -p $(octdir)
	mv debian/octave-ltfat/usr/share/octave $(octdir)

install/octave-ltfat-common::
	# Remove the extra license file (Lintian warning)
	@echo "*******************************************************"
	@echo "Warning: check whether this fix is still needed:"
	find debian/octave-ltfat-common/ -name COPYING -exec rm \{} \;
	@echo "*******************************************************"

get-orig-source:
	uscan --verbose --force-download --repack --compression=xz
