File: Makefile.am

package info (click to toggle)
pinot 1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,308 kB
  • sloc: cpp: 39,057; sh: 10,481; ansic: 4,174; makefile: 612; xml: 372
file content (29 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (3)
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
# Process this file with automake to produce Makefile.in

pkginclude_HEADERS = \
	ActionQueue.h \
	CrawlHistory.h \
	MetaDataBackup.h \
	QueryHistory.h \
	SQLDB.h \
	SQLiteBase.h \
	ViewHistory.h

pkglib_LTLIBRARIES = libSQL.la

libSQL_la_LDFLAGS = \
	-static

libSQL_la_SOURCES = \
	ActionQueue.cpp \
	CrawlHistory.cpp \
	MetaDataBackup.cpp \
	QueryHistory.cpp \
	SQLDB.cpp \
	SQLiteBase.cpp \
	ViewHistory.cpp

AM_CXXFLAGS = \
	@MISC_CFLAGS@ \
	-I$(top_srcdir)/Utils