unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Richard G Riley <rileyrgdev@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: help with makefile command line
Date: Thu, 27 Mar 2008 18:28:20 +0100	[thread overview]
Message-ID: <fsglft$95j$2@registered.motzarella.org> (raw)
In-Reply-To: mailman.9409.1206451688.18990.help-gnu-emacs@gnu.org

"Balaji V. Iyer" <bviyer@ncsu.edu> writes:

> Hello Everyone,
>     I use the compile option extenstively in emacs. When I type "M-x
> compile" the default line is "make -k" Many times I do not have a make
> file thus I would lke the default line to be
>  
> "gcc -ansi -O4 -Wall <c_source_file>"
>  
> How do I do this?
>  
> I tried the following command but it doesn't seem to work (If anyone
> have a better idea please let me know).
>  
> (function
>  (lambda ()
>    (unless (or (file-exists-p "makefile")
>                (file-exists-p "Makefile"))
>      (setq compile-command
>            (concat "gcc -Wall -O3 -o"
>                    (file-name-sans-extension (file-name-nondirectory
> buffer-file -name))
>                    " "
>                    (file-name-nondirectory buffer-file-name))))))
>  
>  
>  
> Any help is greatly appreciated.
>  
> Thanks,


Here is the section from my .emacs which might be of help to you - see
the f10 binding to mycompile.


,----
| (defun my-c-init()
| 
|   (line-number-mode 1)
| 
|   (setq compilation-window-height 16)
|   (setq compilation-finish-functions
| 	(lambda (buf str)
| 	  (if (string-match "exited abnormally" str)
| 
| 	      ;;there were errors
| 	      (message "compilation errors, F11 to goto next error.")
| 
| 	    ;;no errors, make the compilation window go away in 0.5 seconds
| 	    ;;        (run-at-time 5.0 nil 'delete-windows-on buf)
| 	    (message "NO COMPILATION ERRORS!"))))
|     
| 
|   (c-set-style "linux")
| 
|   (setq gdb-show-main t)  
|   (setq gdb-many-windows t)
| 
|   (let ((dl '(
|               ([f1] . jump-man-page)
| ;              ([backtab] . semantic-complete-analyze-inline)
|               ;;	      ([f5] . find-tag-noconfirm)
|               ([f6] . find-tag-repeat)
|               ([f7] . pop-tag-mark)
|               ([f2] . gdb-restore-windows)
|               ([f3] . cscope-find-global-definition-no-prompting)
|               ([f4] . repeat)
|               ([f10] . (lambda()(interactive)(mycompile)))
|               ([f11] . next-error)
|               ([f12] . gdb))))
|     (dolist (i dl)
|          
|       (define-key c-mode-base-map (car i) (cdr i))
|       ;;       (define-key c-mode-map (car i) (cdr i))
|       ;;       (define-key c++-mode-map (car i) (cdr i))
|       ))
| 
|   (define-key c-mode-map
|     "\C-c\C-f"
|     'php-search-documentation)
| 
|   (define-key c-mode-map
|     "\C-c\C-m"
|     'php-browse-manual)
| 
|   (define-key c-mode-map
|     "\C-c\C-c"
|     'c-browse-faq)
| 
|   (global-unset-key "\M-/")
|   (show-paren-mode 1)
| 
| )
| 
| (add-hook 'c-mode-common-hook 'my-c-init)
| 
| (defun mycompile()
| 
|   (unless (or (file-exists-p "makefile")
|   	      (file-exists-p "Makefile"))
|     (set (make-local-variable 'compile-command)
| 	 (let ((file (file-name-nondirectory buffer-file-name)))
| 	   (format "%s -o %s %s %s %s %s"
| 		   (or (getenv "CC") "gcc")
| 		   (file-name-sans-extension file)
| 		   (or (getenv "GTKFLAGS") "")
| 		   (or (getenv "CPPFLAGS")"-DDEBUG=9")
| 		   (or (getenv "CFLAGS") "-std=c99 -pedantic -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion  -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -g")
| 		   file)))
|     
|     )
|   (compile compile-command)
|   )
| 
`----



  parent reply	other threads:[~2008-03-27 17:28 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.9409.1206451688.18990.help-gnu-emacs@gnu.org>
2008-03-27 15:36 ` help with makefile command line step
2008-03-27 17:28 ` Richard G Riley [this message]
2008-03-28  2:51   ` stan
2008-03-28  3:01     ` Richard G Riley
2008-03-28  7:11       ` stan
2008-03-28 12:57         ` Richard G Riley
2008-03-28 20:33           ` stan
2008-03-29 13:18             ` Richard G Riley
2008-03-29 15:33     ` Kevin Rodgers
2008-03-25 13:09 Balaji V. Iyer
2008-03-25 14:04 ` William Xu
2008-03-26  4:19 ` Eli Zaretskii
2008-03-26  4:25   ` Mike Mattie
2008-03-26  4:42   ` Mike Mattie
2008-03-26  4:57     ` Mike Mattie
2008-03-26 16:20 ` Nikolaj Schumacher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='fsglft$95j$2@registered.motzarella.org' \
    --to=rileyrgdev@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).