Skip to content
Snippets Groups Projects
Commit 42247a15 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[analysis-scripts] remove obsolete variables, fix clean target and update doc

parent efc1edbd
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ help: ...@@ -21,6 +21,7 @@ help:
@echo "fc-estimate-difficulty : Linux/macOS version (depending on host system)" @echo "fc-estimate-difficulty : Linux/macOS version (depending on host system)"
@echo "fc-estimate-difficulty.exe : Windows cross-compiled version (from Linux)" @echo "fc-estimate-difficulty.exe : Windows cross-compiled version (from Linux)"
@echo "clean : Erase working directory" @echo "clean : Erase working directory"
@echo "distclean : Clean and erase generated files"
@echo "test-fc-estimate-difficulty : Test Linux/macOS version" @echo "test-fc-estimate-difficulty : Test Linux/macOS version"
@echo "test-fc-estimate-difficulty.exe : Test Windows version" @echo "test-fc-estimate-difficulty.exe : Test Windows version"
...@@ -61,15 +62,6 @@ COMPLIANCE := $(wildcard ../compliance/*.json) ...@@ -61,15 +62,6 @@ COMPLIANCE := $(wildcard ../compliance/*.json)
TOOLS := $(workdir)/scc $(workdir)/astyle TOOLS := $(workdir)/scc $(workdir)/astyle
COMMON_DEPS := $(PY_DEPS) $(COMPLIANCE) libc_metrics.json COMMON_DEPS := $(PY_DEPS) $(COMPLIANCE) libc_metrics.json
fc-estimate-difficulty: EXE=
fc-estimate-difficulty.exe: EXE=".exe"
fc-estimate-difficulty: WINE=
fc-estimate-difficulty.exe: WINE="/home/andr/git/wine/wine"
fc-estimate-difficulty: PSEP=:
fc-estimate-difficulty.exe: PSEP=;
fc-estimate-difficulty: $(COMMON_DEPS) $(TOOLS) fc-estimate-difficulty: $(COMMON_DEPS) $(TOOLS)
fc-estimate-difficulty.exe: \ fc-estimate-difficulty.exe: \
$(COMMON_DEPS) $(addsuffix .exe,$(TOOLS)) fced-win.Dockerfile $(COMMON_DEPS) $(addsuffix .exe,$(TOOLS)) fced-win.Dockerfile
...@@ -136,7 +128,7 @@ $(workdir)/astyle_3.1: ...@@ -136,7 +128,7 @@ $(workdir)/astyle_3.1:
touch $@ touch $@
clean: clean:
rm -rf $(workdir) $(distdir) fc-estimate-difficulty.spec fc-estimate-difficulty.exe.spec rm -rf build $(workdir) $(distdir) fc-estimate-difficulty.spec fc-estimate-difficulty.exe.spec
distclean: clean distclean: clean
rm -f fc-estimate-difficulty fc-estimate-difficulty.exe libc_metrics.json rm -f fc-estimate-difficulty fc-estimate-difficulty.exe libc_metrics.json
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment