mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-23 04:23:52 +08:00
* init gps test * gps test v1 * add static signal gen script * update readme * remove LD_PRELOAD by using rpath, update values after testing * remove LD_PRELOAD * update fuzzy testing * address comments * cleanup Co-authored-by: Kurt Nistelberger <kurt.nistelberger@gmail.com>
12 lines
378 B
Diff
12 lines
378 B
Diff
diff --git a/makefile b/makefile
|
|
index 51bfabf..d0ea1eb 100644
|
|
--- a/makefile
|
|
+++ b/makefile
|
|
@@ -1,5 +1,4 @@
|
|
CC=gcc -O2 -Wall
|
|
|
|
all: limegps.c gpssim.c
|
|
- $(CC) -o LimeGPS limegps.c gpssim.c -lm -lpthread -lLimeSuite
|
|
-
|
|
+ $(CC) -o LimeGPS limegps.c gpssim.c -lm -lpthread -lLimeSuite -I../LimeSuite/src -L../LimeSuite/builddir/src -Wl,-rpath="$(PWD)/../LimeSuite/builddir/src"
|