Makefile.am 775 B

1234567891011121314151617181920212223242526272829303132
  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. if WITH_START_STOP_DAEMON
  8. sbin_PROGRAMS = start-stop-daemon
  9. start_stop_daemon_SOURCES = \
  10. start-stop-daemon.c
  11. start_stop_daemon_LDADD = ../libcompat/libcompat.a $(SSD_LIBS)
  12. endif
  13. EXTRA_DIST = install-info.c
  14. CLEANFILES = install-info install-info-stamp
  15. # Automake has its own install-info rule, gah
  16. all-local: install-info-stamp
  17. install-info-stamp: $(srcdir)/install-info.c
  18. $(CC) $(CFLAGS) -o install-info $(srcdir)/install-info.c
  19. touch $@
  20. install-exec-local: install-info-stamp
  21. $(mkdir_p) $(DESTDIR)$(sbindir)
  22. $(INSTALL_PROGRAM) install-info $(DESTDIR)$(sbindir)