chiark / gitweb /
add missing ignore
[subdirmk.git] / configure.ac
1 dnl -*-autoconf-*-
2 dnl
3 dnl Configuration script for toy project
4 dnl
5 dnl (c) 2019 Mark Wooding
6 dnl
7
8 dnl----- Licensing notice ---------------------------------------------------
9 dnl
10 dnl This program is free software; you can redistribute it and/or modify
11 dnl it under the terms of the GNU Library General Public License as
12 dnl published by the Free Software Foundation; either version 2 of the
13 dnl License, or (at your option) any later version.
14 dnl
15 dnl This program is distributed in the hope that it will be useful,
16 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
17 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 dnl GNU Library General Public License for more details.
19 dnl
20 dnl You should have received a copy of the GNU Library General Public
21 dnl License along with this program; if not, write to the Free
22 dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 dnl MA 02111-1307, USA.
24
25 AC_INIT([mktoy], [0.9.0], [mdw@distorted.org.uk])
26 AC_CONFIG_SRCDIR([src/toy.c])
27 AC_CONFIG_AUX_DIR([build-aux])
28
29 AC_PROG_INSTALL
30
31 AC_PROG_CC
32 INCLUDES=
33 AC_SUBST(INCLUDES)
34
35 m4_include([subdirmk/subdirmk.ac])
36
37 SUBDIRMK_SUBDIRS([lib])
38 SUBDIRMK_SUBDIRS([lib/t src])
39
40 AC_OUTPUT
41
42 dnl----- That's all, folks --------------------------------------------------