Ignore:
Timestamp:
Apr 30, 2008, 6:30:42 PM (16 years ago)
Author:
garnier
Message:

r818@wl-72126: garnier | 2008-04-30 12:42:00 +0200
modif mise a jour sur le cvs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/geant4/config/common.gmk

    r787 r790  
    1 # $Id: common.gmk,v 1.51 2008/04/04 10:35:20 gcosmo Exp $
     1# $Id: common.gmk,v 1.52 2008/04/30 10:40:12 lgarnier Exp $
    22# ----------------------------------------------------------------
    33# Common part of GNUmakefile for libraries.  John Allison, 5/7/95.
     
    1212G4TMPDIR := $(G4TMP)/$(G4SYSTEM)/$(name)
    1313
    14 ifneq ($(G4INTY_BUILD_QT),)
    15   dependencies := $(moc_dependencies)
    16 endif
    17 dependencies += $(patsubst src/%.cc,$(G4TMPDIR)/%.d,$(sources))
     14sources      := $(wildcard src/*.cc)
     15dependencies := $(patsubst src/%.cc,$(G4TMPDIR)/%.d,$(sources))
     16objects      := $(patsubst src/%.cc,$(G4TMPDIR)/%.o,$(sources))
    1817
    1918ifneq ($(G4INTY_BUILD_QT),)
    20   objects := $(moc_objects)
     19 sources      += $(moc_sources)
     20 dependencies += $(moc_dependencies)
     21 objects      += $(moc_objects)
    2122endif
    22 sources += $(wildcard src/*.cc)
    23 
    24 objects += $(patsubst src/%.cc,$(G4TMPDIR)/%.o,$(sources))
    2523
    2624   g4libraries_to_build :=
Note: See TracChangeset for help on using the changeset viewer.