aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: b9faa945ffc99f3958b3aec7b513a86b45bf3a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AC_PREREQ(2.53)
AC_INIT(machinesetuptool, 0.1.0, http://www.yoctoproject.org/)
AM_INIT_AUTOMAKE()

AC_ISC_POSIX
AC_PROG_INSTALL

appconfdir="$sysconfdir/$PACKAGE"

AC_SUBST(sysconfdir)
AC_SUBST(appconfdir)
AC_SUBST(base_sbindir)

AC_CONFIG_FILES([
  Makefile
  setup
  config/Makefile
  scripts/Makefile
  scripts/machinesetuptool
  scripts/machine-selection-menu
])

AC_OUTPUT