File: Makefile.am

package info (click to toggle)
libgda5 5.2.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,168 kB
  • sloc: ansic: 495,319; xml: 10,486; yacc: 5,165; sh: 4,451; makefile: 4,095; php: 1,416; java: 1,300; javascript: 1,298; python: 896; sql: 879; perl: 116
file content (17 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
noinst_LTLIBRARIES = \
	libsqlite.la
AM_CPPFLAGS = -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_THREADSAFE=1

# Download the Windows prepared SQLite (series 3.x) sources in a ZIP, and
# extract the zip in this directory (thanks to http://aaronbock.net/articles/sqlite!)
#
# files list generated with: ls *.c *.h | sort | sed -e 's/$/ \\/' -e 's/^/\t/'
# and remove shell.c and tclsqlite.c
# 
# As of version 3.3.14, SQLite now ships only two files: sqlite3.c (an aggregate of all the source files) and sqlite3.h.
# Apply the 'PragmasPatch' patch to sqlite3.c
libsqlite_la_SOURCES = \
	sqlite3.c \
	sqlite3.h 

EXTRA_DIST = PragmasPatch