diff options
Diffstat (limited to 'doc/misc/ede.texi')
| -rw-r--r-- | doc/misc/ede.texi | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index 584b0d7ee50..412176986cc 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi | |||
| @@ -955,18 +955,16 @@ The example for Makefiles looks like this: | |||
| 955 | ;;; MAKEFILE | 955 | ;;; MAKEFILE |
| 956 | 956 | ||
| 957 | (defclass ede-generic-makefile-project (ede-generic-project) | 957 | (defclass ede-generic-makefile-project (ede-generic-project) |
| 958 | ((buildfile :initform "Makefile") | 958 | ((buildfile :initform "Makefile")) |
| 959 | ) | ||
| 960 | "Generic Project for makefiles.") | 959 | "Generic Project for makefiles.") |
| 961 | 960 | ||
| 962 | (defmethod ede-generic-setup-configuration ((proj ede-generic-makefile-project) config) | 961 | (defmethod ede-generic-setup-configuration ((proj ede-generic-makefile-project) config) |
| 963 | "Setup a configuration for Make." | 962 | "Set up a configuration for Make." |
| 964 | (oset config build-command "make -k") | 963 | (oset config build-command "make -k") |
| 965 | (oset config debug-command "gdb ") | 964 | (oset config debug-command "gdb ")) |
| 966 | ) | ||
| 967 | 965 | ||
| 968 | (ede-generic-new-autoloader "generic-makefile" "Make" | 966 | (ede-generic-new-autoloader "generic-makefile" "Make" |
| 969 | "Makefile" 'ede-generic-makefile-project) | 967 | "Makefile" 'ede-generic-makefile-project) |
| 970 | @end example | 968 | @end example |
| 971 | 969 | ||
| 972 | This example project will detect any directory with the file | 970 | This example project will detect any directory with the file |