Commit 631670853abfccbf2a84d2d15133ffec50a30d8e
Committed by
Sergio Oliveira
1 parent
b184566b
Exists in
master
and in
2 other branches
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,7 +16,7 @@ all: | ||
16 | clean: | 16 | clean: |
17 | $(RM) -r ./build | 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 | install: | 21 | install: |
22 | mkdir -p $$(dirname $(TARGET)) | 22 | mkdir -p $$(dirname $(TARGET)) |
@@ -29,10 +29,8 @@ sdist: $(TARBALL) | @@ -29,10 +29,8 @@ sdist: $(TARBALL) | ||
29 | $(TARBALL): | 29 | $(TARBALL): |
30 | mkdir -p $$(dirname $(TARBALL)) | 30 | mkdir -p $$(dirname $(TARBALL)) |
31 | $(RM) $(TARBALL) | 31 | $(RM) $(TARBALL) |
32 | - mkdir -p $(DISTDIR) | ||
33 | - ln $(SOURCES) $(DISTDIR) | 32 | + cp $(SOURCES) $(DISTDIR) |
34 | tar caf $(TARBALL) $(DISTDIR) | 33 | tar caf $(TARBALL) $(DISTDIR) |
35 | - $(RM) -r $(DISTDIR) | ||
36 | 34 | ||
37 | distclean: | 35 | distclean: |
38 | $(RM) -r $$(dirname $(TARBALL)) src/ | 36 | $(RM) -r $$(dirname $(TARBALL)) src/ |