123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- (require 'ede/proj)
- (require 'ede/pmake)
- (defclass ede-proj-target-aux (ede-proj-target)
- ((sourcetype :initform '(ede-aux-source)))
- "This target consists of aux files such as READMEs and COPYING.")
- (defvar ede-aux-source
- (ede-sourcecode "ede-aux-source-txt"
- :name "Auxiliary Text"
- :sourcepattern "^[A-Z]+$\\|\\.txt$")
- "Miscellaneous fields definition.")
- (defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-aux))
- "Return the variable name for THIS's sources."
- (concat (ede-pmake-varname this) "_AUX"))
- (provide 'ede/proj-aux)
|