Changeset 5255


Ignore:
Timestamp:
May 1, 2008, 12:56:18 PM (16 years ago)
Author:
jack
Message:

Moved anugavis code into a single directory. Aborted use of dynamic lib as it won't work on win32.

Location:
anuga_work/development/anugavis
Files:
4 edited
9 moved

Legend:

Unmodified
Added
Removed
  • anuga_work/development/anugavis/Makefile.am

    r5227 r5255  
     1## Process this file with automake to generate Makefile.in
    12ACLOCAL_AMFLAGS = -I m4
    23SUBDIRS = m4 src
  • anuga_work/development/anugavis/configure.ac

    r5228 r5255  
    1010# Checks for programs.
    1111AC_PROG_CC
    12 AC_LIBTOOL_WIN32_DLL
    13 AC_PROG_LIBTOOL
    1412
    1513# Checks for libraries.
  • anuga_work/development/anugavis/m4/Makefile.am

    r5227 r5255  
     1## Process this file with automake to generate Makefile.in
    12EXTRA_DIST = acx_pthread.m4 \
    23             ax_check_gl.m4 \
  • anuga_work/development/anugavis/src/Makefile.am

    r5217 r5255  
    1 SUBDIRS = libanugavis anugavis_simple
     1## Process this file with automake to generate Makefile.in
     2
     3# Convenience library for the core visualiser code.
     4noinst_LIBRARIES = libanugavis.a
     5libanugavis_a_SOURCES = anugavis.h \
     6                        error.c \
     7                        error.h \
     8                        globals.c \
     9                        globals.h \
     10                        height_quantity.c \
     11                        height_quantity.h \
     12                        init.c
     13
     14bin_PROGRAMS = anugavis_simple
     15anugavis_simple_SOURCES = anugavis_simple.c
     16anugavis_simple_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@
     17anugavis_simple_LDADD = @SDL_LIBS@ @GLU_LIBS@
Note: See TracChangeset for help on using the changeset viewer.