From: Petr L. <lu...@us...> - 2001-08-24 17:54:07
|
Update of /cvsroot/javaprofiler/library/src In directory usw-pr-cvs1:/tmp/cvs-serv4667 Modified Files: Makefile.rules dir.info Log Message: Monitor profiling Index: Makefile.rules =================================================================== RCS file: /cvsroot/javaprofiler/library/src/Makefile.rules,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Makefile.rules 2001/08/23 23:57:31 1.7 --- Makefile.rules 2001/08/24 17:54:04 1.8 *************** *** 143,146 **** --- 143,162 ---- $(MAKE) $(MFLAGS) main clean + mon.dir: + cd mon + $(MAKE) $(MFLAGS) + cd .. + + mon.dir.2: + $(MAKE) $(MFLAGS) mon + + mon.clean: + cd mon + $(MAKE) $(MFLAGS) clean + cd .. + + mon.clean.2: + $(MAKE) $(MFLAGS) mon clean + prof.dir: cd prof Index: dir.info =================================================================== RCS file: /cvsroot/javaprofiler/library/src/dir.info,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** dir.info 2001/08/23 23:57:31 1.12 --- dir.info 2001/08/24 17:54:04 1.13 *************** *** 1,3 **** ! DIRS = profiler alloc allocator commun commun2 commun3 cpu delay gc main \ prof setup shared string --- 1,3 ---- ! DIRS = profiler alloc allocator commun commun2 commun3 cpu delay gc main mon \ prof setup shared string *************** *** 5,8 **** OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \ ! commun3/*.o* cpu/*.o* delay/*.o* gc/*.o* main/*.o* prof/*.o* \ setup/*.o* shared/*.o* string/*.o* --- 5,8 ---- OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \ ! commun3/*.o* cpu/*.o* delay/*.o* gc/*.o* main/*.o* mon/*.o* prof/*.o* \ setup/*.o* shared/*.o* string/*.o* |