This commit is contained in:
2018-05-04 17:56:35 +02:00
parent 4e3845755b
commit ae74d02c35
4 changed files with 40 additions and 3 deletions

21
yaxwtui.Gtk3/Makefile Normal file
View File

@ -0,0 +1,21 @@
include ../msbuild.mk
all: build
run: $(BINTARGETPATH)
$(MONO) $(BINTARGETPATH)
$(BINTARGETPATH): build
build:
$(MSBUILD) $(PRJNAME).csproj /t:Build
restore:
$(MSBUILD) $(PRJNAME).csproj /t:Restore
clean:
$(MSBUILD) $(PRJNAME).csproj /t:Clean
.PHONY: run build restore