-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
27 lines (20 loc) · 840 Bytes
/
configure.ac
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([kernel-farm], [0.1], [[email protected]])
AC_CONFIG_SRCDIR([farm-config.in])
AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_INSTALL
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile kernel-patches/Makefile])
AC_CONFIG_FILES([farm-checkout], [chmod +x farm-checkout])
AC_CONFIG_FILES([farm-clean], [chmod +x farm-clean])
AC_CONFIG_FILES([farm-compile], [chmod +x farm-compile])
AC_CONFIG_FILES([farm-config], [chmod +x farm-config])
AC_CONFIG_FILES([farm-hardlink], [chmod +x farm-hardlink])
AC_CONFIG_FILES([farm-patch], [chmod +x farm-patch])
AC_OUTPUT