Makefile.am 945 B

12345678910111213141516171819202122232425262728
  1. # Makefile.am
  2. # copyright (C) 2003 by Frank Mori Hess
  3. # email : fmhess@users.sourceforge.net
  4. #
  5. # This Makefile.am is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. SUBDIRS = include lib examples test drivers doc language usb
  10. EXTRA_DIST = etc util m4 README.HAMEG README.hp82335 bootstrap
  11. ACLOCAL_AMFLAGS = -I m4
  12. distclean-local:
  13. $(RM) $(srcdir)/util/linux_flags/fake.*
  14. $(RM) $(srcdir)/util/linux_flags/.*.cmd
  15. $(RM) -r $(srcdir)/util/linux_flags/.tmp_versions
  16. dist-hook:
  17. -find $(distdir) -depth -name '.svn' -type d -exec $(RM) -r \{\} \;
  18. -find $(distdir) \( -name '*~' -o -name '.#*' \) -exec $(RM) \{\} \;
  19. $(RM) $(distdir)/util/linux_flags/fake.*
  20. $(RM) $(distdir)/util/linux_flags/.*.cmd
  21. $(RM) -r $(distdir)/util/linux_flags/.tmp_versions