~ubuntu-branches/ubuntu/karmic/cedet/karmic

« back to all changes in this revision

Viewing changes to ede/ede-proj-obj.el

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2006-10-17 05:51:33 UTC
  • mfrom: (2.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20061017055133-dlxjfrmuevx5p7uw
Tags: 1:1.0pre3-6
Made Depends to Pre-Depends in cedet-common.  Let's see what happens.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; ede-proj-obj.el --- EDE Generic Project Object code generation support
2
2
 
3
 
;;;  Copyright (C) 1998, 1999, 2000  Eric M. Ludlam
 
3
;;;  Copyright (C) 1998, 1999, 2000, 2005  Eric M. Ludlam
4
4
 
5
5
;; Author: Eric M. Ludlam <zappo@gnu.org>
6
6
;; Keywords: project, make
7
 
;; RCS: $Id: ede-proj-obj.el,v 1.10 2000/10/14 02:54:06 zappo Exp $
 
7
;; RCS: $Id: ede-proj-obj.el,v 1.11 2005/04/06 01:20:26 zappo Exp $
8
8
 
9
9
;; This software is free software; you can redistribute it and/or modify
10
10
;; it under the terms of the GNU General Public License as published by
140
140
   ;; Only use this linker when c++ exists.
141
141
   :sourcetype '(ede-source-c++)
142
142
   :variables  '(("CXX_LINK" .
143
 
                  "$(CXX) $(CFLAGS) $(LDFLAGS) -L. -o $@ $^")
 
143
                  "$(CXX) $(CFLAGS) $(LDFLAGS) -L. -o $@")
144
144
                 )
145
145
   :commands '("$(CXX_LINK) $^")
146
146
   :autoconf '("AC_PROG_CXX")
153
153
   :name "ld"
154
154
   :variables  '(("LD" . "ld")
155
155
                 ("LD_LINK" .
156
 
                  "$(LD) $(LDFLAGS) -L. -o $@ $^")
 
156
                  "$(LD) $(LDFLAGS) -L. -o $@")
157
157
                 )
158
158
   :commands '("$(LD_LINK) $^")
159
159
   :objectextention "")