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
noinst_HEADERS = \
CommandLine.h \
Document.h \
DocumentInfo.h \
Languages.h \
MIMEScanner.h \
NLS.h \
StringManip.h \
TimeConverter.h \
Timer.h \
Url.h \
$(top_srcdir)/Utils/xdgmime/xdgmimealias.h \
$(top_srcdir)/Utils/xdgmime/xdgmimecache.h \
$(top_srcdir)/Utils/xdgmime/xdgmimeglob.h \
$(top_srcdir)/Utils/xdgmime/xdgmime.h \
$(top_srcdir)/Utils/xdgmime/xdgmimeint.h \
$(top_srcdir)/Utils/xdgmime/xdgmimemagic.h \
$(top_srcdir)/Utils/xdgmime/xdgmimeparent.h
noinst_LTLIBRARIES = libBasicUtils.la libUtils.la
libBasicUtils_la_SOURCES = \
CommandLine.cpp \
Document.cpp \
DocumentInfo.cpp \
StringManip.cpp \
TimeConverter.cpp \
Timer.cpp \
Url.cpp
libUtils_la_SOURCES = \
Languages.cpp \
MIMEScanner.cpp \
$(top_srcdir)/Utils/xdgmime/xdgmimealias.c \
$(top_srcdir)/Utils/xdgmime/xdgmime.c \
$(top_srcdir)/Utils/xdgmime/xdgmimecache.c \
$(top_srcdir)/Utils/xdgmime/xdgmimeglob.c \
$(top_srcdir)/Utils/xdgmime/xdgmimeint.c \
$(top_srcdir)/Utils/xdgmime/xdgmimemagic.c \
$(top_srcdir)/Utils/xdgmime/xdgmimeparent.c
AM_CFLAGS = -fPIC -DXDG_PREFIX=pinot_xdg
AM_CXXFLAGS = -fPIC @HTTP_CFLAGS@ @INDEX_CFLAGS@ @GLIBMM_CFLAGS@ -DXDG_PREFIX=pinot_xdg
|