~ubuntu-branches/ubuntu/precise/flightgear/precise

« back to all changes in this revision

Viewing changes to utils/fgpanel/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ove Kaaven
  • Date: 2011-09-03 22:16:12 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20110903221612-2cjy0z7ztj5nkln5
Tags: 2.4.0-1
* New upstream release. Closes: #638588.
* Build-Depend on OpenSceneGraph 3.0, and the Subversion library.
* Recommend fgfs-scenery-base.
* Enable parallel builds (shorter compile times on multicore CPUs).
* Removed hack that tried to build without optimizations if
  building with optimizations fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if WITH_FGPANEL
 
2
AM_CXXFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\"
 
3
 
 
4
bin_PROGRAMS = fgpanel
 
5
 
 
6
fgpanel_SOURCES = main.cxx \
 
7
                FGGLApplication.cxx FGGLApplication.hxx \
 
8
                FGPanelApplication.cxx FGPanelApplication.hxx \
 
9
                FGPNGTextureLoader.cxx FGPNGTextureLoader.hxx FGTextureLoaderInterface.hxx \
 
10
                FGRGBTextureLoader.cxx FGRGBTextureLoader.hxx \
 
11
                FGPanelProtocol.cxx \
 
12
                FGFontCache.cxx \
 
13
                panel.cxx panel.hxx \
 
14
                panel_io.cxx panel_io.hxx
 
15
 
 
16
#LIBS =
 
17
 
 
18
fgpanel_LDADD = \
 
19
        -lGLU -lglut -lsgmath -lsgprops -lsgio -lsgdebug -lsgmisc -lsgstructure -lsgxml -lsgtiming \
 
20
        -lplibpu -lplibfnt -lplibul \
 
21
        -lrt -lpng
 
22
endif