X-Git-Url: https://git.auder.net/?p=valse.git;a=blobdiff_plain;f=test%2FMakefile;h=7b163528a0bf55f575ad6c646665a93b2d0196b9;hp=502d5b583ad8c1118550046ba0e4c4bbad0539ae;hb=435cb8419ebcdb624aa053f351c981133d58d6b6;hpb=c0846e18ccdfce9bccdcfd730496926b7812ef8c diff --git a/test/Makefile b/test/Makefile index 502d5b5..7b16352 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)