Skip to content

Commit 9a98aed

Browse files
author
Jonathan Dahan
committed
macOS: use INSTALLDIR in makefile to find libraries
1 parent 9665fa8 commit 9a98aed

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

Makefile.macosx

+13-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
# 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
2525
# a hissy fit. Not check with GCC.
2626

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+
2734
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
2835

2936
all : $(APPS) direwolf.conf
@@ -91,19 +98,19 @@ endif
9198
# Use PortAudio Library
9299

93100
# 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")
95102
#$(info $$PA_LIB_STATIC is [${PA_LIB_STATIC}])
96103
ifeq (${PA_LIB_STATIC},)
97-
LDLIBS += -L/opt/local/lib -lportaudio
104+
LDLIBS += -L$(INSTALLDIR)/lib -lportaudio
98105
else
99-
LDLIBS += /opt/local/lib/libportaudio.a
106+
LDLIBS += $(INSTALLDIR)/lib/libportaudio.a
100107
endif
101108

102109
# Include libraries portaudio requires.
103110
LDLIBS += -framework CoreAudio -framework AudioUnit -framework AudioToolbox
104111
LDLIBS += -framework Foundation -framework CoreServices
105112

106-
CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
113+
CFLAGS += -DUSE_PORTAUDIO -I$(INSTALLDIR)/include
107114

108115
# Uncomment following lines to enable GPS interface & tracker function.
109116
# Not available for MacOSX (as far as I know).
@@ -112,12 +119,12 @@ CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
112119
# Well never mind, issue with Macports with 64bit libs ;-( leave the check in
113120
# until (if ever) Macports fixes the issue.
114121

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")
116123
#ifeq (${GPS_HEADER},)
117124
#GPS_OBJS :=
118125
#else
119126
#CFLAGS += -DENABLE_GPSD
120-
#LDLIBS += -L/opt/local/lib -lgps -lgpsd
127+
#LDLIBS += -L$(INSTALLDIR)/lib -lgps -lgpsd
121128
#GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
122129
#endif
123130

0 commit comments

Comments
 (0)