source: libcaca/trunk/src/Makefile.am @ 204

Last change on this file since 204 was 202, checked in by Sam Hocevar, 19 years ago
  • debian/control: + Changed section to libs/libdevel instead of games/games. + Changed package name to libcaca-dev.
  • debian/rules: + Use debian/compat instead of DH_COMPAT. + Install README, BUGS and TODO into /usr/share/doc.
  • caca-config.in: + First version of the config script.
  • configure.ac src/Makefile.am: + Build a static PIC library as well.
  • README TODO: + Various updates.
File size: 573 bytes
Line 
1###############################################################################
2# Automake targets and declarations for libcaca
3###############################################################################
4
5include_HEADERS = caca.h
6
7lib_LIBRARIES = libcaca.a $(libcaca_pic_a)
8libcaca_a_SOURCES = \
9        caca.c \
10        caca.h \
11        caca_internals.h \
12        graphics.c \
13        io.c \
14        math.c \
15        line.c \
16        box.c \
17        conic.c \
18        triangle.c \
19        sprite.c \
20        blit.c \
21        $(NULL)
22
23if NEED_PIC
24libcaca_pic_a = libcaca_pic.a
25endif
26libcaca_pic_a_SOURCES = $(libcaca_a_SOURCES)
27libcaca_pic_a_CPPFLAGS = -fPIC
28
Note: See TracBrowser for help on using the repository browser.