summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9b12b864a9..ad0b6e427b 100644
--- a/Makefile
+++ b/Makefile
@@ -518,11 +518,11 @@ include $(PROJECT_SUPPORTDIR)/make/sdc.mk
show-missing :
@$(RM) /tmp/check.tmp.log /tmp/check.mkf.log /tmp/check.lst.log
- @for filename in $(LIBRARY_SC_FILES:%='%'); do \
+ @for filename in $(TEST_FILES:%='%'); do \
echo $$filename | $(TR) " " "\n" >> /tmp/check.tmp.log; \
done
@$(SORT) /tmp/check.tmp.log > /tmp/check.mkf.log
- @$(FIND) $(LIBRARY_ROOT) -name '*.scala' | $(SORT) > /tmp/check.lst.log
+ @$(FIND) $(TEST_ROOT) -name '*.scala' | $(SORT) > /tmp/check.lst.log
@$(COMM) -1 -3 /tmp/check.mkf.log /tmp/check.lst.log
@$(RM) /tmp/check.tmp.log /tmp/check.mkf.log /tmp/check.lst.log