Ignore:
Timestamp:
Feb 22, 2006 11:16:19 AM (18 years ago)
Author:
dkearney
Message:

reorganized tcl directory

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/tcl/Makefile.in

    r205 r207  
    1111#========================================================================
    1212
    13 lib_BINARIES=$(RapptureLibrary_LIB_FILE)
     13lib_BINARIES=$(Rappture_LIB_FILE)
    1414BINARIES=$(lib_BINARIES)
    1515
     
    1919#========================================================================
    2020
    21 RapptureLibrary_SOURCES = \
     21Rappture_SOURCES = \
     22  src/Rappture_Init.cc \
    2223  src/RpLibraryTclInterface.cc
    23 SOURCES = $(RapptureLibrary_SOURCES)
     24SOURCES = $(Rappture_SOURCES)
    2425
    2526#========================================================================
     
    3031#========================================================================
    3132
    32 RapptureLibrary_OBJECTS = \
     33Rappture_OBJECTS = \
     34  Rappture_Init.$(OBJEXT) \
    3335  RpLibraryTclInterface.$(OBJEXT)
    34 OBJECTS = $(RapptureLibrary_OBJECTS)
    35 
    36 #========================================================================
    37 # The substitution of "RapptureLibrary_LIB_FILE" into the variable name below
     36OBJECTS = $(Rappture_OBJECTS)
     37
     38#========================================================================
     39# The substitution of "Rappture_LIB_FILE" into the variable name below
    3840# let's us refer to the objects for the library without knowing the name
    3941# of the library in advance.  It also lets us use the "$@" variable in
     
    4244#========================================================================
    4345
    44 RapptureLibrary_LIB_FILE = @RapptureLibrary_LIB_FILE@
    45 $(RapptureLibrary_LIB_FILE)_OBJECTS = $(RapptureLibrary_OBJECTS)
     46Rappture_LIB_FILE = @Rappture_LIB_FILE@
     47$(Rappture_LIB_FILE)_OBJECTS = $(Rappture_OBJECTS)
    4648
    4749#========================================================================
     
    228230# above.
    229231#
    230 # $(RapptureLibrary_LIB_FILE) should be listed as part of the BINARIES variable
     232# $(Rappture_LIB_FILE) should be listed as part of the BINARIES variable
    231233# at the top of the Makefile.  That will ensure that this target is built
    232234# when you run "make binaries".
     
    236238#========================================================================
    237239
    238 $(RapptureLibrary_LIB_FILE): $(RapptureLibrary_OBJECTS)
    239         -rm -f $(RapptureLibrary_LIB_FILE)
     240$(Rappture_LIB_FILE): $(Rappture_OBJECTS)
     241        -rm -f $(Rappture_LIB_FILE)
    240242        @MAKE_LIB@  -lrappture
    241         $(RANLIB) $(RapptureLibrary_LIB_FILE) -lrappture
     243        $(RANLIB) $(Rappture_LIB_FILE) -lrappture
    242244
    243245#========================================================================
     
    257259#RpRusage.$(OBJEXT): $(srcdir)/src/RpRusage.c
    258260#       $(COMPILE) -c `@CYGPATH@ $(srcdir)/src/RpRusage.c` -o $@
     261
     262Rappture_Init.$(OBJEXT): $(srcdir)/src/Rappture_Init.cc
     263        $(COMPILEXX) -c `@CYGPATH@ $(srcdir)/src/Rappture_Init.cc` -o $@
    259264
    260265RpLibraryTclInterface.$(OBJEXT): $(srcdir)/src/RpLibraryTclInterface.cc
Note: See TracChangeset for help on using the changeset viewer.