Skip to content

Commit a43c728

Browse files
committed
add makefile to regenerate test files
1 parent 44e7651 commit a43c728

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

semanticdb/Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)