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

Last change on this file since 5339 was 5292, checked in by jack, 17 years ago

anugavis: Some basic camera control and frame stepping.

File size: 1.1 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                        vector.h \
21                        xfunctions.c \
22                        xfunctions.h
23libanugavis_a_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@
24libanugavis_a_LIBADD = @LIBOBJS@
25
26bin_PROGRAMS = anugavis_simple
27anugavis_simple_SOURCES = anugavis_simple.c
28anugavis_simple_CFLAGS = @SDL_CFLAGS@ @GLU_CFLAGS@
29anugavis_simple_LDADD = libanugavis.a -lm @SDL_LIBS@ @GLU_LIBS@
Note: See TracBrowser for help on using the repository browser.