~ubuntu-branches/ubuntu/feisty/digikam/feisty

« back to all changes in this revision

Viewing changes to digikam/sqlite/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2005-03-10 02:39:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050310023902-023nymfst5mg696c
Tags: 0.7.2-2
* debian/TODO: clean
* digikam manpage: better --detect-camera description

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#stolen Makefile.am from amarok
 
2
 
 
3
noinst_LTLIBRARIES = \
 
4
    libsqlite.la
 
5
 
 
6
INCLUDES = \
 
7
    $(all_includes)
 
8
    
 
9
KDE_CFLAGS = \
 
10
    -w
 
11
 
 
12
libsqlite_la_LDFLAGS = \
 
13
    $(LIBPTHREAD)
 
14
  
 
15
libsqlite_la_SOURCES = \
 
16
    attach.c \
 
17
    auth.c \
 
18
    btree.c \
 
19
    btree_rb.c \
 
20
    build.c \
 
21
    copy.c \
 
22
    date.c \
 
23
    delete.c \
 
24
    encode.c \
 
25
    expr.c \
 
26
    func.c \
 
27
    hash.c \
 
28
    insert.c \
 
29
    main.c \
 
30
    opcodes.c \
 
31
    os.c \
 
32
    pager.c \
 
33
    parse.c \
 
34
    pragma.c \
 
35
    printf.c \
 
36
    random.c \
 
37
    select.c \
 
38
    shell.c \
 
39
    table.c \
 
40
    tokenize.c \
 
41
    trigger.c \
 
42
    update.c \
 
43
    util.c \
 
44
    vacuum.c \
 
45
    vdbe.c \
 
46
    vdbeaux.c \
 
47
    where.c