1
0
Fork 0

Fix the LIBS for using gpsd.

ycs232-kbc
Jonathan Naylor 4 years ago
parent c38a8cfd27
commit a68ab1b89c

@ -1,13 +1,14 @@
CC = gcc CC = gcc
CXX = g++ CXX = g++
# Use the following CFLAGS if you don't want to use gpsd. # Use the following CFLAGS and LIBS if you don't want to use gpsd.
CFLAGS = -g -O3 -Wall -std=c++0x -pthread CFLAGS = -g -O3 -Wall -std=c++0x -pthread
LIBS = -lm -lpthread
# Use the following CFLAGS if you do want to use gpsd. # Use the following CFLAGS and LIBS if you do want to use gpsd.
CFLAGS = -g -O3 -Wall -DUSE_GPSD -std=c++0x -pthread CFLAGS = -g -O3 -Wall -DUSE_GPSD -std=c++0x -pthread
LIBS = -lm -lpthread -lgps LIBS = -lm -lpthread -lgps
LDFLAGS = -g LDFLAGS = -g
OBJECTS = APRSWriter.o Conf.o CRC.o DTMF.o FCSNetwork.o Golay24128.o GPS.o Log.o StopWatch.o Sync.o Thread.o Timer.o \ OBJECTS = APRSWriter.o Conf.o CRC.o DTMF.o FCSNetwork.o Golay24128.o GPS.o Log.o StopWatch.o Sync.o Thread.o Timer.o \

Loading…
Cancel
Save