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@
|