summaryrefslogtreecommitdiff
path: root/configure.ac
blob: dbae4ba98e0adc83f72cc0b63ab1efe8570089f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
AC_INIT(taler-demo-landing-page, 0.1, mee@taler.net)
AM_INIT_AUTOMAKE
# check for typescript compiler
AC_CHECK_PROG([tsc],[tsc],[yes],[no])
AM_CONDITIONAL(HAVE_TSC, [ test "$tsc" = "yes"])
AC_CONFIG_FILES([
    Makefile
    demo/Makefile
    demo/static/Makefile
    demo/static/web-common/Makefile
    demo/static/web-common/css/Makefile
    demo/static/web-common/js/Makefile
])
AC_OUTPUT