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
+ # Where should we install it?
28
+ # Looks for libraries and includes, default is Homebrew
29
+ INSTALLDIR := /usr/local
30
+
31
+ # To use Macports, uncomment this line
32
+ #INSTALLDIR := /opt/local
33
+
27
34
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
28
35
29
36
all : $(APPS) direwolf.conf
@@ -91,19 +98,19 @@ endif
91
98
# Use PortAudio Library
92
99
93
100
# Force static linking of portaudio if the static library is available.
94
- PA_LIB_STATIC := $(shell find /opt/local /lib -maxdepth 1 -type f -name "libportaudio.a")
101
+ PA_LIB_STATIC := $(shell find $(INSTALLDIR) /lib -maxdepth 1 -type f -name "libportaudio.a")
95
102
#$(info $$PA_LIB_STATIC is [${PA_LIB_STATIC}])
96
103
ifeq (${PA_LIB_STATIC},)
97
- LDLIBS += -L/opt/local /lib -lportaudio
104
+ LDLIBS += -L$(INSTALLDIR) /lib -lportaudio
98
105
else
99
- LDLIBS += /opt/local /lib/libportaudio.a
106
+ LDLIBS += $(INSTALLDIR) /lib/libportaudio.a
100
107
endif
101
108
102
109
# Include libraries portaudio requires.
103
110
LDLIBS += -framework CoreAudio -framework AudioUnit -framework AudioToolbox
104
111
LDLIBS += -framework Foundation -framework CoreServices
105
112
106
- CFLAGS += -DUSE_PORTAUDIO -I/opt/local /include
113
+ CFLAGS += -DUSE_PORTAUDIO -I$(INSTALLDIR) /include
107
114
108
115
# Uncomment following lines to enable GPS interface & tracker function.
109
116
# Not available for MacOSX (as far as I know).
@@ -112,12 +119,12 @@ CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
112
119
# Well never mind, issue with Macports with 64bit libs ;-( leave the check in
113
120
# until (if ever) Macports fixes the issue.
114
121
115
- #GPS_HEADER := $(shell find /opt/local /include -maxdepth 1 -type f -name "gps.h")
122
+ #GPS_HEADER := $(shell find $(INSTALLDIR) /include -maxdepth 1 -type f -name "gps.h")
116
123
#ifeq (${GPS_HEADER},)
117
124
#GPS_OBJS :=
118
125
#else
119
126
#CFLAGS += -DENABLE_GPSD
120
- #LDLIBS += -L/opt/local /lib -lgps -lgpsd
127
+ #LDLIBS += -L$(INSTALLDIR) /lib -lgps -lgpsd
121
128
#GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
122
129
#endif
123
130
0 commit comments