| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- ## Process this file with automake to produce Makefile.in
- localedir = $(datadir)/locale
- AM_CPPFLAGS = \
- -DLOCALEDIR=\"$(localedir)\" \
- -idirafter $(top_srcdir)/lib/compat \
- -I$(top_builddir) \
- -I$(top_srcdir)/lib
- sbin_PROGRAMS =
- if WITH_START_STOP_DAEMON
- sbin_PROGRAMS += start-stop-daemon
- start_stop_daemon_SOURCES = \
- start-stop-daemon.c
- start_stop_daemon_LDADD = \
- ../lib/compat/libcompat.a \
- $(SSD_LIBS)
- endif
- if WITH_INSTALL_INFO
- sbin_PROGRAMS += dpkg-install-info
- # Automake has its own install-info rule, gah
- dpkg_install_info_SOURCES = install-info.c
- dpkg_install_info_LDADD = \
- ../lib/compat/libcompat.a
- endif
- transform = s/dpkg-install-info/install-info/; $(program_transform_name)
- uninstall-local:
- if WITH_INSTALL_INFO
- rm -f $(DESTDIR)$(sbindir)/install-info
- endif
|