-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.in
43 lines (31 loc) · 1.08 KB
/
configure.in
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
dnl $Id$
dnl Process this file with Autoconf to create configure
dnl -----------------------------------------------
dnl Initialization macros.
dnl -----------------------------------------------
AC_REVISION([0.0.0])
AC_INIT(tetris.c)
AC_CANONICAL_SYSTEM
dnl -----------------------------------------------
dnl Package name and version number (user defined).
dnl -----------------------------------------------
PACKAGE=tetris
VERSION=0.73
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
dnl -----------------------------------------------
dnl Checks for programs.
dnl -----------------------------------------------
AC_PROG_CC
AM_SANITY_CHECK
dnl -----------------------------------------------
dnl Checks for libraries.
dnl -----------------------------------------------
AC_CHECK_LIB(alleg, alleg_init)
dnl -----------------------------------------------
dnl Checks for header files.
dnl -----------------------------------------------
AC_HEADER_STDC
dnl -----------------------------------------------
dnl Generates Makefiles.
dnl -----------------------------------------------
AC_OUTPUT(Makefile)