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

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

basedir := $(shell pwd)

override_dh_auto_test:
	# do nothing

override_dh_auto_configure:
	# do nothing

override_dh_auto_clean:
	# do nothin

override_dh_auto_build:
	perl Makefile.PL --source $(CURDIR)/usr/sap/nwrfcsdk
	$(MAKE)

override_dh_usrlocal:
	# do nothing

override_dh_installdocs:
	# do nothing

%:
	dh $@  --with autotools-dev
