mirror of
https://github.com/VK3FNG/soundmodem.git
synced 2025-12-06 03:01:59 +01:00
20 lines
291 B
Makefile
20 lines
291 B
Makefile
INCLUDES = -I$(top_srcdir)/soundcard
|
|
|
|
noinst_LIBRARIES = libafsk.a
|
|
libafsk_a_SOURCES = modem.c costab.c
|
|
|
|
noinst_HEADERS = costab.h
|
|
|
|
gentbl_SOURCES = gentbl.c
|
|
|
|
if CROSSCOMP
|
|
|
|
else
|
|
|
|
noinst_PROGRAMS = gentbl
|
|
|
|
$(srcdir)/costab.c: gentbl$(EXEEXT)
|
|
bdir=`pwd`; cd $(srcdir); $$bdir/gentbl
|
|
|
|
endif
|