source: anuga_work/development/anugavis/configure.ac @ 5200

Last change on this file since 5200 was 5200, checked in by jack, 16 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
4AC_PREREQ([2.56])
5AC_INIT([ANUGA OpenGL Visualiser], [alpha], [u4112456@anu.edu.au])
6AM_INIT_AUTOMAKE([-Wall -Werror foreign])
7AC_CONFIG_SRCDIR([src/anugavis.h])
8AC_CONFIG_HEADER([config.h])
9
10# Checks for programs.
11AC_PROG_CC
12
13# Checks for libraries.
14AX_CHECK_GLUT
15
16# Checks for header files.
17
18# Checks for typedefs, structures, and compiler characteristics.
19
20# Checks for library functions.
21
22AC_CONFIG_FILES([Makefile
23                 src/Makefile])
24AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.