From 0beba6c967de76ce901bc316527ab41af8405825 Mon Sep 17 00:00:00 2001 From: mfranz Date: Tue, 4 Jul 2006 15:52:09 +0000 Subject: [PATCH] add new HUD to build system --- configure.ac | 1 + src/Instrumentation/HUD/.cvsignore | 3 +++ src/Instrumentation/HUD/Makefile.am | 15 +++++++++++++++ src/Instrumentation/Makefile.am | 2 +- src/Main/Makefile.am | 1 + 5 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 src/Instrumentation/HUD/.cvsignore create mode 100644 src/Instrumentation/HUD/Makefile.am diff --git a/configure.ac b/configure.ac index 81e9ff559..10307ed06 100644 --- a/configure.ac +++ b/configure.ac @@ -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 index 000000000..e99558847 --- /dev/null +++ b/src/Instrumentation/HUD/.cvsignore @@ -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 index 000000000..3042a958d --- /dev/null +++ b/src/Instrumentation/HUD/Makefile.am @@ -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 diff --git a/src/Instrumentation/Makefile.am b/src/Instrumentation/Makefile.am index 3bcf9d05f..f59e18db7 100644 --- a/src/Instrumentation/Makefile.am +++ b/src/Instrumentation/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = KLN89 +SUBDIRS = KLN89 HUD noinst_LIBRARIES = libInstrumentation.a diff --git a/src/Main/Makefile.am b/src/Main/Makefile.am index ac8945c85..5ac0cf0b9 100644 --- a/src/Main/Makefile.am +++ b/src/Main/Makefile.am @@ -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 \ -- 2.39.5