mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
4fca42dd6d
svn path=/branches/kpdf_experiments/kdegraphics/kpdf/; revision=360211
56 lines
2 KiB
Makefile
56 lines
2 KiB
Makefile
# set the include path for X, qt and KDE
|
|
INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../splash -I$(srcdir)/../goo -I$(srcdir)/../xpdf \
|
|
-I$(top_builddir)/kpdf/kpdf/conf -I$(srcdir)/conf $(all_includes) $(FREETYPE_CFLAGS)
|
|
|
|
# compile sources in subdirectories
|
|
SUBDIRS = conf .
|
|
|
|
# let automoc handle all of the meta source files (moc)
|
|
METASOURCES = AUTO
|
|
|
|
messages: rc.cpp
|
|
$(XGETTEXT) *.cpp -o $(podir)/kpdf.pot
|
|
|
|
# TODO: fix the code!
|
|
KDE_OPTIONS = nofinal
|
|
|
|
KDE_ICON = kpdf
|
|
|
|
# this Makefile creates both a KPart application and a KPart
|
|
#########################################################################
|
|
# APPLICATION SECTION
|
|
#########################################################################
|
|
# this is the program that gets installed. it's name is used for all
|
|
# of the other Makefile.am variables
|
|
bin_PROGRAMS = kpdf
|
|
|
|
# the application source, library search path, and link libraries
|
|
kpdf_SOURCES = main.cpp kpdf_shell.cpp
|
|
kpdf_LDFLAGS = $(KDE_RPATH) $(all_libraries)
|
|
kpdf_LDADD = $(LIB_KPARTS)
|
|
|
|
EXTRA_DIST = kpdf.desktop
|
|
xdg_apps_DATA = kpdf.desktop
|
|
|
|
# this is where the shell's XML-GUI resource file goes
|
|
shellrcdir = $(kde_datadir)/kpdf
|
|
shellrc_DATA = kpdf_shell.rc
|
|
|
|
#########################################################################
|
|
# KPART SECTION
|
|
#########################################################################
|
|
kde_module_LTLIBRARIES = libkpdfpart.la
|
|
|
|
# the Part's source, library search path, and link libraries
|
|
libkpdfpart_la_SOURCES = QOutputDev.cpp kpdf_part.cpp pageview.cpp thumbnaillist.cpp kpdf_error.cpp xpdf_errors.cpp thumbnailgenerator.cpp document.cpp page.cpp searchwidget.cpp toc.cpp kpdf_dcop.skel pageviewutils.cpp
|
|
libkpdfpart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
|
|
libkpdfpart_la_LIBADD = ../xpdf/libxpdf.la conf/libconf.la $(LIB_KPARTS) $(LIB_KFILE) $(LIB_KDEPRINT) $(LIB_KUTILS) -lm
|
|
|
|
# this is where the desktop file will go
|
|
partdesktopdir = $(kde_servicesdir)
|
|
partdesktop_DATA = kpdf_part.desktop
|
|
|
|
# this is where the part's XML-GUI resource file goes
|
|
partrcdir = $(kde_datadir)/kpdfpart
|
|
partrc_DATA = kpdf_part.rc
|
|
|