Skip to content
Snippets Groups Projects
Makefile.am 1.03 KiB
Newer Older
  • Learn to ignore specific revisions
  • # $Id$
    
    # possible options
    
    Oliver Sander's avatar
    Oliver Sander committed
    LDADD = $(IPOPT_LDFLAGS) $(IPOPT_LIBS)
    AM_CPPFLAGS += $(IPOPT_CPPFLAGS)
    
    noinst_PROGRAMS = staticrod staticrod2 rod3d harmonicmaps dirneucoupling rod-eoc
    
    
    staticrod_SOURCES = staticrod.cc
    
    Oliver Sander's avatar
    Oliver Sander committed
    rod3d_SOURCES = rod3d.cc
    
    harmonicmaps_SOURCES = harmonicmaps.cc
    harmonicmaps_CXXFLAGS = $(UG_CPPFLAGS) $(AMIRAMESH_CPPFLAGS) $(IPOPT_CPPFLAGS) $(PSURFACE_CPPFLAGS)
    harmonicmaps_LDADD    = $(UG_LDFLAGS) $(AMIRAMESH_LDFLAGS) $(UG_LIBS) $(AMIRAMESH_LIBS) \
                              $(IPOPT_LDFLAGS) $(IPOPT_LIBS) $(PSURFACE_LDFLAGS) $(PSURFACE_LIBS)
    
    dirneucoupling_SOURCES  = dirneucoupling.cc
    
    Oliver Sander's avatar
    Oliver Sander committed
    dirneucoupling_CXXFLAGS = $(UG_CPPFLAGS) $(AMIRAMESH_CPPFLAGS) $(IPOPT_CPPFLAGS) $(PSURFACE_CPPFLAGS)
    
    Oliver Sander's avatar
    Oliver Sander committed
    dirneucoupling_LDADD    = $(UG_LDFLAGS) $(AMIRAMESH_LDFLAGS) $(UG_LIBS) $(AMIRAMESH_LIBS) \
    
                              $(IPOPT_LDFLAGS) $(IPOPT_LIBS) $(PSURFACE_LDFLAGS) $(PSURFACE_LIBS)
    
    # don't follow the full GNU-standard
    # we need automake 1.5
    AUTOMAKE_OPTIONS = foreign 1.5