]> git.mxchange.org Git - flightgear.git/commitdiff
add new HUD to build system
authormfranz <mfranz>
Tue, 4 Jul 2006 15:52:09 +0000 (15:52 +0000)
committermfranz <mfranz>
Tue, 4 Jul 2006 15:52:09 +0000 (15:52 +0000)
configure.ac
src/Instrumentation/HUD/.cvsignore [new file with mode: 0644]
src/Instrumentation/HUD/Makefile.am [new file with mode: 0644]
src/Instrumentation/Makefile.am
src/Main/Makefile.am

index 81e9ff559a0c162b24ff133d0b168123661da95a..10307ed06bac2b014d94eba2e3d366d4d3d2d9bb 100644 (file)
@@ -527,6 +527,7 @@ AC_CONFIG_FILES([ \
        src/Input/Makefile \
        src/Instrumentation/Makefile \
        src/Instrumentation/KLN89/Makefile \
+       src/Instrumentation/HUD/Makefile \
        src/Main/Makefile \
        src/Main/runfgfs \
        src/Main/runfgfs.bat \
diff --git a/src/Instrumentation/HUD/.cvsignore b/src/Instrumentation/HUD/.cvsignore
new file mode 100644 (file)
index 0000000..e995588
--- /dev/null
@@ -0,0 +1,3 @@
+.deps
+Makefile
+Makefile.in
diff --git a/src/Instrumentation/HUD/Makefile.am b/src/Instrumentation/HUD/Makefile.am
new file mode 100644 (file)
index 0000000..3042a95
--- /dev/null
@@ -0,0 +1,15 @@
+noinst_LIBRARIES = libHUD.a
+
+libHUD_a_SOURCES = \
+       HUD.cxx HUD.hxx \
+       HUD_tape.cxx \
+       HUD_dial.cxx \
+       HUD_gauge.cxx \
+       HUD_instrument.cxx \
+       HUD_label.cxx \
+       HUD_ladder.cxx \
+       HUD_runway.cxx \
+       HUD_scale.cxx \
+       HUD_tbi.cxx
+
+INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
index 3bcf9d05ff39faa4fe7f27b79ebc2851f83881cf..f59e18db71f9ac33e03ee57549ba31c4b588d613 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = KLN89
+SUBDIRS = KLN89 HUD
 
 noinst_LIBRARIES = libInstrumentation.a
 
index ac8945c85369ac1c1dc4ec6cf8ebec843a316534..5ac0cf0b9ccd6278cc5d907a4c01b511712a3a92 100644 (file)
@@ -78,6 +78,7 @@ fgfs_LDADD = \
        $(top_builddir)/src/Autopilot/libAutopilot.a \
        $(top_builddir)/src/Input/libInput.a \
        $(top_builddir)/src/Instrumentation/KLN89/libKLN89.a \
+       $(top_builddir)/src/Instrumentation/HUD/libHUD.a \
        $(top_builddir)/src/Instrumentation/libInstrumentation.a \
        $(top_builddir)/src/Model/libModel.a \
        $(top_builddir)/src/Network/libNetwork.a \