CC = gcc
CFLAGS = -g -std=gnu99 -Wno-implicit-function-declaration
-LDFLAGS = -lm -lgsl -lcblas -lgomp
+LDFLAGS = -lm -lgsl -lcblas
TEST_LDFLAGS = -L. libvalse_core.so
LIB = libvalse_core.so
-LIB_SRC = $(wildcard ../sources/*.c)
+LIB_SRC = $(wildcard ../pkg/src/sources/*.c)
LIB_OBJ = $(LIB_SRC:.c=.o)
-INCLUDES = -I../sources
+INCLUDES = -I../pkg/src/sources
TESTS = test.EMGLLF test.EMGrank test.constructionModelesLassoMLE test.EMGrank\
test.constructionModelesLassoRank test.selectionTotale
$(CC) -fPIC -o $@ -c $< $(CFLAGS) $(INCLUDES)
clean:
- rm -f *.o ../sources/*.o ../adapters/*.o
+ rm -f *.o ../pkg/src/sources/*.o ../pkg/src/adapters/*.o
cclean: clean
rm -f *.so $(TESTS)
--- /dev/null
+#!/bin/sh
+
+#Testing procedure for EMGLLF (inside this folder):
+
+#0) Install current version of the package
+ # Should be library(roxygen2);roxygenize('.'), but roxygen2 6.0.1 bug
+ # ==> temporary workaround with devtools + document()
+ echo "setwd('../pkg');library(devtools);document()" | R --slave
+ R CMD INSTALL ../pkg
+
+#1) Generate data using R versions of EMGLLF/EMGrank (slow, but trusted)
+ cd generate_test_data/
+ echo "source('generateRunSaveTest_EMGLLF.R');\
+ # I'm happy with default values - feel free to give args
+ generateRunSaveTest_EMGLLF() "\
+ | R --slave
+
+#2) Compile test C code
+ # Next line might be required sometimes, to destroy all .o and .so
+ make cclean
+ # Next line compile the test into an executable named "test.EMGLLF"
+ make test.EMGLLF
+
+#3) Run it!
+ # Fingers crossed, hoping everything is alright
+ ./test.EMGLLF
+ # Ask valgrind (generally better idea ;) )
+ valgrind ./test.EMGLLF
+
+#For EMGrank: same procedure, just change EMGLLF to EMGrank everwhere.