Variable: semantic-ede-grammar-compiler-wisent

semantic-ede-grammar-compiler-wisent is a variable defined in ede-grammar.el.gz.

Value

#s(semantic-ede-grammar-compiler-class eieio--unbound "emacs"
				       (("EMACS" . "emacs")
					("EMACSFLAGS"
					 . "-batch --no-site-file --eval '(setq debug-on-error t)'")
					("require"
					 . "$(foreach r,$(1),(require (quote $(r))))"))
				       (semantic-ede-source-grammar-wisent)
				       (#s(ede-makefile-rule "%-wy.el"
							     "%.wy"
							     ("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) --eval '(progn $(call require,$(PRELOADS)))' -f semantic-grammar-batch-build-packages $^")
							     nil))
				       eieio--unbound nil "-wy.el" nil
				       nil)

Documentation

Compile Emacs Lisp programs.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ede-grammar.el.gz
(defvar semantic-ede-grammar-compiler-wisent
  (semantic-ede-grammar-compiler-class
   :name "emacs"
   :variables '(("EMACS" . "emacs")
		("EMACSFLAGS" . "-batch --no-site-file --eval '(setq debug-on-error t)'")
		("require" . "$(foreach r,$(1),(require (quote $(r))))"))
   :rules (list (ede-makefile-rule
		 :target "%-wy.el"
		 :dependencies "%.wy"
		 :rules '("$(EMACS) $(EMACSFLAGS) $(addprefix -L ,$(LOADPATH)) \
--eval '(progn $(call require,$(PRELOADS)))' -f semantic-grammar-batch-build-packages $^")))
   :sourcetype '(semantic-ede-source-grammar-wisent)
   :objectextention "-wy.el"
   )
  "Compile Emacs Lisp programs.")