Changeset 2485
- Timestamp:
- 11/07/03 15:34:47 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2484 r2485 22 22 * mhist/Makefile, mhist/HistLinkDef.h: 23 23 - added MHEvent 24 25 * Makefile, Makefile.rules: 26 - automatically create dependancies 24 27 25 28 * NEWS: -
trunk/MagicSoft/Mars/Makefile
r2481 r2485 74 74 @echo " " 75 75 76 include Makefile.depend 77 76 78 # Use $(CXX) -v ... for a more verbose output 77 79 # … … 136 138 @echo "Making tar-file" 137 139 @root -b -q -l -n tar.C 138 # @tar cvf ../mars.tar --exclude=Root .roo trc *140 # @tar cvf ../mars.tar --exclude=Root .roo trc * 139 141 # @gzip -9 ../mars.tar 140 142 143 depend: 144 (! find ./ Makefile.depend -maxdepth 1 -empty 2> /dev/null && \ 145 echo " Generating dependancies into Makefile.depend" && \ 146 makedepend -- $(INCLUDES) -- $(PROGRAMS:=.cc) $(SRCS) $(SUBDIRS:=/*.cc) -f- 2> /dev/null | grep -v Cint | grep -v "/usr/" > Makefile.depend && \ 147 echo " ") || find -maxdepth 0 -true > /dev/null 148 149 Makefile.depend: depend 150 141 151 # @endcode -
trunk/MagicSoft/Mars/Makefile.rules
r2122 r2485 1 2 depend:3 @makedepend $(SRCS) $(INCLUDES) -I$(INCLUDE_CPLUS) $(ROOTCFLAGS) \4 -f Makefile.depend 2> kk.kk ; cat kk.kk5 1 6 2 $(LIB): $(OBJS) $(HEADERS) $(CINT)Cint.o … … 26 22 @echo " - Compiling" $< 27 23 $(CC) $(CFLAGS) -c $< -o $@ 24 28 25 # 29 26 # The cleaning facility
Note:
See TracChangeset
for help on using the changeset viewer.