1
1
#
2
- # Makefile for Macintosh 10.8 + version of Dire Wolf.
2
+ # Makefile for Macintosh 10.6 + version of Dire Wolf.
3
3
#
4
4
5
5
# TODO: This is a modified version of Makefile.linux and it
9
9
# Maybe the most of the differences could go in to platform specific include
10
10
# files rather than cluttering it up with too many if blocks.
11
11
12
+ # Changes:
13
+ #
14
+ # 16 Dec 2015
15
+ # 1. Added condition check for gps/gpsd code. Commented out due to 32/64 bit
16
+ # library issues. Macports gpsd build problem.
17
+ # 2. SDK version checks are now performed by a bash script 'search_sdks.sh'.
18
+ # This should resolve the varied locations Apple stored the SDKs on the different
19
+ # Xcode/OS versions. Executing 'make' on the first pass asks the operator
20
+ # which SDK he/she wishes to use. Executing 'make clean' resets the SDK
21
+ # selection and operator intervention is once again required. Selected SDK
22
+ # information resides in a file named './use_this_sdk' in the current working
23
+ # directory.
24
+ # 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
25
+ # a hissy fit. Not check with GCC.
12
26
13
27
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc direwolf.conf
14
28
@echo " "
15
29
@echo "Next step install with: "
16
30
@echo " "
17
31
@echo " sudo make install"
18
32
@echo " "
19
- @echo "System SDK's (10.8 - 10.10) must be located here to make use of them. "
20
- @echo " /Developer/SDKs "
21
33
@echo " "
22
34
23
35
SYS_LIBS :=
24
36
SYS_MIN :=
25
- SDK := $(shell find /Developer -maxdepth 1 -type d -name "SDKs")
37
+ # SDK := $(shell find /Developer -maxdepth 1 -type d -name "SDKs")
26
38
#$(info $$SDK = ${SDK})
27
- ifeq (${SDK},/Developer/SDKs)
28
- SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.8.sdk")
29
- ifeq (${SDK},/Developer/SDKs/MacOSX10.8.sdk)
30
- SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.8.sdk
31
- SYS_MIN := -mmacosx-version-min=10.8
32
- else
33
- SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.9.sdk")
34
- ifeq (${SDK},/Developer/SDKs/MacOSX10.9.sdk)
35
- SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.9.sdk
36
- SYS_MIN := -mmacosx-version-min=10.9
37
- else
38
- SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.10.sdk")
39
- ifeq (${SDK},/Developer/SDKs/MacOSX10.10.sdk)
40
- SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.10.sdk
41
- SYS_MIN := -mmacosx-version-min=10.10
42
- endif
43
- endif
44
- endif
45
- endif
46
-
39
+ #ifeq (${SDK},/Developer/SDKs)
40
+ # SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.8.sdk")
41
+ # ifeq (${SDK},/Developer/SDKs/MacOSX10.8.sdk)
42
+ # SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.8.sdk
43
+ # SYS_MIN := -mmacosx-version-min=10.8
44
+ # else
45
+ # SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.9.sdk")
46
+ # ifeq (${SDK},/Developer/SDKs/MacOSX10.9.sdk)
47
+ # SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.9.sdk
48
+ # SYS_MIN := -mmacosx-version-min=10.9
49
+ # else
50
+ # SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.10.sdk")
51
+ # ifeq (${SDK},/Developer/SDKs/MacOSX10.10.sdk)
52
+ # SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.10.sdk
53
+ # SYS_MIN := -mmacosx-version-min=10.10
54
+ # endif
55
+ # endif
56
+ # endif
57
+ #endif
58
+
59
+ SYS_LIBS := $(shell ./search_sdks.sh)
47
60
EXTRA_CFLAGS :=
48
61
DARWIN_CC := $(shell which clang)
49
62
ifeq (${DARWIN_CC},)
@@ -184,11 +197,20 @@ LDLIBS += -framework Foundation -framework CoreServices
184
197
CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
185
198
186
199
# Uncomment following lines to enable GPS interface & tracker function.
187
- # Not available for MacOSX.
188
- # Although MacPorts has gpsd, wonder if it's the same thing.
189
-
200
+ # Not available for MacOSX (as far as I know).
201
+ # Although MacPorts has gpsd, wonder if it's the same thing. Add the check
202
+ # just in case it works.
203
+ # Well never mind, issue with Macports with 64bit libs ;-( leave the check in
204
+ # until (if ever) Macports fixes the issue.
205
+
206
+ #GPS_HEADER := $(shell find /opt/local/include -maxdepth 1 -type f -name "gps.h")
207
+ #ifeq (${GPS_HEADER},)
208
+ #GPS_OBJS :=
209
+ #else
190
210
#CFLAGS += -DENABLE_GPSD
191
- #LDLIBS += -lgps
211
+ #LDLIBS += -L/opt/local/lib -lgps -lgpsd
212
+ #GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
213
+ #endif
192
214
193
215
# Name of current directory.
194
216
# Used to generate zip file name for distribution.
@@ -206,7 +228,7 @@ direwolf : direwolf.o aprs_tt.o audio_portaudio.o audio_stats.o ax25_pad.o beaco
206
228
kiss.o kissnet.o latlong.o latlong.o log.o morse.o multi_modem.o \
207
229
nmea.o serial_port.o pfilter.o ptt.o rdq.o recv.o redecode.o rrbb.o server.o \
208
230
symbols.o telemetry.o textcolor.o tq.o tt_text.o tt_user.o xmit.o \
209
- dwgps.o dwgpsnmea.o dwgpsd.o
231
+ dwgps.o dwgpsnmea.o
210
232
$(CC) $(CFLAGS) -o $@ $^ -lpthread $(LDLIBS) -lm
211
233
212
234
@@ -221,8 +243,6 @@ fsk_fast_filter.h : demod_afsk.c
221
243
$(CC) $(CFLAGS) -o gen_fff -DGEN_FFF demod_afsk.c dsp.c textcolor.c -lm
222
244
./gen_fff > fsk_fast_filter.h
223
245
224
-
225
-
226
246
# UTM, USNG, MGRS conversions.
227
247
228
248
geotranz.a : error_string.o mgrs.o polarst.o tranmerc.o ups.o usng.o utm.o
@@ -423,17 +443,19 @@ demod_afsk.o : tune.h
423
443
demod_9600.o : tune.h
424
444
425
445
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
426
- fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
446
+ fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
427
447
$(CC) $(CFLAGS) -o atest $^ -lm
428
448
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
429
449
430
450
431
451
# Unit test for AFSK demodulator
432
452
433
-
434
- atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
435
- fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
453
+ atest : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
454
+ fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
436
455
$(CC) $(CFLAGS) -o $@ $^ -lm
456
+ #atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
457
+ # fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
458
+ # $(CC) $(CFLAGS) -o $@ $^ -lm
437
459
438
460
# Unit test for inner digipeater algorithm
439
461
@@ -492,7 +514,7 @@ depend : $(wildcard *.c)
492
514
.PHONY: clean
493
515
clean :
494
516
rm -f direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc \
495
- fsk_fast_filter.h *.o *.a
517
+ fsk_fast_filter.h *.o *.a use_this_sdk
496
518
echo " " > tune.h
497
519
498
520
0 commit comments