+2009-10-10 Sascha Wilde <wilde@sha-bang.de>
+
+ * cedet/ede/proj-shared.el (ede-proj-makefile-target-name): Use
+ .la for Automake.
+
2009-10-09 Chong Yidong <cyd@stupidchicken.com>
* cedet/ede/pconf.el (ede-proj-configure-synchronize): Use
"Return the name of the main target for THIS target."
;; We need some platform gunk to make the .so change to .sl, or .a,
;; depending on the platform we are going to compile against.
- (concat "lib" (ede-name this) ".so"))
+ (concat "lib" (ede-name this)
+ (if (eq (oref (ede-target-parent this) makefile-type)
+ 'Makefile.am)
+ ".la"
+ ".so")))
(defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-makefile-shared-object))
"Return the variable name for THIS's sources."