Makefile.devel 392 B

123456789101112131415161718192021
  1. # This is the developer's makefile, not the user's makefile.
  2. # Don't use it unless you know exactly what you do!
  3. SHELL = /bin/sh
  4. MAKE = make
  5. AUTOCONF = autoconf-2.63
  6. ACLOCAL = aclocal-1.11
  7. CP = cp
  8. RM = rm -f
  9. all : configures
  10. aclocal.m4 : $(wildcard ../m4/*.m4)
  11. $(ACLOCAL) -I ../m4 -I ../srcm4 --output=$@
  12. configures : configure
  13. configure : configure.ac aclocal.m4
  14. $(AUTOCONF)
  15. force :