Commit dfdc49f7f01c466cab3e3f4bd55369f30754304a
1 parent
5a6fd599
Exists in
master
and in
1 other branch
Moving dependencies to specific directory
Signed-off-by: Alexandre Barbosa <alexandreab@live.com> Signed-off-by: Lucas Moura <lucas.moura128@gmail.com> Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com> Signed-off-by: Carlos Oliveira <carlospecter@gmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
1 changed file
with
2 additions
and
4 deletions
Show diff stats
Makefile
... | ... | @@ -16,7 +16,7 @@ all: |
16 | 16 | clean: |
17 | 17 | $(RM) -r ./build |
18 | 18 | |
19 | -SOURCES = Makefile requirements.txt requirements-colab-plugins.txt *.tar.* *.whl *.zip | |
19 | +SOURCES = Makefile requirements.txt requirements-colab-plugins.txt | |
20 | 20 | |
21 | 21 | install: |
22 | 22 | mkdir -p $$(dirname $(TARGET)) |
... | ... | @@ -29,10 +29,8 @@ sdist: $(TARBALL) |
29 | 29 | $(TARBALL): |
30 | 30 | mkdir -p $$(dirname $(TARBALL)) |
31 | 31 | $(RM) $(TARBALL) |
32 | - mkdir -p $(DISTDIR) | |
33 | - ln $(SOURCES) $(DISTDIR) | |
32 | + cp $(SOURCES) $(DISTDIR) | |
34 | 33 | tar caf $(TARBALL) $(DISTDIR) |
35 | - $(RM) -r $(DISTDIR) | |
36 | 34 | |
37 | 35 | distclean: |
38 | 36 | $(RM) -r $$(dirname $(TARBALL)) src/ | ... | ... |