# -*- make -*-

PWD             := $(shell pwd)

ADMIN           := $(PWD)/admin

include make/tools.mk

.PHONY: all
all:
	@$(MAKE) -s build
	@$(MAKE) -s run

.PHONY: clean
clean: clean-gentoo-dotnet-info

.PHONY: build
build: build-gentoo-dotnet-info-app

.POHONY: run
run: run-gentoo-dotnet-info-app

.POHONY: test
test: test-gentoo-dotnet-info-test

.PHONY: clean-gentoo-dotnet-info
clean-gentoo-dotnet-info:
	@$(PYTHON) $(ADMIN)/clean_gentoo_dotnet_info.py

.PHONY: build-gentoo-dotnet-info-app
build-gentoo-dotnet-info-app:
	@$(PYTHON) $(ADMIN)/build_gentoo_dotnet_info_app.py

.PHONY: run-gentoo-dotnet-info-app
run-gentoo-dotnet-info-app:
	@$(PYTHON) $(ADMIN)/run_gentoo_dotnet_info_app.py

.PHONY: test-gentoo-dotnet-info-test
test-gentoo-dotnet-info-test:
	@$(PYTHON) $(ADMIN)/test_gentoo_dotnet_info_test.py
