Makefile.am 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ## Process this file with automake to produce Makefile.in.
  2. ##
  3. ## Copyright (C) 2009, 2010, 2011, 2012, 2013,
  4. ## 2014, 2015, 2018 Free Software Foundation, Inc.
  5. ##
  6. ## This file is part of GUILE.
  7. ##
  8. ## GUILE is free software; you can redistribute it and/or modify it
  9. ## under the terms of the GNU Lesser General Public License as
  10. ## published by the Free Software Foundation; either version 3, or
  11. ## (at your option) any later version.
  12. ##
  13. ## GUILE is distributed in the hope that it will be useful, but
  14. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ## GNU Lesser General Public License for more details.
  17. ##
  18. ## You should have received a copy of the GNU Lesser General Public
  19. ## License along with GUILE; see the file COPYING.LESSER. If not,
  20. ## write to the Free Software Foundation, Inc., 51 Franklin Street,
  21. ## Fifth Floor, Boston, MA 02110-1301 USA
  22. GUILE_WARNINGS =
  23. # Loading eval.go happens before boot and therefore before modules are
  24. # resolved. For some reason if compiled without resolve-primitives,
  25. # attempts to resolve primitives at boot fail; weird. Should fix this
  26. # but in the meantime we turn on primitive resolution (which normally
  27. # only happens at -O2).
  28. GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives
  29. include $(top_srcdir)/am/bootstrap.am
  30. # We must build the evaluator first, so that we can be sure to control
  31. # the stack. Then, we build the syntax-case macro expander before the
  32. # rest, in order to speed up parallel builds.
  33. ice-9/psyntax-pp.go: | ice-9/eval.go
  34. $(filter-out ice-9/eval.go ice-9/psyntax-pp.go, $(GOBJECTS)): | \
  35. ice-9/psyntax-pp.go