Ignore:
Timestamp:
02/06/04 17:44:49 (21 years ago)
Author:
blanch
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Simulation/Detector/Camera/Makefile.rules

    r2344 r3045  
     1include $(CINT)Dep.d
    12
    2 depend:
    3         @makedepend $(SRCS) $(INCLUDES) -I$(INCLUDE_CPLUS) $(ROOTCFLAGS) \
    4         -f Makefile.depend 2> kk.kk ; cat kk.kk
    5 
    6 $(LIB): $(OBJS) $(HEADERS) $(CINT)Cint.o
     3$(LIB): $(OBJS) $(CINT)Cint.o
    74        @echo " - Building Library lib$(LIB)"
    85        $(AR) $(LIB) *.o
    96        @echo " "
    107
    11 $(CINT)Cint.cc: $(HEADERS)
     8$(CINT)Cint.cc: $(HEADERS) $(CINT)LinkDef.h
    129        @echo " - Generating dictionary $(CINT)Cint.cc"
    1310
     
    1512        -c $(INCLUDES) $(DEFINES) $(HEADERS) $(CINT)Incl.h $(CINT)LinkDef.h
    1613
    17 .cxx.o:
     14%.d:   
     15        @echo " - Generating dependencies" $@
     16        $(ROOTSYS)/bin/rmkdepend -f- -Y -w 3000 -- $(INCLUDES) -- $(SRCFILES) 2> /dev/null | \
     17         sed 's/^\(.*\).o:/$@ \1.o:/' > $@
     18        echo "$@: Makefile" >> $@
     19
     20%.o:    %.cxx
    1821        @echo " - Compiling" $<
    1922        $(CXX) $(CXXFLAGS) -c $< -o $@
    2023
    21 .cc.o: 
     24%.o:    %.cc
    2225        @echo " - Compiling" $<
    2326        $(CXX) $(CXXFLAGS) -c $< -o $@
    2427
    25 .c.o:   
     28%.o:     %.c
    2629        @echo " - Compiling" $<
    2730        $(CC) $(CFLAGS) -c $< -o $@
     31
    2832#
    2933# The cleaning facility
     
    4347        @rm -f *.o
    4448
     49rmdep: 
     50        @echo " Removing dependency file..."
     51        @rm -f *Dep.d
     52
    4553rmcore:
    4654        @echo " Removing core files..."
     
    4957rmbin: 
    5058        @echo " Removing binary files..."
    51         @rm -f $(PROGRAMS) lib/$(SOLIB) so_locations
     59        @rm -f $(PROGRAMS) $(SOLIB) so_locations
    5260
    5361rmbak:
     
    6573        ls htmldoc/* | grep "htmldoc/" | grep -v images | grep -v CVS | xargs rm -f
    6674
     75clean:  rmcint rmobjs rmdep rmcore rmlib
     76
    6777cflags:
    6878        @echo $(INCLUDES) $(CXXFLAGS)
Note: See TracChangeset for help on using the changeset viewer.