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
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
26 lines
754 B
Makefile
26 lines
754 B
Makefile
moduledir = $(libdir)/nimf/modules/services
|
|
module_LTLIBRARIES = libnimf-preedit-window.la
|
|
|
|
libnimf_preedit_window_la_SOURCES = \
|
|
nimf-preedit-window.c \
|
|
$(NULL)
|
|
|
|
libnimf_preedit_window_la_CFLAGS = \
|
|
$(EXTRA_CFLAGS) \
|
|
-I$(top_srcdir)/libnimf \
|
|
-DG_LOG_DOMAIN=\"nimf\" \
|
|
$(NIMF_PREEDIT_WINDOW_DEPS_CFLAGS)
|
|
|
|
libnimf_preedit_window_la_LDFLAGS = -avoid-version -module $(NIMF_PREEDIT_WINDOW_DEPS_LIBS)
|
|
libnimf_preedit_window_la_LIBADD = $(top_builddir)/libnimf/libnimf.la
|
|
|
|
DISTCLEANFILES = Makefile.in
|
|
|
|
install-data-hook:
|
|
chmod -x $(DESTDIR)$(moduledir)/libnimf-preedit-window.so
|
|
rm -f $(DESTDIR)$(moduledir)/libnimf-preedit-window.la
|
|
|
|
uninstall-hook:
|
|
rm -f $(DESTDIR)$(moduledir)/libnimf-preedit-window.so
|
|
-rmdir -p $(DESTDIR)$(moduledir)
|