Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d751f122
Commit
d751f122
authored
Oct 10, 2009
by
Chong Yidong
Browse files
* cedet/ede/proj-shared.el (ede-proj-makefile-target-name): Use .la
for Automake.
parent
ec6870e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cedet/ede/proj-shared.el
lisp/cedet/ede/proj-shared.el
+5
-1
No files found.
lisp/ChangeLog
View file @
d751f122
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
...
...
lisp/cedet/ede/proj-shared.el
View file @
d751f122
...
...
@@ -150,7 +150,11 @@ We need to override -program which has an LDADD element."
"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."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment