Changeset 9417 for trunk/MagicSoft/Cosy


Ignore:
Timestamp:
03/31/09 23:05:33 (15 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy
Files:
1 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/Changelog

    r9222 r9417  
    11                                                                  -*-*- END -*-*-
    22
     3 2009/04/01 Thomas Bretz
     4
     5   * Makefile:
     6     - changed the linking
     7
     8   * base/Makefile:
     9     - changed name of Base to CosyBase (trouble with the same naming
     10       in Mars)
     11
     12   * gui/Makefile
     13     - changed name of Gui to CosyGui (trouble with the same naming
     14       in Mars)
     15
     16
     17 
    318 2009/01/14 Thomas Bretz
    419
  • trunk/MagicSoft/Cosy/Makefile

    r8860 r9417  
    7878# Use $(CXX) -v ... for a more verbose output
    7979#
    80 $(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS) $(MARS_LIB)
     80$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS)
    8181        @echo " Linking shared object $(SOLIB) ..."
    82         $(CXX) $(CXXFLAGS) $(SOFLAG) $(OBJS) $(MARS_LIB) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
     82        $(CXX) $(CXXFLAGS) $(SOFLAG) $(OBJS) $(SUBDIRS:=/*.o) $(ROOTGLIBS) -o $@
    8383
    84 $(PROGRAMS): $(PROGRAMS:=.o) $(SOLIB)
     84$(PROGRAMS): $(PROGRAMS:=.o) $(SOLIB) $(MARS_LIB)
    8585        @echo " Linking $@ ..."
    86         $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $@.o -o $@
     86        $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SOLIB) $(MARS_LIB) $@.o -o $@
     87#       $(CXX) $(CXXFLAGS) $(ROOTGLIBS) $(SUBDIRS:=/*.o) ../Mars/*/*.o $@.o -o $@
    8788
    8889rmcondor:
  • trunk/MagicSoft/Cosy/base/Makefile

    r8844 r9417  
    1212INCLUDES = -I. -I.. -I../mars
    1313
    14 CINT     = Base
     14CINT     = CosyBase
    1515
    1616#------------------------------------------------------------------------------
  • trunk/MagicSoft/Cosy/gui/Makefile

    r8809 r9417  
    1414           -I../mars
    1515
    16 CINT     = Gui
     16CINT     = CosyGui
    1717
    1818#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.