1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/make -f
DEB_MAKE_BUILD_TARGET := all
# Also build PDF and HTML documentation if nodoc is not set
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
DEB_MAKE_BUILD_TARGET += pdf html
DEB_CONFIGURE_EXTRA_FLAGS := \
--enable-doxygen-pdf \
--enable-doxygen-html
else
DEB_CONFIGURE_EXTRA_FLAGS := \
--disable-doxygen-pdf \
--disable-doxygen-html
endif
DEB_CONFIGURE_EXTRA_FLAGS += \
--disable-werror \
--disable-internal-jimtcl \
--disable-internal-libjaylink \
\
--enable-dummy \
--enable-ep93xx \
--enable-at91rm9200 \
--enable-usbprog \
--enable-vsllink \
--enable-rlink \
--enable-ulink \
--enable-arm-jtag-ew \
--enable-buspirate \
--enable-osbdm \
--enable-opendous \
--enable-remote-bitbang \
--enable-bcm2835gpio \
--enable-sysfsgpio \
--enable-jlink \
configure_flags_parport := \
--enable-parport \
--enable-parport_ppdev
ifeq ($(DEB_HOST_ARCH_OS),linux)
# Some adapters are only supported on Linux.
DEB_CONFIGURE_EXTRA_FLAGS += $(configure_flags_parport)
DEB_CONFIGURE_EXTRA_FLAGS += --enable-gw16012 \
--enable-amtjtagaccel \
--enable-ftdi \
--enable-stlink \
--enable-ti-icdi \
$(configure_flags_parport)
endif
ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
# Parport drivers only work on Linux and kFreeBSD, conditionally add them here.
DEB_CONFIGURE_EXTRA_FLAGS += $(configure_flags_parport) \
--enable-ftdi \
--enable-stlink \
--enable-ti-icdi
endif
override_dh_auto_build:
dh_auto_build -- $(DEB_MAKE_BUILD_TARGET)
override_dh_auto_configure:
dh_auto_configure -- $(DEB_CONFIGURE_EXTRA_FLAGS)
%:
dh $@
|