X-Git-Url: https://git.auder.net/?p=valse.git;a=blobdiff_plain;f=test%2FMakefile;h=8b8697e30534d96169159341ca62eaf17d639b36;hp=502d5b583ad8c1118550046ba0e4c4bbad0539ae;hb=f32535f2bc8d50470aa87204bbd7971805dbc9ef;hpb=923a335ee5493de5ace95d946b7bf93fbedd0377 diff --git a/test/Makefile b/test/Makefile index 502d5b5..8b8697e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -6,8 +6,7 @@ LIB = libvalse_core.so LIB_SRC = $(wildcard ../pkg/src/sources/*.c) LIB_OBJ = $(LIB_SRC:.c=.o) INCLUDES = -I../pkg/src/sources -TESTS = test.EMGLLF test.EMGrank test.constructionModelesLassoMLE test.EMGrank\ - test.constructionModelesLassoRank test.selectionTotale +TESTS = test.EMGLLF test.EMGrank all: $(LIB) $(TESTS) @@ -20,15 +19,6 @@ test.EMGLLF: $(LIB) test.EMGLLF.o test_utils.o test.EMGrank: $(LIB) test.EMGrank.o test_utils.o $(CC) -o $@ $^ $(LDFLAGS) $(TEST_LDFLAGS) -test.constructionModelesLassoMLE: $(LIB) test.constructionModelesLassoMLE.o test_utils.o - $(CC) -o $@ $^ $(LDFLAGS) $(TEST_LDFLAGS) - -test.constructionModelesLassoRank: $(LIB) test.constructionModelesLassoRank.o test_utils.o - $(CC) -o $@ $^ $(LDFLAGS) $(TEST_LDFLAGS) - -test.selectionTotale: $(LIB) test.selectionTotale.o test_utils.o - $(CC) -o $@ $^ $(LDFLAGS) $(TEST_LDFLAGS) - %.o: %.c $(CC) -fPIC -o $@ -c $< $(CFLAGS) $(INCLUDES) @@ -36,6 +26,6 @@ clean: rm -f *.o ../pkg/src/sources/*.o cclean: clean - rm -f *.so $(TESTS) + rm -f *.so ../pkg/src/*.so $(TESTS) .PHONY: all clean cclean