mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 03:52:11 +08:00
76f9a1487c
* 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> old-commit-hash: 54d667aa155a795ff3ee4953ce508d64945fdac3
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"
|