Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
27 lines
747 B
Makefile
27 lines
747 B
Makefile
moduledir = $(libdir)/nimf/modules/services
|
|
module_LTLIBRARIES = libnimf-indicator.la
|
|
|
|
libnimf_indicator_la_SOURCES = \
|
|
nimf-indicator.c \
|
|
$(NULL)
|
|
|
|
libnimf_indicator_la_CFLAGS = \
|
|
$(EXTRA_CFLAGS) \
|
|
-I$(top_srcdir)/libnimf \
|
|
-DG_LOG_DOMAIN=\"nimf\" \
|
|
-DNIMF_MODULE_DIR=\"$(libdir)/nimf/modules\" \
|
|
$(NIMF_INDICATOR_DEPS_CFLAGS)
|
|
|
|
libnimf_indicator_la_LDFLAGS = -avoid-version -module $(NIMF_INDICATOR_DEPS_LIBS)
|
|
libnimf_indicator_la_LIBADD = $(top_builddir)/libnimf/libnimf.la
|
|
|
|
DISTCLEANFILES = Makefile.in
|
|
|
|
install-data-hook:
|
|
chmod -x $(DESTDIR)$(moduledir)/libnimf-indicator.so
|
|
rm -f $(DESTDIR)$(moduledir)/libnimf-indicator.la
|
|
|
|
uninstall-hook:
|
|
rm -f $(DESTDIR)$(moduledir)/libnimf-indicator.so
|
|
-rmdir -p $(DESTDIR)$(moduledir)
|