You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
363 B

.PHONY: run build clean task5 build-task5 clean-task5
# task5
run:
cd task5 && dotnet run --project task5.fsproj
build:
cd task5 && dotnet build
clean:
cd task5 && dotnet clean
all: build run
# task5 (alternative targets)
task5:
cd task5 && dotnet run --project task5.fsproj
build-task5:
cd task5 && dotnet build
clean-task5:
cd task5 && dotnet clean