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.
35 lines
965 B
35 lines
965 B
SUBDIRS = apps
|
|
|
|
bin_PROGRAMS = kappfinder
|
|
kappfinder_SOURCES = main.cpp toplevel.cpp common.cpp
|
|
kappfinder_LDADD = $(LIB_KDEUI) $(LIB_KIO)
|
|
kappfinder_LDFLAGS = $(all_libraries) $(KDE_RPATH)
|
|
|
|
noinst_PROGRAMS = kappfinder_install
|
|
kappfinder_install_SOURCES = main_install.cpp common.cpp
|
|
kappfinder_install_LDADD = $(LIB_KDEUI)
|
|
kappfinder_install_LDFLAGS = $(all_libraries) $(KDE_RPATH)
|
|
|
|
INCLUDES = $(all_includes)
|
|
METASOURCES = AUTO
|
|
|
|
install-data-local: runkappfinder_$(RUN_KAPPFINDER)
|
|
|
|
runkappfinder_yes:
|
|
echo "Installing non-KDE applications"
|
|
pwd=`pwd`; \
|
|
(cd $(srcdir) && $$pwd/kappfinder_install "$(DESTDIR)$(kde_appsdir)")
|
|
|
|
runkappfinder_no:
|
|
|
|
KDE_ICON = kappfinder
|
|
|
|
xdg_apps_DATA = kappfinder.desktop
|
|
|
|
messages:
|
|
$(XGETTEXT) $(kappfinder_SOURCES) -o $(podir)/kappfinder.pot
|
|
|
|
install-data-local: uninstall.desktop
|
|
$(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/System
|
|
$(INSTALL_DATA) $(srcdir)/uninstall.desktop $(DESTDIR)$(kde_appsdir)/System/kappfinder.desktop
|