You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
301 B
Makefile
18 lines
301 B
Makefile
CONF?=/p:Configuration=Release
|
|
|
|
default: cleanbuild
|
|
|
|
build:
|
|
nuget restore
|
|
cd QuickPlay && msbuild /t:Build ${CONF}
|
|
|
|
deploy: build
|
|
cd QuickPlay && msbuild /t:Install ${CONF}
|
|
|
|
clean:
|
|
git clean -fxd
|
|
git submodule foreach --recursive git clean -fxd
|
|
|
|
cleanbuild: clean build
|
|
cleandeploy: clean deploy
|