File: Makefile.am

package info (click to toggle)
hf 0.7.3-4etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,684 kB
  • ctags: 3,156
  • sloc: ansic: 26,447; cpp: 4,909; sh: 3,785; makefile: 309
file content (34 lines) | stat: -rw-r--r-- 1,027 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
INCLUDES = \
	-I$(top_srcdir)/hfkernel -I$(top_srcdir)/hfkernel/l1 \
	-I$(top_srcdir)/hfkernel/fsk -I$(top_srcdir)/hfkernel/mt63 

FILES = COPYING Readme Makefile *.cc *.c *.h *.dat *.alf *.a
VERSION = 0.5

noinst_LIBRARIES = libmt63.a
bin_PROGRAMS = mt63rx mt63tx mt63trx ratecal1 peakrms morsecod addnoise 

libmt63_a_SOURCES = \
	dsp.cc mt63.cc sound.cc stdinr.cc *.h *.dat mt63hf.cc \
	mt63hflink.c

ratecal1_SOURCES =	ratecal1.cc        dsp.cc sound.cc stdinr.cc
mt63tx_SOURCES = 	mt63tx.cc  mt63.cc dsp.cc sound.cc stdinr.cc
mt63rx_SOURCES =	mt63rx.cc  mt63.cc dsp.cc sound.cc stdinr.cc term.cc
mt63trx_SOURCES = 	mt63trx.cc mt63.cc dsp.cc sound.cc stdinr.cc term.cc

mt63rx_LDADD  = -lncurses
mt63tx_LDADD  = -lncurses
mt63trx_LDADD = -lncurses
#libmt63_a_LDADD = -lg++

arch: $(FILES) 
	test ! -d mt63lx-$(VERSION) || rm -rf mt63lx-$(VERSION)
	mkdir mt63lx-$(VERSION)
	cp $(FILES) mt63lx-$(VERSION)
	tar zcvvf mt63lx-$(VERSION).tar.gz mt63lx-$(VERSION)
	rm -rf mt63lx-$(VERSION)

clean:
	rm -f *.a *.o $(bin_PROGRAMS)