[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. ca43bf50da6e8e50f7478
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-09-16 12:40:39
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via ca43bf50da6e8e50f747865ff1a311496943b6b6 (commit) from be03885101827781761f3df2537c9283bd630648 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ca43bf50da6e8e50f747865ff1a311496943b6b6 Author: Mike Black W9MDB <mdb...@ya...> Date: Thu Sep 16 00:03:52 2021 -0500 Add Makefile.am to simulators diff --git a/simulators/Makefile.am b/simulators/Makefile.am new file mode 100644 index 00000000..3e9036cf --- /dev/null +++ b/simulators/Makefile.am @@ -0,0 +1,48 @@ +# Current Autotools documentation suggests that DejaGNU is obsolete +# and replaced by Autotest. TODO: implement Autotest + +# AUTOMAKE_OPTIONS = dejagnu +# DEJATOOL = testfreq testbcd testloc rigctl + +DISTCLEANFILES = + +bin_PROGRAMS = + +check_PROGRAMS = simelecraft simicom simkenwood simyaesu + +simelecraft_SOURCES = simelecraft.c +simicom_SOURCES = simicom.c +simkenwood_SOURCES = simkenwood.c +simyaesu_SOURCES = simyaesu.c + +# include generated include files ahead of any in sources +#rigctl_CPPFLAGS = -I$(top_builddir)/tests -I$(top_builddir)/src -I$(srcdir) $(AM_CPPFLAGS) + +# all the programs need this +LDADD = $(top_builddir)/src/libhamlib.la $(top_builddir)/lib/libmisc.la $(DL_LIBS) + +simelecraft_CFLAGS = $(AM_CFLAGS) $(LIBXML2_CFLAGS) -I$(top_builddir)/src +simicom_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I$(top_builddir)/src +simkenwood_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I$(top_builddir)/src +simyaesu_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I$(top_builddir)/src + +simelecraft_LDADD = $(PTHREAD_LIBS) $(READLINE_LIBS) $(LDADD) +simicom_LDADD = $(NET_LIBS) $(PTHREAD_LIBS) $(LDADD) $(READLINE_LIBS) +simkenwood_LDADD = $(PTHREAD_LIBS) $(LDADD) $(READLINE_LIBS) +simyaesu_LDADD = $(NET_LIBS) $(PTHREAD_LIBS) $(LDADD) $(READLINE_LIBS) + +# Linker options +simelecraft_LDFLAGS = $(WINEXELDFLAGS) +simicom_LDFLAGS = $(WINEXELDFLAGS) +simkenwood_LDFLAGS = $(WINEXELDFLAGS) +simyaesu_LDFLAGS = $(WINEXELDFLAGS) + +EXTRA_DIST = + +# Support 'make check' target for simple tests +#check_SCRIPTS = + +#TESTS = $(check_SCRIPTS) + + +CLEANFILES = simelelecraft simicom simkenwood simyaesu ----------------------------------------------------------------------- Summary of changes: simulators/Makefile.am | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 simulators/Makefile.am hooks/post-receive -- Hamlib -- Ham radio control libraries |