]> code.delx.au - gnu-emacs/blobdiff - lisp/cedet/ede/proj-misc.el
* cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
[gnu-emacs] / lisp / cedet / ede / proj-misc.el
index 0674989e2210c365d002d4ee353720f9cddc00b3..5907dcd5d4794da278a2df61fe42ff9dcfc4796a 100644 (file)
@@ -1,7 +1,7 @@
-;;; ede-proj-nusc.el --- EDE Generic Project Emacs Lisp support
+;;; ede-proj-misc.el --- EDE Generic Project Emacs Lisp support
 
-;;;  Copyright (C) 1998, 1999, 2000, 2001, 2008
-;;; Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000, 2001, 2008, 2009
+;;   Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: project, make
@@ -23,7 +23,7 @@
 
 ;;; Commentary:
 ;;
-;; Handle miscelaneous compilable projects in and EDE Project file.
+;; Handle miscellaneous compilable projects in and EDE Project file.
 ;; This misc target lets the user link in custom makefiles to an EDE
 ;; project.
 
@@ -31,6 +31,8 @@
 (require 'ede/proj-comp)
 
 ;;; Code:
+
+;; FIXME this isn't how you spell "miscellaneous". :(
 (defclass ede-proj-target-makefile-miscelaneous (ede-proj-target-makefile)
   ((sourcetype :initform (ede-misc-source))
    (availablecompilers :initform (ede-misc-compile))
@@ -42,7 +44,7 @@
                "Miscellaneous sources which have a specialized makefile.
 The sub-makefile is used to build this target.")
    )
-   "Miscelaneous target type.
+   "Miscellaneous target type.
 A user-written makefile is used to build this target.
 All listed sources are included in the distribution.")
 
@@ -50,7 +52,7 @@ All listed sources are included in the distribution.")
   (ede-sourcecode "ede-misc-source"
                  :name "Miscelaneous"
                  :sourcepattern ".*")
-  "Miscelaneous fiels definition.")
+  "Miscellaneous field definition.")
 
 (defvar ede-misc-compile
   (ede-compiler "ede-misc-compile"
@@ -80,7 +82,7 @@ All listed sources are included in the distribution.")
 (defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous))
   "Create the make rule needed to create an archive for THIS."
   ;; DO NOT call the next method.  We will never have any compilers,
-  ;; or any dependencies, or stuff like this.  This rull will lets us
+  ;; or any dependencies, or stuff like this.  This rule will let us
   ;; deal with it in a nice way.
   (insert (ede-name this) ": ")
   (with-slots (submakefile) this
@@ -90,4 +92,5 @@ All listed sources are included in the distribution.")
 
 (provide 'ede/proj-misc)
 
+;; arch-tag: e5e5f8d2-9897-4a1b-8a29-5944ec5a892d
 ;;; ede/proj-misc.el ends here