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
RevLine 
[85]1###############################################################################
[185]2# Automake targets and declarations for libcaca
[85]3###############################################################################
4
[202]5include_HEADERS = caca.h
6
7lib_LIBRARIES = libcaca.a $(libcaca_pic_a)
[185]8libcaca_a_SOURCES = \
9        caca.c \
10        caca.h \
11        caca_internals.h \
[147]12        graphics.c \
[95]13        io.c \
[105]14        math.c \
15        line.c \
[151]16        box.c \
[129]17        conic.c \
[105]18        triangle.c \
[115]19        sprite.c \
[183]20        blit.c \
[95]21        $(NULL)
[77]22
[202]23if NEED_PIC
24libcaca_pic_a = libcaca_pic.a
25endif
26libcaca_pic_a_SOURCES = $(libcaca_a_SOURCES)
27libcaca_pic_a_CPPFLAGS = -fPIC
[198]28
Note: See TracBrowser for help on using the repository browser.