minimodem-mirror/src/Makefile.am

48 lines
1.2 KiB
Makefile
Raw Normal View History

2011-06-23 02:10:50 +02:00
#
2011-06-08 23:00:22 +02:00
# Makefile.am
2011-06-23 02:10:50 +02:00
#
2011-06-08 23:00:22 +02:00
# Copyright (C) 2011 Kamal Mostafa <kamal@whence.com>
2011-06-23 02:10:50 +02:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
2011-06-08 23:00:22 +02:00
2011-06-22 22:55:57 +02:00
AM_CFLAGS = -Wall # -Werror
2011-05-20 17:16:52 +02:00
INCLUDES = $(DEPS_CFLAGS)
2011-06-08 23:00:22 +02:00
bin_PROGRAMS = minimodem
2011-06-23 01:10:31 +02:00
dist_man_MANS = minimodem.1
2011-06-22 05:26:00 +02:00
EXTRA_DIST = self-test testcases/* # run-test
2011-06-08 23:00:22 +02:00
2011-06-22 05:26:00 +02:00
TESTS = testcases/test.*
2011-05-20 17:16:52 +02:00
2011-06-08 23:00:22 +02:00
SIMPLEAUDIO_SRC = \
simpleaudio.h \
simpleaudio_internal.h \
simpleaudio.c \
2011-06-18 20:29:00 +02:00
simple-tone-generator.c \
simpleaudio-pulse.c \
simpleaudio-sndfile.c
2011-06-08 23:00:22 +02:00
FSK_SRC = fsk.h fsk.c
BAUDOT_SRC = baudot.h baudot.c
2011-05-20 17:16:52 +02:00
minimodem_LDADD = $(DEPS_LIBS)
minimodem_SOURCES = minimodem.c $(BAUDOT_SRC) $(FSK_SRC) $(SIMPLEAUDIO_SRC)
2011-06-08 23:00:22 +02:00