aboutsummaryrefslogtreecommitdiff
path: root/tools/plot_lighthouse
diff options
context:
space:
mode:
authorultramn <dchapm2@umbc.edu>2017-02-19 10:56:20 -0800
committerultramn <dchapm2@umbc.edu>2017-02-19 10:56:20 -0800
commite593db4c3a3575f826682d5eb9e402372aa1ba98 (patch)
tree60165efb5706709eba53001f43d450a3037ed444 /tools/plot_lighthouse
parentee1ec597c5dcb851be8b72e1458bb70fc6cb96a9 (diff)
downloadlibsurvive-e593db4c3a3575f826682d5eb9e402372aa1ba98.tar.gz
libsurvive-e593db4c3a3575f826682d5eb9e402372aa1ba98.tar.bz2
Don't know why I have to commit this, it might make things worse, but it won't let me pull without it.
Diffstat (limited to 'tools/plot_lighthouse')
-rw-r--r--tools/plot_lighthouse/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/plot_lighthouse/Makefile b/tools/plot_lighthouse/Makefile
index d156bdb..07bdcb9 100644
--- a/tools/plot_lighthouse/Makefile
+++ b/tools/plot_lighthouse/Makefile
@@ -1,15 +1,15 @@
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
-CFLAGS:= -lGL -lGLU -lglut
+CFLAGS:= -I../../redist -lGL -lGLU -lglut
endif
# Darwin is Mac OSX !!
ifeq ($(UNAME), Darwin)
-CFLAGS:= -w -framework OpenGL -framework GLUT
+CFLAGS:= -I../../redist -w -framework OpenGL -framework GLUT
endif
all:
- gcc -O3 -o plot_lighthouse main.c glutil.c fileutil.c ../../redist/os_generic.c $(CFLAGS)
+ gcc -O3 -o plot_lighthouse main.c glutil.c fileutil.c ../../redist/os_generic.c ../../redist/linmath.c $(CFLAGS)
clean:
rm -f plot_lighthouse