bgfx/examples/common/imgui/makefile

31 lines
902 B
Makefile
Raw Normal View History

2013-04-25 08:01:11 +04:00
#
2018-01-01 22:16:06 +03:00
# Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2017-01-04 19:34:25 +03:00
# License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-04-25 08:01:11 +04:00
#
2014-09-11 08:48:08 +04:00
include ../../../scripts/shader-embeded.mk
2013-04-25 08:01:11 +04:00
2015-04-02 20:49:41 +03:00
droidsans.ttf.h: ../../runtime/font/droidsans.ttf
@bin2c -f $(<) -o $(@) -n s_droidSansTtf
2015-01-24 10:02:56 +03:00
roboto_regular.ttf.h: ../../runtime/font/roboto-regular.ttf
@bin2c -f $(<) -o $(@) -n s_robotoRegularTtf
robotomono_regular.ttf.h: ../../runtime/font/robotomono-regular.ttf
@bin2c -f $(<) -o $(@) -n s_robotoMonoRegularTtf
2016-05-28 22:12:59 +03:00
icons_font_awesome.ttf.h: ../../runtime/font/fontawesome-webfont.ttf
@bin2c -f $(<) -o $(@) -n s_iconsFontAwesomeTtf
2016-05-28 22:12:59 +03:00
icons_kenney.ttf.h: ../../runtime/font/kenney-icon-font.ttf
@bin2c -f $(<) -o $(@) -n s_iconsKenneyTtf
fonts: droidsans.ttf.h \
roboto_regular.ttf.h \
robotomono_regular.ttf.h \
icons_font_awesome.ttf.h \
icons_kenney.ttf.h
2016-05-28 22:12:59 +03:00
rebuild: fonts
2013-04-25 08:01:11 +04:00
@make -s --no-print-directory clean all