Last change
on this file since 1024 was
1013,
checked in by Sam Hocevar, 14 years ago
|
- Added an emulation layer for pre-1.0 libcaca API. Legacy applications
just need to include <caca0.h> instead of <caca.h> and should be source-
compatible with old versions of libcaca.
Most of the old API works, except features and caca_sqrt(). Sprites do
work API-wise but due to the new format they are no longer working in
the same way.
|
-
Property svn:keywords set to
Id
|
File size:
617 bytes
|
Line | |
---|
1 | # $Id: Makefile.am 1013 2006-09-09 15:38:06Z sam $ |
---|
2 | |
---|
3 | EXTRA_DIST = caca.pc.in |
---|
4 | DISTCLEANFILES = caca.pc |
---|
5 | |
---|
6 | pkgconfig_DATA = caca.pc |
---|
7 | pkgconfigdir = $(libdir)/pkgconfig |
---|
8 | |
---|
9 | include_HEADERS = caca.h caca0.h |
---|
10 | |
---|
11 | lib_LTLIBRARIES = libcaca.la |
---|
12 | |
---|
13 | libcaca_la_SOURCES = \ |
---|
14 | caca.c \ |
---|
15 | caca.h \ |
---|
16 | caca_internals.h \ |
---|
17 | caca0.c \ |
---|
18 | caca0.h \ |
---|
19 | graphics.c \ |
---|
20 | event.c \ |
---|
21 | time.c \ |
---|
22 | driver_conio.c \ |
---|
23 | driver_gl.c \ |
---|
24 | driver_ncurses.c \ |
---|
25 | driver_raw.c \ |
---|
26 | driver_slang.c \ |
---|
27 | driver_vga.c \ |
---|
28 | driver_win32.c \ |
---|
29 | driver_x11.c \ |
---|
30 | $(NULL) |
---|
31 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul |
---|
32 | libcaca_la_LDFLAGS = -no-undefined -version-info @LT_VERSION@ |
---|
33 | libcaca_la_LIBADD = ../cucul/libcucul.la @CACA_LIBS@ |
---|
34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.