[Positioning] Makefile: disable the 'test' target

Unit tests are unmaintained. It's nicer to tell it to the user.
This commit is contained in:
Matteo Cypriani 2011-12-27 18:37:57 +01:00
parent cf18386310
commit 700782f9a6
1 changed files with 4 additions and 1 deletions

View File

@ -342,8 +342,11 @@ $(TESTS_OBJ): $(TESTS_XX) $(INCLUDES_TESTS)
$(TESTS_TARGET): $(TESTS_OBJ) $(OBJ_TESTS) $(OBJ) $(OBJ_NOTEST)
$(LD) $(LDFLAGS) -o $@ $^
test: $(TESTS_TARGET)
test_forced: $(TESTS_TARGET)
@$(TESTS_TARGET)
test:
@echo "Unit tests are currently unmaintained. If you are sure"
@echo "you want to try them, use the target 'test_forced'."
doc:
@$(DOXYGEN) $(DOXYFILE)