Move German tones from common code to individual implementation

This commit is contained in:
Andreas Eversberg 2017-08-20 08:09:35 +02:00
parent d2472cfca6
commit 3c0bcce97b
12 changed files with 14 additions and 10 deletions

View File

@ -8,6 +8,8 @@ anetz_SOURCES = \
dsp.c \
stations.c \
image.c \
freiton.c \
besetztton.c \
main.c
anetz_LDADD = \
$(COMMON_LA) \

View File

@ -29,8 +29,6 @@
#include "../common/timer.h"
#include "../common/call.h"
#include "../common/cause.h"
#include "../common/freiton.h"
#include "../common/besetztton.h"
#include "anetz.h"
#include "dsp.h"

View File

@ -29,8 +29,8 @@
#include "../common/timer.h"
#include "../common/call.h"
#include "../common/mncc_sock.h"
#include "../common/freiton.h"
#include "../common/besetztton.h"
#include "freiton.h"
#include "besetztton.h"
#include "anetz.h"
#include "dsp.h"
#include "stations.h"

View File

@ -1,3 +1,4 @@
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes)
bin_PROGRAMS = \
@ -9,6 +10,8 @@ bnetz_SOURCES = \
dsp.c \
stations.c \
image.c \
$(top_builddir)/src/anetz/freiton.c \
$(top_builddir)/src/anetz/besetztton.c \
ansage.c \
main.c
bnetz_LDADD = \

View File

@ -28,8 +28,8 @@
#include "../common/call.h"
#include "../common/mncc_sock.h"
#include "../common/main.h"
#include "../common/freiton.h"
#include "../common/besetztton.h"
#include "../anetz/freiton.h"
#include "../anetz/besetztton.h"
#include "bnetz.h"
#include "dsp.h"
#include "stations.h"

View File

@ -1,3 +1,4 @@
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = -Wall -Wextra -g $(all_includes)
bin_PROGRAMS = \
@ -13,6 +14,8 @@ cnetz_SOURCES = \
fsk_demod.c \
scrambler.c \
image.c \
$(top_builddir)/src/anetz/freiton.c \
$(top_builddir)/src/anetz/besetztton.c \
ansage.c \
main.c
cnetz_LDADD = \

View File

@ -28,8 +28,8 @@
#include "../common/timer.h"
#include "../common/call.h"
#include "../common/mncc_sock.h"
#include "../common/freiton.h"
#include "../common/besetztton.h"
#include "../anetz/freiton.h"
#include "../anetz/besetztton.h"
#include "cnetz.h"
#include "database.h"
#include "sysinfo.h"

View File

@ -15,8 +15,6 @@ libcommon_a_SOURCES = \
dtmf.c \
samplerate.c \
call.c \
freiton.c \
besetztton.c \
testton.c \
mncc_sock.c \
cause.c \