MarkDementev/java-project-78

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
.DEFAULT_GOAL := build

clean:
    make -C app clean

build:
    make -C app build

install:
    make -C app install
    
test:
    make -C app test

report:
    make -C app report

lint:
    make -C app lint

update-deps:
    make -C app update-deps


.PHONY: build