Last change
on this file since 524 was
524,
checked in by Sam Hocevar, 15 years ago
|
A new low-level text management library (canvas for ultrafast compositing
of unicode letters) is now separated from the higher level rendering and I/O
(that is, libcaca). This commit totally breaks the API, but once everything
is polished I will think about source-level backward compatibility. Most
drivers are broken, but X11 still sorta works.
The new design is much more object-oriented and allows having several
active renderers at the same time, changing renderers on the fly, and more
important, having no renderer at all (useful for converters, or when you
want to do your own renderer).
And in case you are still wondering, the libcucul acronym has "Unicode"
because I want to support at least a subset of Unicode. There are awesome
glyphs in it, including the ones inherited from Codepage 437 such as
"gray 25%" that are used in DOS and Win32 ANSI art.
|
-
Property svn:keywords set to
Id
|
File size:
922 bytes
|
Line | |
---|
1 | # $Id: Makefile.am 524 2006-03-05 18:43:13Z sam $ |
---|
2 | |
---|
3 | pkgdata_DATA = caca.txt |
---|
4 | |
---|
5 | EXTRA_DIST = caca.txt |
---|
6 | |
---|
7 | bin_PROGRAMS = cacafire cacaball cacaplas cacaview cacamoir |
---|
8 | |
---|
9 | cacafire_SOURCES = aafire.c |
---|
10 | cacafire_LDADD = ../src/libcaca.la @CACA_LIBS@ |
---|
11 | cacafire_CPPFLAGS = -I$(top_srcdir)/src -DLIBCACA=1 |
---|
12 | |
---|
13 | cacaball_SOURCES = cacaball.c |
---|
14 | cacaball_LDADD = ../src/libcaca.la @CACA_LIBS@ @MATH_LIBS@ |
---|
15 | cacaball_CPPFLAGS = -I$(top_srcdir)/src |
---|
16 | |
---|
17 | cacaplas_SOURCES = cacaplas.c |
---|
18 | cacaplas_LDADD = ../src/libcaca.la @CACA_LIBS@ @MATH_LIBS@ |
---|
19 | cacaplas_CPPFLAGS = -I$(top_srcdir)/src |
---|
20 | |
---|
21 | cacamoir_SOURCES = cacamoir.c |
---|
22 | cacamoir_LDADD = ../src/libcaca.la @CACA_LIBS@ @MATH_LIBS@ |
---|
23 | cacamoir_CPPFLAGS = -I$(top_srcdir)/src |
---|
24 | |
---|
25 | cacaview_SOURCES = cacaview.c |
---|
26 | cacaview_LDADD = ../src/libcaca.la @CACA_LIBS@ |
---|
27 | cacaview_CPPFLAGS = -I$(top_srcdir)/src -DX_DISPLAY_MISSING=1 |
---|
28 | if USE_IMLIB2 |
---|
29 | cacaview_CFLAGS = `imlib2-config --cflags` |
---|
30 | cacaview_LDFLAGS = `imlib2-config --libs` |
---|
31 | else |
---|
32 | cacaview_CFLAGS = |
---|
33 | cacaview_LDFLAGS = |
---|
34 | endif |
---|
35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.