1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- (require 'ede/proj)
- (require 'ede/autoconf-edit)
- (defclass ede-proj-target-scheme (ede-proj-target)
- ((menu :initform nil)
- (keybindings :initform nil)
- (interpreter :initarg :interpreter
- :initform "guile"
- :type string
- :custom string
- :documentation "The preferred interpreter for this code.")
- )
- "This target consists of scheme files.")
- (defmethod ede-proj-tweak-autoconf ((this ede-proj-target-scheme))
- "Tweak the configure file (current buffer) to accommodate THIS."
- (autoconf-insert-new-macro "AM_INIT_GUILE_MODULE"))
- (provide 'ede/proj-scheme)
|