https://github.com/Robmaister/SharpFont TODO: replace Code Bold.otf with the full version, fix any bugs, build on Linux, possibly move ToolBox string wrapping and limiting logic to ScalableFont class for better results.
17 lines
431 B
Makefile
17 lines
431 B
Makefile
XBUILD := xbuild
|
|
XBUILDFLAGS_RELEASE := /p:Configuration=Release
|
|
XBUILDFLAGS_DEBUG := /p:Configuration=Debug
|
|
|
|
SOLUTION := Source/SharpFont.sln
|
|
|
|
release:
|
|
$(XBUILD) $(XBUILDFLAGS_RELEASE) $(SOLUTION)
|
|
debug:
|
|
$(XBUILD) $(XBUILDFLAGS_DEBUG) $(SOLUTION)
|
|
clean:
|
|
$(XBUILD) $(XBUILDFLAGS_DEBUG) $(SOLUTION) /t:Clean
|
|
$(XBUILD) $(XBUILDFLAGS_RELEASE) $(SOLUTION) /t:Clean
|
|
|
|
.SUFFIXES:
|
|
.PHONY: release debug clean
|