File: configure.ac

package info (click to toggle)
ggobi 2.1.10-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,080 kB
  • sloc: ansic: 53,256; xml: 28,411; sh: 11,700; makefile: 257; sed: 16
file content (32 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (6)
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
# This is the canonical configure.ac for plugins.

# First, check our autoconf version
AC_PREREQ(2.59)

# Init autoconf
AC_INIT([DataViewer], 0.1, lawremi@iastate.edu)

# Point autoconf to a particular source file.
AC_CONFIG_SRCDIR([dataviewer.c])

# Put all the extra scripts and stuff in the current directory
AC_CONFIG_AUX_DIR([.])

# Generate config.h
AC_CONFIG_HEADER([config.h])

# Initialize automake
AM_INIT_AUTOMAKE

# Use the custom GGobi macro for configuring the plugin. This provides 
# GGOBI_CFLAGS, GGOBI_LIBS, and SRC_DEBUG variables.
# We ensure that we look in the grandparent directory
# (since this plugin is bundled with GGobi)
GGOBI_CONFIG_PLUGIN([../..])

# Put this here to make autoreconf happy
AC_PROG_LIBTOOL

# Finally, output the configuration
AC_CONFIG_FILES([Makefile])
AC_OUTPUT