File: Makefile.am

package info (click to toggle)
libcaca 0.99.beta20-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,264 kB
  • sloc: ansic: 25,091; php: 2,763; python: 2,637; cs: 1,213; cpp: 1,127; java: 916; objc: 836; makefile: 543; perl: 505; sh: 472; asm: 297; ruby: 215; xml: 33
file content (44 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

include $(top_srcdir)/build/autotools/common.am

rubylibdir = $(RUBY_SITEARCHDIR)
rubysitedir = $(RUBY_SITELIBDIR)

if USE_RUBY
rubylib_LTLIBRARIES = caca.la
rubysite_DATA = lib/caca.rb
if USE_RUBY_MINITEST
TESTS = test
endif
endif

CFLAGS += -Wno-strict-prototypes -Wno-missing-prototypes

caca_la_CPPFLAGS = -I$(top_srcdir)/caca -I../caca $(RUBY_CFLAGS)
caca_la_SOURCES = caca.c \
                  common.h \
                  caca-canvas.c \
                  caca-canvas.h \
                  caca-dither.c \
                  caca-dither.h \
                  caca-font.c \
                  caca-font.h \
                  caca-display.c \
                  caca-display.h \
                  caca-event.c \
                  caca-event.h \
                  $(NULL)
caca_la_LDFLAGS = -module -avoid-version -shared $(RUBY_LIBS)
caca_la_LIBADD = ../caca/libcaca.la

EXTRA_DIST = ruby.dox \
             ruby-caca.dox \
             lib/caca.rb \
             test \
             t/tc_canvas.rb \
             t/tc_dither.rb \
             t/tc_font.rb \
             t/tc_frame.rb \
             README \
             $(NULL)