Skip to content

Commit 2b61ec5

Browse files
committed
[chore] Removed projects from makefile
1 parent 42295fe commit 2b61ec5

File tree

1 file changed

+5
-19
lines changed

1 file changed

+5
-19
lines changed

Makefile

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
1-
project_dirs = lexical_shared lexical_plugin lexical_test
21
dialyzer_dirs = lexical_shared lexical_plugin
32

4-
compile.all: compile.projects compile.umbrella
3+
compile.all: compile.umbrella
54

6-
dialyzer.all: compile.all dialyzer.projects dialyzer.umbrella
5+
dialyzer.all: compile.all dialyzer.umbrella
76

8-
test.all: test.projects test.umbrella
7+
test.all: test.umbrella
98

10-
dialyzer.plt.all: dialyzer.plt.projects dialyzer.plt.umbrella
9+
dialyzer.plt.all: dialyzer.plt.umbrella
1110

1211
dialyzer.umbrella:
1312
mix dialyzer
1413

15-
dialyzer.projects:
16-
$(foreach dir, $(dialyzer_dirs), cd projects/$(dir) && mix dialyzer && cd ../..;)
17-
18-
dialyzer.plt.projects:
19-
$(foreach dir, $(dialyzer_dirs), cd projects/$(dir) && mix dialyzer --plt && cd ../..;)
20-
2114
dialyzer.plt.umbrella:
2215
mix dialyzer --plt
2316

2417
test.umbrella:
2518
mix test
2619

27-
test.projects:
28-
cd projects
29-
$(foreach dir, $(project_dirs), cd projects/$(dir) && mix test && cd ../..;)
30-
31-
compile.umbrella: compile.projects
20+
compile.umbrella:
3221
mix deps.get
3322
mix compile --skip-umbrella-children --warnings-as-errors
3423

35-
compile.projects:
36-
cd projects
37-
$(foreach dir, $(project_dirs), cd projects/$(dir) && mix deps.get && mix do clean, compile --warnings-as-errors && cd ../..;)
3824

0 commit comments

Comments
 (0)