|
4 | 4 |
|
5 | 5 |
|
6 | 6 |
|
7 |
| - |
8 |
| -APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc |
| 7 | +APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil |
9 | 8 |
|
10 | 9 | all : $(APPS) direwolf.desktop direwolf.conf
|
11 | 10 | @echo " "
|
@@ -255,18 +254,18 @@ endif
|
255 | 254 | # but the initial test doesn't look good. About 2.3 times as slow.
|
256 | 255 |
|
257 | 256 | # If you want to use OSS (for FreeBSD, OpenBSD) instead of
|
258 |
| -# ALSA (for Linux), comment out (or remove) the two lines below. |
259 |
| - |
| 257 | +# ALSA (for Linux), comment out (or remove) the line below. |
260 | 258 | # TODO: Can we automate this somehow?
|
261 | 259 |
|
262 |
| -CFLAGS += -DUSE_ALSA |
263 |
| -LDFLAGS += -lasound |
| 260 | +alsa = 1 |
264 | 261 |
|
265 | 262 | ifeq ($(wildcard /usr/include/pthread.h),)
|
266 | 263 | $(error /usr/include/pthread.h does not exist. Install it with "sudo apt-get install libc6-dev" or "sudo yum install libc6-dev" )
|
267 | 264 | endif
|
268 | 265 |
|
269 |
| -ifneq ($(USE_ALSA),) |
| 266 | +ifneq ($(alsa),) |
| 267 | +CFLAGS += -DUSE_ALSA |
| 268 | +LDFLAGS += -lasound |
270 | 269 | ifeq ($(wildcard /usr/include/alsa/asoundlib.h),)
|
271 | 270 | $(error /usr/include/alsa/asoundlib.h does not exist. Install it with "sudo apt-get install libasound2-dev" or "sudo yum install libasound2-dev" )
|
272 | 271 | endif
|
@@ -377,9 +376,9 @@ tocalls-symbols :
|
377 | 376 |
|
378 | 377 | # Separate application to decode raw data.
|
379 | 378 |
|
380 |
| -# First two use .c rather than .o because they depend on DECAMAIN definition. |
| 379 | +# First three use .c rather than .o because they depend on DECAMAIN definition. |
381 | 380 |
|
382 |
| -decode_aprs : decode_aprs.c kiss_frame.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a |
| 381 | +decode_aprs : decode_aprs.c kiss_frame.c ax25_pad.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a |
383 | 382 | $(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ $(LDFLAGS)
|
384 | 383 |
|
385 | 384 |
|
@@ -429,6 +428,13 @@ aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.o misc.a
|
429 | 428 | $(CC) $(CFLAGS) -g -o $@ $^
|
430 | 429 |
|
431 | 430 |
|
| 431 | +# Talk to a KISS TNC. |
| 432 | +# Note: kiss_frame.c has conditional compilation on KISSUTIL. |
| 433 | + |
| 434 | +kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port.o dtime_now.o sock.o misc.a |
| 435 | + $(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^ |
| 436 | + |
| 437 | + |
432 | 438 | # Touch Tone to Speech sample application.
|
433 | 439 |
|
434 | 440 | ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o misc.a
|
@@ -562,6 +568,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
|
562 | 568 | $(INSTALL) gen_packets $(INSTALLDIR)/bin
|
563 | 569 | $(INSTALL) atest $(INSTALLDIR)/bin
|
564 | 570 | $(INSTALL) ttcalc $(INSTALLDIR)/bin
|
| 571 | + $(INSTALL) kissutil $(INSTALLDIR)/bin |
565 | 572 | $(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
|
566 | 573 | #
|
567 | 574 | # Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
|
|
0 commit comments