1
0
mirror of git://projects.qi-hardware.com/iris.git synced 2024-11-17 00:18:06 +02:00
iris/configure.ac

11 lines
440 B
Plaintext
Raw Permalink Normal View History

2012-09-26 20:03:36 +03:00
AC_INIT([iris], [0.2], [wijnen@debian.org])
2015-11-19 08:06:57 +02:00
AM_INIT_AUTOMAKE
2012-09-26 20:03:36 +03:00
AC_PROG_CXX
AM_PROG_AS
AC_ARG_ENABLE([udc-boot], AC_HELP_STRING([--enable-udc-boot], [Compile for booting over custom usb protocol]), AM_CONDITIONAL(UDC, true), AM_CONDITIONAL(UDC, false))
AC_ARG_ENABLE([unbrick], AC_HELP_STRING([--enable-unbrick], [Compile for unbricking]), AM_CONDITIONAL(UNBRICK, true), AM_CONDITIONAL(UNBRICK, false))
AC_CONFIG_FILES([Makefile])
AC_OUTPUT