osx snow leopard - Mac os x: How to have makefile reference /Applications/application -
os mac os x 10.6.6 emacs 23.2.1
i'm trying install magit on carbon emacs using proposed make solution. i'm complete makefile newby might on complete wrong path altogether. makefile displays:
%.elc: %.el $(batch) --eval '(byte-compile-file "$<")'
which gets expanded to:
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \".\") load-path))" --eval '(byte-compile-file "magit.el")'
what understand. comes with:
cannot open load file: subst-ksc
what after bit of googling reveals missing libraries. realized emacs referenced in expanded command pointing /usr/bin/emacs 1 big file, don't see normal lisp / site-lisp / etc directories. know prefered emacs carbon emacs located in /application/emacs.app opens when clicking on it, or alternatively, can open in terminal:
open /application/myapp.app
finally title question: how can make makefile using emacs.app on applications directory? hope here knows answer, or can point me alternatives.
regards, jeroen.
bash-3.2$ emacsloadpath=/usr/share/emacs/22.1/site-lisp:/usr/share/emacs/22.1/lisp emacs - batch -eval '(print "hi")' "hi" bash-3.2$ emacs -batch -eval '(print "hi")' cannot open load file: subst-ksc bash-3.2$
Comments
Post a Comment