aboutsummaryrefslogtreecommitdiff
path: root/dave/Makefile
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-04-15 17:43:12 -0400
committercnlohr <lohr85@gmail.com>2018-04-15 17:43:12 -0400
commit0ab91a6e9374f190c049a5d8ea1319b9b37529c1 (patch)
tree85398db4a4d5a40b3adec733fe1d1e183e13f3b8 /dave/Makefile
parentdd9936ef174746b73a688706de9c4a14fca2d58e (diff)
downloadlibsurvive-0ab91a6e9374f190c049a5d8ea1319b9b37529c1.tar.gz
libsurvive-0ab91a6e9374f190c049a5d8ea1319b9b37529c1.tar.bz2
Move things into attic and update Makefile to do dependnencies.
Diffstat (limited to 'dave/Makefile')
-rw-r--r--dave/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/dave/Makefile b/dave/Makefile
deleted file mode 100644
index 330bda3..0000000
--- a/dave/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-UNAME:=$(shell uname)
-
-CFLAGS:= -lm -I../redist -I../src -I../include/libsurvive
-
-ifeq ($(UNAME), Linux)
-CFLAGS:= $(CFLAGS) -lGL -lGLU -lglut -lX11 -I../../redist -DLINUX -lm -lpthread -DLINUX
-endif
-
-# Darwin is Mac OSX !!
-ifeq ($(UNAME), Darwin)
-CFLAGS:= $(CFLAGS) -I../../redist -w -framework OpenGL -framework GLUT
-endif
-
-
-all:
-# gcc -O3 -o kalman_filter kalman_filter.c main.c
- gcc -O3 -o dclapack_test dclapack_test.c $(CFLAGS)
- gcc -O3 -o AffineSolve AffineSolve.c $(CFLAGS) ../redist/linmath.c #-Wall
- gcc -O3 -o OrthoPlot OrthoPlot.c fileutil.c ../redist/linmath.c ../redist/os_generic.c $(CFLAGS)
-clean:
- rm -f kalman_filter dclapack_test