Last change
on this file since 5200 was
5200,
checked in by jack, 15 years ago
|
Some useful autoconf macros and basic structure.
|
File size:
592 bytes
|
Line | |
---|
1 | # -*- Autoconf -*- |
---|
2 | # Process this file with autoconf to produce a configure script. |
---|
3 | |
---|
4 | AC_PREREQ([2.56]) |
---|
5 | AC_INIT([ANUGA OpenGL Visualiser], [alpha], [u4112456@anu.edu.au]) |
---|
6 | AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
---|
7 | AC_CONFIG_SRCDIR([src/anugavis.h]) |
---|
8 | AC_CONFIG_HEADER([config.h]) |
---|
9 | |
---|
10 | # Checks for programs. |
---|
11 | AC_PROG_CC |
---|
12 | |
---|
13 | # Checks for libraries. |
---|
14 | AX_CHECK_GLUT |
---|
15 | |
---|
16 | # Checks for header files. |
---|
17 | |
---|
18 | # Checks for typedefs, structures, and compiler characteristics. |
---|
19 | |
---|
20 | # Checks for library functions. |
---|
21 | |
---|
22 | AC_CONFIG_FILES([Makefile |
---|
23 | src/Makefile]) |
---|
24 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.