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
@@ -44,7 +51,7 @@ ifeq (${DARWIN_CC},)
44
51
DARWIN_CC := $(shell which gcc)
45
52
EXTRA_CFLAGS :=
46
53
else
47
- EXTRA_CFLAGS := -fvectorize -fslp-vectorize -fslp-vectorize-aggressive - pthread
54
+ EXTRA_CFLAGS := -fvectorize -fslp-vectorize -pthread
48
55
endif
49
56
50
57
# Change as required in support of the available libraries
@@ -74,8 +81,9 @@ CFLAGS += -D_BSD_SOURCE
74
81
# get much better results by telling it we have at least a Pentium 3
75
82
# which hass the SSE instructions.
76
83
77
- CFLAGS += -march=core2 -msse4.1 -std=gnu99
84
+ # CFLAGS += -march=core2 -msse4.1 -std=gnu99
78
85
#CFLAGS += -march=pentium3 -sse
86
+ CFLAGS += -march=native
79
87
80
88
81
89
# Add -ffastmath in only if compiler version recognizes it.
@@ -90,19 +98,19 @@ endif
90
98
# Use PortAudio Library
91
99
92
100
# Force static linking of portaudio if the static library is available.
93
- 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")
94
102
#$(info $$PA_LIB_STATIC is [${PA_LIB_STATIC}])
95
103
ifeq (${PA_LIB_STATIC},)
96
- LDLIBS += -L/opt/local /lib -lportaudio
104
+ LDLIBS += -L$(INSTALLDIR) /lib -lportaudio
97
105
else
98
- LDLIBS += /opt/local /lib/libportaudio.a
106
+ LDLIBS += $(INSTALLDIR) /lib/libportaudio.a
99
107
endif
100
108
101
109
# Include libraries portaudio requires.
102
110
LDLIBS += -framework CoreAudio -framework AudioUnit -framework AudioToolbox
103
111
LDLIBS += -framework Foundation -framework CoreServices
104
112
105
- CFLAGS += -DUSE_PORTAUDIO -I/opt/local /include
113
+ CFLAGS += -DUSE_PORTAUDIO -I$(INSTALLDIR) /include
106
114
107
115
# Uncomment following lines to enable GPS interface & tracker function.
108
116
# Not available for MacOSX (as far as I know).
@@ -111,12 +119,12 @@ CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
111
119
# Well never mind, issue with Macports with 64bit libs ;-( leave the check in
112
120
# until (if ever) Macports fixes the issue.
113
121
114
- #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")
115
123
#ifeq (${GPS_HEADER},)
116
124
#GPS_OBJS :=
117
125
#else
118
126
#CFLAGS += -DENABLE_GPSD
119
- #LDLIBS += -L/opt/local /lib -lgps -lgpsd
127
+ #LDLIBS += -L$(INSTALLDIR) /lib -lgps -lgpsd
120
128
#GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
121
129
#endif
122
130
0 commit comments