Additional Makefile rules and source files for issue #29.

This adds source png and xcf files for checkers pieces.
Also adds Makefile rules using xxd to convert .png -> .h as requested by Albrecht
in issue #29, (hmm, no comment numbers github?)..message dated "June 22nd 2019 4:22am PDT".
This commit is contained in:
Greg Ercolano 2019-06-22 09:18:37 -07:00
parent c9c51dbc48
commit 446c707771
7 changed files with 607 additions and 650 deletions

View File

@ -580,6 +580,16 @@ cairo_test$(EXEEXT): cairo_test.o
$(CXX) $(ARCHFLAGS) $(CXXFLAGS) $(CAIROFLAGS) $(LDFLAGS) -o $@ cairo_test.o $(LINKFLTK) $(LINKFLTKCAIRO) $(GLDLIBS)
$(OSX_ONLY) ../fltk-config --post $@
# Checkers .png -> .h conversion
pixmaps/black_checker_king_png.h: pixmaps/black_checker_king.png
xxd -i $< > $@
pixmaps/white_checker_king_png.h: pixmaps/white_checker_king.png
xxd -i $< > $@
pixmaps/black_checker_png.h: pixmaps/black_checker.png
xxd -i $< > $@
pixmaps/white_checker_png.h: pixmaps/white_checker.png
xxd -i $< > $@
#
# End of "$Id$".
#

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB