You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
15 years ago
|
## Makefile.am of kdebase/kioslave/thumbnail
|
||
|
|
||
|
INCLUDES = $(all_includes) $(EXR_FLAGS)
|
||
|
AM_LDFLAGS = $(all_libraries) $(KDE_RPATH)
|
||
|
METASOURCES = AUTO
|
||
|
|
||
|
if have_xcursor
|
||
|
CURSOR_MODULE = cursorthumbnail.la
|
||
|
CURSOR_DATAFILE = cursorthumbnail.desktop
|
||
|
endif
|
||
|
|
||
|
if include_EXR_MODULES
|
||
|
EXR_MODULE = exrthumbnail.la
|
||
|
EXR_DATAFILE = exrthumbnail.desktop
|
||
|
endif
|
||
|
|
||
|
kde_module_LTLIBRARIES = kio_thumbnail.la imagethumbnail.la \
|
||
|
textthumbnail.la htmlthumbnail.la \
|
||
|
djvuthumbnail.la $(CURSOR_MODULE) \
|
||
|
$(EXR_MODULE)
|
||
|
|
||
|
kio_thumbnail_la_SOURCES = thumbnail.cpp
|
||
|
kio_thumbnail_la_LIBADD = $(LIB_KIO)
|
||
|
kio_thumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
imagethumbnail_la_SOURCES = imagecreator.cpp
|
||
|
imagethumbnail_la_LIBADD = $(LIB_KIO) # for kimageio
|
||
|
imagethumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
textthumbnail_la_SOURCES = textcreator.cpp
|
||
|
textthumbnail_la_LIBADD = $(LIB_KIO) # for kmimetype
|
||
|
textthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
htmlthumbnail_la_SOURCES = htmlcreator.cpp
|
||
|
htmlthumbnail_la_LIBADD = $(LIB_KHTML)
|
||
|
htmlthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
djvuthumbnail_la_SOURCES = djvucreator.cpp
|
||
|
djvuthumbnail_la_LIBADD = $(LIB_KDECORE)
|
||
|
djvuthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
cursorthumbnail_la_SOURCES = cursorcreator.cpp
|
||
|
cursorthumbnail_la_LIBADD = $(LIB_KDECORE) $(LIB_XCURSOR)
|
||
|
cursorthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
exrthumbnail_la_SOURCES = exrcreator.cpp
|
||
|
exrthumbnail_la_LIBADD = $(LIB_KDECORE) $(LIB_EXR)
|
||
|
exrthumbnail_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
|
||
|
|
||
|
noinst_HEADERS = thumbnail.h imagecreator.h textcreator.h htmlcreator.h \
|
||
|
djvucreator.h cursorcreator.h \
|
||
|
exrcreator.h
|
||
|
|
||
|
kdelnk_DATA = thumbnail.protocol
|
||
|
kdelnkdir = $(kde_servicesdir)
|
||
|
|
||
|
servicetypes_DATA = thumbcreator.desktop
|
||
|
servicetypesdir = $(kde_servicetypesdir)
|
||
|
|
||
|
services_DATA = imagethumbnail.desktop textthumbnail.desktop \
|
||
|
htmlthumbnail.desktop \
|
||
|
djvuthumbnail.desktop \
|
||
|
$(CURSOR_DATAFILE) $(EXR_DATAFILE)
|
||
|
|
||
|
servicesdir = $(kde_servicesdir)
|
||
|
|
||
|
messages:
|
||
|
$(XGETTEXT) *.cpp -o $(podir)/kio_thumbnail.pot
|
||
|
|