We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11828f2 commit a320d6eCopy full SHA for a320d6e
semanticdb/Makefile
@@ -0,0 +1,11 @@
1
+path="input/src/main/scala/"
2
+files=$(shell find $(path) -type f -name '*.scala')
3
+
4
+all: %.tasty
5
+ cd input; sbt compile
6
7
+test: all
8
+ cd ..; sbt dotty-semanticdb/test; cd -
9
10
+%.tasty: $(files)
11
+ cd $(dir $^); $(CURDIR)/../bin/dotc $(notdir $^)
0 commit comments