File: Makefile.am

package info (click to toggle)
libgda4 4.0.12-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 34,928 kB
  • ctags: 18,543
  • sloc: ansic: 187,884; sh: 10,317; xml: 7,903; yacc: 3,454; makefile: 1,974; java: 1,253; python: 896; sql: 321
file content (17 lines) | stat: -rw-r--r-- 663 bytes parent folder | download
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 -DSQLITE_OMIT_LOAD_EXTENSION=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