Makefile.am 796 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ## Process this file with automake to produce Makefile.in
  2. localedir = $(datadir)/locale
  3. AM_CPPFLAGS = \
  4. -DLOCALEDIR=\"$(localedir)\" \
  5. -idirafter $(top_srcdir)/lib/compat \
  6. -I$(top_builddir) \
  7. -I$(top_srcdir)/lib
  8. sbin_PROGRAMS =
  9. if WITH_START_STOP_DAEMON
  10. sbin_PROGRAMS += start-stop-daemon
  11. start_stop_daemon_SOURCES = \
  12. start-stop-daemon.c
  13. start_stop_daemon_LDADD = \
  14. ../lib/compat/libcompat.a \
  15. $(SSD_LIBS)
  16. endif
  17. if WITH_INSTALL_INFO
  18. sbin_PROGRAMS += dpkg-install-info
  19. # Automake has its own install-info rule, gah
  20. dpkg_install_info_SOURCES = install-info.c
  21. dpkg_install_info_LDADD = \
  22. ../lib/compat/libcompat.a
  23. endif
  24. transform = s/dpkg-install-info/install-info/; $(program_transform_name)
  25. uninstall-local:
  26. if WITH_INSTALL_INFO
  27. rm -f $(DESTDIR)$(sbindir)/install-info
  28. endif