Makefile.am 653 B

1234567891011121314151617181920212223242526272829
  1. ## Process this file with automake to produce Makefile.in
  2. localedir = $(datadir)/locale
  3. INCLUDES = \
  4. -DLOCALEDIR=\"$(localedir)\" \
  5. -idirafter $(top_srcdir)/libcompat \
  6. -I$(top_srcdir)/lib
  7. sbin_PROGRAMS =
  8. if WITH_START_STOP_DAEMON
  9. sbin_PROGRAMS += start-stop-daemon
  10. start_stop_daemon_SOURCES = \
  11. start-stop-daemon.c
  12. start_stop_daemon_LDADD = ../libcompat/libcompat.a $(SSD_LIBS)
  13. endif
  14. sbin_PROGRAMS += dpkg-install-info
  15. # Automake has its own install-info rule, gah
  16. dpkg_install_info_SOURCES = install-info.c
  17. dpkg_install_info_LDADD = ../libcompat/libcompat.a
  18. transform = s/dpkg-install-info/install-info/; $(program_transform_name)