X-Git-Url: https://git.auder.net/?p=valse.git;a=blobdiff_plain;f=test%2FMakefile;h=502d5b583ad8c1118550046ba0e4c4bbad0539ae;hp=26d9bc6205d8fbb15f00322a3cba8e116a21a183;hb=c0846e18ccdfce9bccdcfd730496926b7812ef8c;hpb=f87ff0f5116c0c1c59c5608e46563ff0f79e5d43 diff --git a/test/Makefile b/test/Makefile index 26d9bc6..502d5b5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,11 +1,11 @@ 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 @@ -33,7 +33,7 @@ test.selectionTotale: $(LIB) test.selectionTotale.o test_utils.o $(CC) -fPIC -o $@ -c $< $(CFLAGS) $(INCLUDES) clean: - rm -f *.o ../sources/*.o ../adapters/*.o + rm -f *.o ../pkg/src/sources/*.o cclean: clean rm -f *.so $(TESTS)