blob: 97b43e1f334153e96fe8dd5e93770149903a0ce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
AC_INIT([lightdm-remote-session-uccsconfigure], [0.0.1])
AM_INIT_AUTOMAKE([1.11 -Wno-portability])
AM_SILENT_RULES([yes])
###########################
# Local Install
###########################
with_localinstall="no"
AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall],
[install all files locally (for distcheck)]),
with_localinstall=$enableval,
with_localinstall=no)
AC_CONFIG_FILES([
Makefile
])
AC_OUTPUT
|