aboutsummaryrefslogtreecommitdiff
path: root/dave/plot_lighthouse/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dave/plot_lighthouse/Makefile')
-rw-r--r--dave/plot_lighthouse/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/dave/plot_lighthouse/Makefile b/dave/plot_lighthouse/Makefile
new file mode 100644
index 0000000..d156bdb
--- /dev/null
+++ b/dave/plot_lighthouse/Makefile
@@ -0,0 +1,15 @@
+UNAME := $(shell uname)
+
+ifeq ($(UNAME), Linux)
+CFLAGS:= -lGL -lGLU -lglut
+endif
+
+# Darwin is Mac OSX !!
+ifeq ($(UNAME), Darwin)
+CFLAGS:= -w -framework OpenGL -framework GLUT
+endif
+
+all:
+ gcc -O3 -o plot_lighthouse main.c glutil.c fileutil.c ../../redist/os_generic.c $(CFLAGS)
+clean:
+ rm -f plot_lighthouse