public
Description: Generates ASCII tractors.
Homepage: http://www.vergenet.net/~conrad/software/tractorgen/
Clone URL: git://github.com/kfish/tractorgen.git
johnf (author)
Thu Dec 25 04:57:26 -0800 2008
commit  5eab5a0ab28618c33946b6d73ac5c871255632c4
tree    3b005d8923e647d64ec108ffef798544208d872a
parent  524284d318e98c0d17393483dc6c50798e70bb77
tractorgen / configure.in
100644 20 lines (14 sloc) 0.318 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Process this file with autoconf to produce a configure script.
 
AC_INIT(src/tractorgen.c)
AM_INIT_AUTOMAKE(tractorgen, 0.31.7)
AM_CONFIG_HEADER(config.h)
 
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
 
AC_MSG_CHECKING(that you're completely fent)
AC_MSG_RESULT(yes)
 
AC_OUTPUT([
Makefile
src/Makefile
])