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
35 lines
799 B
Makefile
35 lines
799 B
Makefile
bin_PROGRAMS = nimf-settings
|
|
|
|
man_MANS = nimf-settings.1
|
|
|
|
applicationsdir = $(datadir)/applications
|
|
applications_DATA = nimf-settings.desktop
|
|
|
|
autostartdir = /etc/xdg/autostart
|
|
autostart_DATA = nimf-settings-autostart.desktop
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
gsettings_SCHEMAS = org.nimf.settings.gschema.xml
|
|
@GSETTINGS_RULES@
|
|
|
|
AM_CFLAGS = \
|
|
$(EXTRA_CFLAGS) \
|
|
-I$(top_srcdir)/libnimf \
|
|
-DNIMF_COMPILATION \
|
|
-DNIMF_MODULE_DIR=\"$(libdir)/nimf/modules\" \
|
|
-DG_LOG_DOMAIN=\"nimf\"
|
|
|
|
nimf_settings_SOURCES = nimf-settings.c
|
|
nimf_settings_CFLAGS = \
|
|
$(NIMF_SETTINGS_DEPS_CFLAGS) \
|
|
$(AM_CFLAGS)
|
|
|
|
nimf_settings_LDFLAGS = $(NIMF_SETTINGS_DEPS_LIBS)
|
|
nimf_settings_LDADD = $(top_builddir)/libnimf/libnimf.la
|
|
|
|
DISTCLEANFILES = \
|
|
Makefile.in \
|
|
nimf-settings.desktop \
|
|
nimf-settings-autostart.desktop
|