source: anuga_work/development/anugavis/src/Makefile.am @ 5378

Last change on this file since 5378 was 5378, checked in by jack, 15 years ago

Inlined vector.h functions for performance.

File size: 1.0 KB
Line 
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 = camera.c \
6                        camera.h \
7                        error.c \
8                        error.h \
9                        events.c \
10                        events.h \
11                        globals.c \
12                        globals.h \
13                        height_quantity.c \
14                        height_quantity.h \
15                        init.c \
16                        init.h \
17                        netcdf_util.c \
18                        netcdf_util.h \
19                        vector.c \
20                        xfunctions.c \
21                        xfunctions.h
22libanugavis_a_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@
23libanugavis_a_LIBADD = @LIBOBJS@
24
25bin_PROGRAMS = anugavis_simple
26anugavis_simple_SOURCES = anugavis_simple.c
27anugavis_simple_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@
28anugavis_simple_LDADD = libanugavis.a -lm @SDL_LIBS@ @GLU_LIBS@
Note: See TracBrowser for help on using the repository browser.