1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2024-11-28 00:10:51 +01:00

Makefile: Fix minor inconsistency

This commit is contained in:
icex2 2020-08-21 14:15:00 +02:00
parent e0fe9bcf94
commit fbb69d4550

View File

@ -58,13 +58,13 @@ print-building \
version version
print-building: print-building:
@echo "Build gitrev "$(gitrev)"..." $(V)echo "Build gitrev "$(gitrev)"..."
print-release: print-release:
@echo "Starting release build..." $(V)echo "Starting release build..."
clean: clean:
@echo "Cleaning up..." $(V)echo "Cleaning up..."
$(V)rm -rf $(BUILDDIR) $(V)rm -rf $(BUILDDIR)
code-format: code-format:
@ -72,12 +72,12 @@ code-format:
$(V)find src/ -name '*.c' -o -name '*.h' | xargs clang-format -i -style=file $(V)find src/ -name '*.c' -o -name '*.h' | xargs clang-format -i -style=file
run-tests: run-tests:
@echo "Running tests..." $(V)echo "Running tests..."
@./run-tests-wine.sh $(V)./run-tests-wine.sh
# Generate a version file to identify the build # Generate a version file to identify the build
version: version:
@echo "$(gitrev)" > version $(V)echo "$(gitrev)" > version
build-docker: build-docker:
$(V)docker rm -f $(docker_container_name) 2> /dev/null || true $(V)docker rm -f $(docker_container_name) 2> /dev/null || true