24
24
# 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
25
25
# a hissy fit. Not check with GCC.
26
26
27
- APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc
27
+ APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
28
28
29
29
all : $(APPS) direwolf.conf
30
30
@echo " "
@@ -86,86 +86,14 @@ CFLAGS += -D_BSD_SOURCE
86
86
87
87
# $(info $$CC is [${CC}])
88
88
89
- #
90
- # The DSP filters spend a lot of time spinning around in little
91
- # loops multiplying and adding arrays of numbers. The Intel "SSE"
92
- # instructions, introduced in 1999 with the Pentium III series,
93
- # can speed this up considerably.
94
- #
95
- # SSE2 instructions, added in 2000, don't seem to offer any advantage.
96
- #
97
- #
98
- # Let's take a look at the effect of the compile options.
99
- #
100
- #
101
- # Times are elapsed time to process Track 2 of the TNC test CD.
102
- #
103
- # i.e. "./atest 02_Track_2.wav"
104
- # Default demodulator type is new "E" added for version 1.2.
105
- #
106
89
107
- #
108
- # ---------- x86 (32 bit) ----------
109
- #
110
-
111
- #
112
- # gcc 4.6.3 running on Ubuntu 12.04.05.
113
- # Intel(R) Celeron(R) CPU 2.53GHz. Appears to have only 32 bit instructions.
114
- # Probably from around 2004 or 2005.
115
- #
116
- # When gcc is generating code for a 32 bit x86 target, it assumes the ancient
117
- # i386 processor. This is good for portability but bad for performance.
118
- #
119
- # The code can run considerably faster by taking advantage of the SSE instructions
120
- # available in the Pentium 3 or later.
121
- #
122
- # seconds options comments
123
- # ------ ------- --------
124
- # 524
125
- # 183 -O2
126
- # 182 -O3
127
- # 183 -O3 -ffast-math (should be same as -Ofast)
128
- # 184 -Ofast
129
- # 189 -O3 -ffast-math -march=pentium
130
- # 122 -O3 -ffast-math -msse
131
- # 122 -O3 -ffast-math -march=pentium -msse
132
- # 121 -O3 -ffast-math -march=pentium3 (this implies -msse)
133
- # 120 -O3 -ffast-math -march=native
134
- #
135
- # Note that "-march=native" is essentially the same as "-march=pentium3."
136
- #
137
-
138
- # If the compiler is generating code for the i386 target, we can
139
- # get much better results by telling it we have at least a Pentium 3.
90
+ # If the compiler is generating code for a 32 bit target (-m32), we can
91
+ # get much better results by telling it we have at least a Pentium 3
92
+ # which hass the SSE instructions.
140
93
141
94
CFLAGS += -march=core2 -msse4.1 -std=gnu99
142
95
#CFLAGS += -march=pentium3 -sse
143
96
144
- #
145
- # gcc 4.8.2 running on Ubuntu 14.04.1.
146
- # Intel Core 2 Duo from around 2007 or 2008.
147
- #
148
- # 64 bit target implies that we have SSE and probably even better vector instructions.
149
- #
150
- # seconds options comments
151
- # ------ ------- --------
152
- # 245
153
- # 75 -01
154
- # 72 -02
155
- # 71 -03
156
- # 73 -O3 -march=native
157
- # 42 -O3 -ffast-math
158
- # 42 -Ofast (note below)
159
- # 40 -O3 -ffast-math -march=native
160
- #
161
- #
162
- # Note that "-Ofast" is a newer option roughly equivalent to "-O3 -ffast-math".
163
- # I use the longer form because it is compatible with older compilers.
164
- #
165
- # Why don't I don't have "-march=native?"
166
- # Older compilers don't recognize "native" as one of the valid options.
167
- # One article said it was added with gcc 4.2 but I haven't verified that.
168
- #
169
97
170
98
# Add -ffastmath in only if compiler version recognizes it.
171
99
@@ -174,22 +102,6 @@ ifneq ($(useffast),)
174
102
CFLAGS += -ffast-math
175
103
endif
176
104
177
- #
178
- # You would expect "-march=native" to produce the fastest code.
179
- # Why don't I use it here?
180
- #
181
- # 1. In my benchmarks, above, it has a negligible impact if any at all.
182
- # 2. Some older versions of gcc don't recognize "native" as a valid choice.
183
- # 3. Results are less portable. Not a consideration if you are
184
- # building only for your own use but very important for anyone
185
- # redistributing a "binary" version.
186
- #
187
- # If you are planning to distribute the binary version to other
188
- # people (in some ham radio software collection, RPM, or DEB package),
189
- # avoid # fine tuning it for your particular computer. It could
190
- # cause compatibility issues for those with older computers.
191
- #
192
-
193
105
#CFLAGS += -D_FORTIFY_SOURCE
194
106
195
107
# Use PortAudio Library
@@ -296,20 +208,15 @@ direwolf.conf : generic.conf
296
208
297
209
298
210
# Where should we install it?
299
-
300
- # My understanding, of the convention, is that something you compile
301
- # from source, that is not a standard part of the operating system,
302
- # should go in /usr/local/bin.
303
-
304
- # This is a step in the right direction but not sufficient to use /usr instead.
211
+ # Macports typically installs in /opt/local so maybe you want to use that instead.
305
212
306
213
INSTALLDIR := /usr/local
214
+ #INSTALLDIR := /opt/local
307
215
308
216
# TODO: Test this better.
309
217
310
- # Optional installation into /usr/local/.. .
218
+ # Optional installation into INSTALLDIR .
311
219
# Needs to be run as root or with sudo.
312
- # TODO: Review file locations.
313
220
314
221
# Command to "install" to system directories. "install" for Linux. "ginstall" for Mac.
315
222
@@ -318,8 +225,7 @@ INSTALL=ginstall
318
225
.PHONY: install
319
226
install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png
320
227
#
321
- # Applications, not installed with package manager, normally go in /usr/local/bin.
322
- # /usr/bin is used instead when installing from .DEB or .RPM package.
228
+ # Applications.
323
229
#
324
230
$(INSTALL) direwolf $(INSTALLDIR)/bin
325
231
$(INSTALL) decode_aprs $(INSTALLDIR)/bin
@@ -332,6 +238,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
332
238
$(INSTALL) gen_packets $(INSTALLDIR)/bin
333
239
$(INSTALL) atest $(INSTALLDIR)/bin
334
240
$(INSTALL) ttcalc $(INSTALLDIR)/bin
241
+ $(INSTALL) kissutil $(INSTALLDIR)/bin
335
242
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
336
243
#
337
244
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
@@ -347,10 +254,11 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
347
254
#
348
255
# Misc. data such as "tocall" to system mapping.
349
256
#
350
- $(INSTALL) -D --mode=644 tocalls.txt /usr/share/direwolf/tocalls.txt
351
- $(INSTALL) -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
352
- $(INSTALL) -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
353
- $(INSTALL) -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
257
+ $(INSTALL) -D --mode=644 tocalls.txt $(INSTALLDIR)/share/direwolf/tocalls.txt
258
+ $(INSTALL) -D --mode=644 symbols-new.txt $(INSTALLDIR)/share/direwolf/symbols-new.txt
259
+ $(INSTALL) -D --mode=644 symbolsX.txt $(INSTALLDIR)/share/direwolf/symbolsX.txt
260
+ $(INSTALL) -D --mode=644 dw-icon.png $(INSTALLDIR)/share/direwolf/dw-icon.png
261
+
354
262
#
355
263
# Documentation. Various plain text files and PDF.
356
264
#
@@ -535,6 +443,14 @@ aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.c
535
443
$(CC) $(CFLAGS) -g -o $@ $^
536
444
537
445
446
+ # Talk to a KISS TNC.
447
+ # Note: kiss_frame.c has conditional compilation on KISSUTIL.
448
+
449
+ kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port.o dtime_now.o sock.o misc.a
450
+ $(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^ $(LDFLAGS)
451
+
452
+
453
+
538
454
# Touch Tone to Speech sample application.
539
455
540
456
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o
@@ -568,6 +484,7 @@ dist-mac: direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
568
484
$(INSTALLDIR)/bin/gen_packets \
569
485
$(INSTALLDIR)/bin/atest \
570
486
$(INSTALLDIR)/bin/ttcalc \
487
+ $(INSTALLDIR)/bin/kissutil \
571
488
$(INSTALLDIR)/bin/dwespeak.sh \
572
489
$(INSTALLDIR)/share/direwolf/tocalls.txt \
573
490
$(INSTALLDIR)/share/direwolf/config/direwolf.conf \
@@ -588,6 +505,7 @@ dist-mac: direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
588
505
$(INSTALLDIR)/man/man1/decode_aprs.1 \
589
506
$(INSTALLDIR)/man/man1/direwolf.1 \
590
507
$(INSTALLDIR)/man/man1/gen_packets.1 \
508
+ $(INSTALLDIR)/man/man1/kissutil.1 \
591
509
$(INSTALLDIR)/man/man1/ll2utm.1 \
592
510
$(INSTALLDIR)/man/man1/log2gpx.1 \
593
511
$(INSTALLDIR)/man/man1/text2tt.1 \
0 commit comments