Last change
on this file since 521 was
475,
checked in by Sam Hocevar, 17 years ago
|
- Use libtool for the static library generation; paves the way for
a future shared library.
|
-
Property svn:keywords set to
Id
|
File size:
481 bytes
|
Line | |
---|
1 | # $Id: Makefile.am 475 2005-03-26 10:27:30Z sam $ |
---|
2 | |
---|
3 | include_HEADERS = caca.h |
---|
4 | |
---|
5 | lib_LTLIBRARIES = libcaca.la |
---|
6 | libcaca_la_SOURCES = \ |
---|
7 | caca.c \ |
---|
8 | caca.h \ |
---|
9 | caca_internals.h \ |
---|
10 | graphics.c \ |
---|
11 | event.c \ |
---|
12 | math.c \ |
---|
13 | line.c \ |
---|
14 | box.c \ |
---|
15 | conic.c \ |
---|
16 | triangle.c \ |
---|
17 | sprite.c \ |
---|
18 | bitmap.c \ |
---|
19 | time.c \ |
---|
20 | $(NULL) |
---|
21 | libcaca_la_LDFLAGS = -no-undefined |
---|
22 | libcaca_la_LIBADD = @CACA_LIBS@ |
---|
23 | |
---|
24 | if NEED_PIC |
---|
25 | libcaca_pic_a = libcaca_pic.a |
---|
26 | endif |
---|
27 | lib_LIBRARIES = $(libcaca_pic_a) |
---|
28 | libcaca_pic_a_SOURCES = $(libcaca_la_SOURCES) |
---|
29 | libcaca_pic_a_CPPFLAGS = -fPIC -DPIC |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.