Makefile 827 B

1234567891011121314151617181920212223242526
  1. # Created: 2005/03/12
  2. # Author: David Elliott
  3. # For autoconf: Debian in their infinite wisdom decided to improve upon
  4. # the standard autoconf 2.59 macros. Thus Debian's autoconf generates
  5. # a totally different configure script. This fixes it to look
  6. # mostly like Debian's. There are also some fixes pulled in from the OS/2
  7. # fork of autoconf.
  8. # Rule to freeze the m4 so autoconf will actually use it.
  9. # NOTE: VERY important to cd to somewhere there are no .m4 files.
  10. # or at least no aclocal.m4 or else autom4te helpfully picks it up.
  11. .PHONY: all
  12. all: autoconf/autoconf.m4f
  13. AUTOCONF_SOURCES = \
  14. autoconf/c.m4 \
  15. autoconf/general.m4 \
  16. autoconf/libs.m4 \
  17. autoconf/status.m4
  18. AUTOM4TE=autom4te
  19. autoconf/autoconf.m4f: $(AUTOCONF_SOURCES)
  20. $(AUTOM4TE) -B . --language=Autoconf --freeze --output=autoconf/autoconf.m4f