[nnyeah] Add tool to be made via makefiles. (#14513)

Adding the needed Makefile and the dir to the parent one so that the
tool is also built in the CI.


Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This commit is contained in:
Manuel de la Pena 2022-03-28 11:52:59 -04:00 коммит произвёл GitHub
Родитель af00cc664b
Коммит 3f698c47d9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -6,7 +6,7 @@ ifdef INCLUDE_MAC
SUBDIRS+=mmp
endif
SUBDIRS+=mtouch xibuild mlaunch siminstaller
SUBDIRS+=mtouch xibuild mlaunch siminstaller nnyeah
ifdef ENABLE_INSTALL_SOURCE
SUBDIRS += install-source

12
tools/nnyeah/Makefile Normal file
Просмотреть файл

@ -0,0 +1,12 @@
TOP=../..
include $(TOP)/Make.config
all-local:: bin/Debug/net5.0/nnyeah.dll
install-local:: all-local
bin/Debug/net5.0/nnyeah.dll: $(wildcard **/*.cs) $(wildcard **/*.csproj) $(wildcard *.sln) Makefile
$(Q_BUILD) $(SYSTEM_DOTNET) build "/bl:$@.binlog" /restore $(MSBUILD_VERBOSITY) $(wildcard *.sln)
clean:
$(Q_BUILD) $(SYSTEM_DOTNET) build "/bl:$@.binlog" /restore $(MSBUILD_VERBOSITY) /t:Clean $(wildcard *.sln)