## Process this file with automake to generate Makefile.in AM_CFLAGS = $(SDL_CFLAGS) $(GLU_CFLAGS) AM_CXXFLAGS = $(SDL_CFLAGS) $(GLU_CFLAGS) # Convenience library for the core visualiser code. noinst_LIBRARIES = libanugavis.a libanugavis_cxx.a libanugavis_a_SOURCES = camera.c \ camera.h \ error.c \ error.h \ events.c \ events.h \ globals.c \ globals.h \ height_quantity.c \ height_quantity.h \ init.c \ init.h \ netcdf_util.c \ netcdf_util.h \ vector.h \ xfunctions.c \ xfunctions.h libanugavis_a_LIBADD = $(LIBOBJS) libanugavis_cxx_a_SOURCES = anugavis.cc \ anugavis.hh \ netcdf_file.cc \ netcdf_file.hh \ output.cc \ output.hh libanugavis_cxx_a_LIBADD = $(LIBOBJS) bin_PROGRAMS = anugavis_simple anugavis_simple_SOURCES = anugavis_simple_cxx.cc anugavis_simple_LDADD = libanugavis_cxx.a $(SDL_LIBS) $(GLU_LIBS)