2011-12-19 01:58:42 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
2015-01-09 07:50:42 +01:00
|
|
|
#export DH_VERBOSE=1
|
2011-12-19 01:58:42 +01:00
|
|
|
|
|
|
|
# This has to be exported to make some magic below work.
|
2015-01-09 07:50:42 +01:00
|
|
|
export DH_OPTIONS
|
2011-12-19 01:58:42 +01:00
|
|
|
|
2015-01-09 07:50:42 +01:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
2016-03-30 23:01:29 +02:00
|
|
|
override_dh_auto_configure:
|
2016-08-14 13:00:31 +02:00
|
|
|
$(MAKE) config_new GCS_WITH_OSGEARTH=1 WITH_PREBUILT_FW=$(CURDIR)/firmware
|
2016-03-30 23:01:29 +02:00
|
|
|
|
2015-01-09 07:50:42 +01:00
|
|
|
override_dh_auto_build:
|
2016-03-30 23:01:29 +02:00
|
|
|
dh_auto_build -- opfw_resource gcs
|
2015-01-09 07:50:42 +01:00
|
|
|
|
|
|
|
override_dh_auto_install:
|
2015-01-09 22:53:07 +01:00
|
|
|
dh_auto_install -- prefix=/usr
|