files (like there is any chance).tags/v0.99.beta14
| @@ -16,7 +16,7 @@ upload: doc/html FORCE | |||||
| scp -r doc/html/* $(webhost):$(webdir)/manual/ | scp -r doc/html/* $(webhost):$(webdir)/manual/ | ||||
| fonts: tools/makefont | fonts: tools/makefont | ||||
| tools/makefont mono9 "Monospace 9" 96 4 >| $(srcdir)/cucul/font_mono9.h | |||||
| tools/makefont monobold12 "Monospace Bold 12" 96 4 >| $(srcdir)/cucul/font_monobold12.h | |||||
| tools/makefont mono9 "Monospace 9" 96 4 >| $(srcdir)/cucul/mono9.data | |||||
| tools/makefont monobold12 "Monospace Bold 12" 96 4 >| $(srcdir)/cucul/monobold12.data | |||||
| FORCE: | FORCE: | ||||
| @@ -1,6 +1,6 @@ | |||||
| # $Id$ | # $Id$ | ||||
| EXTRA_DIST = cucul.pc.in | |||||
| EXTRA_DIST = cucul.pc.in mono9.data monobold12.data | |||||
| DISTCLEANFILES = cucul.pc | DISTCLEANFILES = cucul.pc | ||||
| pkgconfig_DATA = cucul.pc | pkgconfig_DATA = cucul.pc | ||||
| @@ -26,11 +26,13 @@ libcucul_la_SOURCES = \ | |||||
| frame.c \ | frame.c \ | ||||
| dither.c \ | dither.c \ | ||||
| font.c \ | font.c \ | ||||
| font_mono9.h \ | |||||
| font_monobold12.h \ | |||||
| import.c \ | import.c \ | ||||
| export.c \ | export.c \ | ||||
| $(NULL) | $(NULL) | ||||
| libcucul_la_DEPENDENCIES = \ | |||||
| mono9.data \ | |||||
| monobold12.data \ | |||||
| $(NULL) | |||||
| AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul | ||||
| libcucul_la_LDFLAGS = -no-undefined -version-info @LT_VERSION@ | libcucul_la_LDFLAGS = -no-undefined -version-info @LT_VERSION@ | ||||
| libcucul_la_LIBADD = | libcucul_la_LIBADD = | ||||
| @@ -32,8 +32,8 @@ | |||||
| #include "cucul_internals.h" | #include "cucul_internals.h" | ||||
| /* Internal fonts */ | /* Internal fonts */ | ||||
| #include "font_mono9.h" | |||||
| #include "font_monobold12.h" | |||||
| #include "mono9.data" | |||||
| #include "monobold12.data" | |||||
| /* Helper structures for font loading */ | /* Helper structures for font loading */ | ||||
| #if !defined(_DOXYGEN_SKIP_ME) | #if !defined(_DOXYGEN_SKIP_ME) | ||||