File: Makefile.am

package info (click to toggle)
pinot 1.23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,608 kB
  • sloc: cpp: 41,870; makefile: 611; xml: 416; sh: 336
file content (46 lines) | stat: -rw-r--r-- 760 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Process this file with automake to produce Makefile.in

pkginclude_HEADERS = \
	CommandLine.h \
	Document.h \
	DocumentInfo.h \
	Languages.h \
	MIMEScanner.h \
	Memory.h \
	NLS.h \
	PinotDBus_common.h \
	StringManip.h \
	TimeConverter.h \
	Timer.h \
	Url.h \
	Visibility.h

pkglib_LTLIBRARIES = libBasicUtils.la libUtils.la

libBasicUtils_la_LDFLAGS = \
	-static

libBasicUtils_la_SOURCES = \
	CommandLine.cpp \
	Document.cpp \
	DocumentInfo.cpp \
	StringManip.cpp \
	TimeConverter.cpp \
	Timer.cpp \
	Url.cpp

libUtils_la_LDFLAGS = \
	-static

libUtils_la_SOURCES = \
	Languages.cpp \
	MIMEScanner.cpp \
	PinotDBus_common.cpp \
	Memory.cpp

AM_CFLAGS = -fPIC
AM_CXXFLAGS = \
	@MISC_CFLAGS@ \
	@HTTP_CFLAGS@ @INDEX_CFLAGS@ \
	@GIOMM_CFLAGS@ @GLIBMM_CFLAGS@