Makefile.am 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ## Process this file with automake to produce Makefile.in.
  2. EXTRA_DIST =
  3. EXTRA_DIST += Makefile.am.in
  4. EXTRA_DIST += afs.m4
  5. EXTRA_DIST += codeset.m4
  6. EXTRA_DIST += error.m4
  7. EXTRA_DIST += exitfail.m4
  8. EXTRA_DIST += extensions.m4
  9. EXTRA_DIST += fstypename.m4
  10. EXTRA_DIST += fsusage.m4
  11. EXTRA_DIST += getopt.m4
  12. EXTRA_DIST += gettext.m4
  13. EXTRA_DIST += glibc21.m4
  14. EXTRA_DIST += iconv.m4
  15. EXTRA_DIST += intdiv0.m4
  16. EXTRA_DIST += inttypes-pri.m4
  17. EXTRA_DIST += inttypes.m4
  18. EXTRA_DIST += inttypes_h.m4
  19. EXTRA_DIST += isc-posix.m4
  20. EXTRA_DIST += lcmessage.m4
  21. EXTRA_DIST += lib-ld.m4
  22. EXTRA_DIST += lib-link.m4
  23. EXTRA_DIST += lib-prefix.m4
  24. EXTRA_DIST += ls-mntd-fs.m4
  25. EXTRA_DIST += malloc.m4
  26. EXTRA_DIST += mountlist.m4
  27. EXTRA_DIST += np_coreutils.m4
  28. EXTRA_DIST += onceonly.m4
  29. EXTRA_DIST += progtest.m4
  30. EXTRA_DIST += realloc.m4
  31. EXTRA_DIST += stdint_h.m4
  32. EXTRA_DIST += uintmax_t.m4
  33. EXTRA_DIST += ulonglong.m4
  34. EXTRA_DIST += unlocked-io.m4
  35. EXTRA_DIST += xalloc.m4
  36. Makefile.am: Makefile.am.in
  37. rm -f $@ $@t
  38. (echo "## Process this file with automake to produce Makefile.in."; \
  39. echo EXTRA_DIST =; \
  40. echo "EXTRA_DIST += Makefile.am.in"; \
  41. ls -1 *.m4 | sed 's/^/EXTRA_DIST += /'; echo ) \
  42. >> $@t
  43. sed -n '/^Makefile\.am:/,$$p' $@.in >> $@t
  44. chmod a-w $@t
  45. mv $@t $@